// %flair:license{ // This file is part of the Flair framework distributed under the // CECILL-C License, Version 1.0. // %flair:license} #ifndef LISTWIDGET_H #define LISTWIDGET_H #include "FormLayout.h" class QListWidget; class Layout; class ListWidget : public FormLayout { Q_OBJECT public: ListWidget(Layout *parent, int row, int col, QString name); ~ListWidget(); private: QListWidget* listwidget; void XmlEvent(QDomElement dom); void SetUptodate(void); void Reset(void); void LoadEvent(QDomElement dom); // void ui_to_var(void); // void ui_to_xml(void); private slots: // void valuechanged(int value); }; #endif // LISTWIDGET_H