summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/datawidgetui.h
Unidiff
Diffstat (limited to 'noncore/apps/oxygen/datawidgetui.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/datawidgetui.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/noncore/apps/oxygen/datawidgetui.h b/noncore/apps/oxygen/datawidgetui.h
index 582bc19..a158545 100644
--- a/noncore/apps/oxygen/datawidgetui.h
+++ b/noncore/apps/oxygen/datawidgetui.h
@@ -5,22 +5,26 @@
5 * it under the terms of the GNU General Public License as published by * 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 * 6 * the Free Software Foundation; either version 2 of the License, or *
7 * ( at your option ) any later version. * 7 * ( at your option ) any later version. *
8 * * 8 * *
9 **************************************************************************/ 9 **************************************************************************/
10#include "datawidget.h" 10#include "datawidget.h"
11#include "dataTable.h"
11 12
12class QTable; 13class QTable;
14class QComboBox;
13 15
14class dataWidgetUI : public dataWidget 16class dataWidgetUI : public QDialog
15{ 17{
16 Q_OBJECT 18 Q_OBJECT
17 19
18 public: 20 public:
19 dataWidgetUI(); 21 dataWidgetUI();
20 22
21 private: 23 private:
22 void createTableLayout(); 24 void createTableLayout();
25 QTable *DataTable;
26 QComboBox *dataCombo;
23 27
24 private slots: 28 private slots:
25 void slotShowData(int); 29 void slotShowData(int);
26}; 30};