-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcvg_part_disp.h
55 lines (41 loc) · 1.02 KB
/
cvg_part_disp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/************************************/
/* Simple dialog for displaying the */
/* user's choice cells */
/*************************************/
#ifndef DISP_CELLS_H
#define DISP_CELLS_H
#include <qvariant.h>
#include <qdialog.h>
//Added by qt3to4:
#include <Q3VBoxLayout>
#include <Q3GridLayout>
#include <Q3HBoxLayout>
class Q3VBoxLayout;
class Q3HBoxLayout;
class Q3GridLayout;
class QSpacerItem;
class Q3ListView;
class Q3ListViewItem;
class QPushButton;
class QStringList;
class disp_cells : public QDialog
{
Q_OBJECT
public:
disp_cells( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, Qt::WFlags fl = 0 );
~disp_cells();
Q3ListView* listView4;
QPushButton* pushButton6;
void setCellList(const QStringList&);
protected:
Q3VBoxLayout* disp_cellsLayout;
QSpacerItem* spacer5;
Q3HBoxLayout* layout22;
QSpacerItem* spacer6;
protected slots:
virtual void languageChange();
private:
void init();
QStringList m_Display;
};
#endif // DISP_CELLS_H