00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef ODINDIALOG_DEBUG_H
00019 #define ODINDIALOG_DEBUG_H
00020
00021 #include <qobject.h>
00022
00023 #include <odinqt/odinqt.h>
00024
00025
00026 class DebugDialog : public QObject, public GuiDialog {
00027
00028 Q_OBJECT
00029
00030 public:
00031 DebugDialog(QWidget *parent);
00032 ~DebugDialog();
00033
00034 signals:
00035 void finished();
00036
00037 private slots:
00038 void emitDone();
00039 void levelChanged(int);
00040
00041 private:
00042 friend class QComboBox;
00043 friend class QPushButton;
00044
00045 GuiGridLayout* grid;
00046 GuiButton* pb_done;
00047
00048 STD_list<GuiComboBox*> debugenums;
00049 };
00050
00051
00052 #endif