summaryrefslogtreecommitdiffstats
path: root/src/gui/dialog.h
diff options
context:
space:
mode:
authorSebastian2010-05-12 19:42:27 +0200
committerSebastian2010-05-12 19:42:27 +0200
commitce3329047d378a14006ce74ec273ac59e3375303 (patch)
tree782430f270b4c7aca1b35d5b7813518e3797c555 /src/gui/dialog.h
downloadpvs-ce3329047d378a14006ce74ec273ac59e3375303.tar.gz
pvs-ce3329047d378a14006ce74ec273ac59e3375303.tar.xz
pvs-ce3329047d378a14006ce74ec273ac59e3375303.zip
initial import of latest svn version
Diffstat (limited to 'src/gui/dialog.h')
-rw-r--r--src/gui/dialog.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/gui/dialog.h b/src/gui/dialog.h
new file mode 100644
index 0000000..689cbb4
--- /dev/null
+++ b/src/gui/dialog.h
@@ -0,0 +1,33 @@
+#ifndef DIALOG_H
+#define DIALOG_H
+
+#include <QDialog>
+#include <QtGui>
+//#include <src/gui/mainWindow.h>
+
+
+namespace Ui {
+ class MsgDialog;
+}
+
+class MainWindow;
+
+class Dialog : public QDialog {
+ Q_OBJECT
+public:
+ Dialog(QWidget *parent = 0);
+ ~Dialog();
+
+protected:
+ void changeEvent(QEvent *e);
+
+private:
+ Ui::MsgDialog *dui;
+
+private slots:
+ void send();
+ void NotSend();
+ void textchange();
+};
+
+#endif // DIALOG_H