Line | |
---|
1 | // %flair:license{
|
---|
2 | // This file is part of the Flair framework distributed under the
|
---|
3 | // CECILL-C License, Version 1.0.
|
---|
4 | // %flair:license}
|
---|
5 | #ifndef LISTWIDGET_H
|
---|
6 | #define LISTWIDGET_H
|
---|
7 |
|
---|
8 | #include "FormLayout.h"
|
---|
9 |
|
---|
10 | class QListWidget;
|
---|
11 | class Layout;
|
---|
12 |
|
---|
13 | class ListWidget : public FormLayout {
|
---|
14 | Q_OBJECT
|
---|
15 |
|
---|
16 | public:
|
---|
17 | ListWidget(Layout *parent, int row, int col, QString name);
|
---|
18 | ~ListWidget();
|
---|
19 |
|
---|
20 | private:
|
---|
21 | QListWidget* listwidget;
|
---|
22 | void XmlEvent(QDomElement dom);
|
---|
23 | void SetUptodate(void);
|
---|
24 | void Reset(void);
|
---|
25 | void LoadEvent(QDomElement dom);
|
---|
26 |
|
---|
27 | // void ui_to_var(void);
|
---|
28 | // void ui_to_xml(void);
|
---|
29 |
|
---|
30 | private slots:
|
---|
31 | // void valuechanged(int value);
|
---|
32 | };
|
---|
33 |
|
---|
34 | #endif // LISTWIDGET_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.