Olive
debugdialog.h
1 #ifndef DEBUGDIALOG_H
2 #define DEBUGDIALOG_H
3 
4 #include <QDialog>
5 class QTextEdit;
6 
7 class DebugDialog : public QDialog {
8  Q_OBJECT
9 public:
10  DebugDialog(QWidget* parent = 0);
11 public slots:
12  void update_log();
13 protected:
14  void showEvent(QShowEvent* event);
15 private:
16  QTextEdit* textEdit;
17 };
18 
19 namespace Olive {
20  extern DebugDialog* DebugDialog;
21 }
22 
23 #endif // DEBUGDIALOG_H
Definition: debugdialog.h:7