summaryrefslogblamecommitdiffstats
path: root/src/gui/dialog.h
blob: 689cbb47da5b376855c94ec6d0349186678cb4a3 (plain) (tree)
































                                 
#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