source: flair-src/branches/mavlink/tools/FlairGCS/src/ListWidget.h@ 49

Last change on this file since 49 was 48, checked in by Thomas Fuhrmann, 8 years ago

Add ListWidget

File size: 663 bytes
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
10class QListWidget;
11class Layout;
12
13class ListWidget : public FormLayout {
14 Q_OBJECT
15
16public:
17 ListWidget(Layout *parent, int row, int col, QString name);
18 ~ListWidget();
19
20private:
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
30private slots:
31 // void valuechanged(int value);
32};
33
34#endif // LISTWIDGET_H
Note: See TracBrowser for help on using the repository browser.