summaryrefslogtreecommitdiffstats
path: root/src/gui/dialog.h
blob: 689cbb47da5b376855c94ec6d0349186678cb4a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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