]> cygwin.com Git - cygwin-apps/setup.git/blame - PickLine.h
Support xz and lzma decompression via liblzma
[cygwin-apps/setup.git] / PickLine.h
CommitLineData
97647369
RC
1/*
2 * Copyright (c) 2002 Robert Collins.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 * Written by Robert Collins <robertc@hotmail.com>
13 *
14 */
15
c93bc6d0
MB
16#ifndef SETUP_PICKLINE_H
17#define SETUP_PICKLINE_H
97647369
RC
18
19#include "win32.h"
7e8fc33c 20#include "package_meta.h"
97647369
RC
21
22class PickLine
23{
24public:
82306ac2 25 virtual void paint (HDC hdc, HRGN hUpdRgn, int x, int y, int col_num, int show_cat) = 0;
97647369 26 virtual int click (int const myrow, int const ClickedRow, int const x) = 0;
7e8fc33c 27 virtual int set_action (packagemeta::_actions) = 0;
97647369
RC
28 virtual int itemcount () const = 0;
29 // this may indicate bad inheritance model.
30 virtual bool IsContainer (void) const = 0;
31 virtual void insert (PickLine &) = 0;
9b0876b3 32 const std::string key;
97647369
RC
33 virtual ~ PickLine ()
34 {
35 };
36protected:
37 PickLine ()
38 {
39 };
9b0876b3 40 PickLine (const std::string& aKey) : key (aKey)
97647369
RC
41 {
42 };
43 PickLine (PickLine const &);
44 PickLine & operator= (PickLine const &);
45};
46
c93bc6d0 47#endif /* SETUP_PICKLINE_H */
This page took 0.04428 seconds and 5 git commands to generate.