MNE-CPP  beta 1.0
deletemessagebox.h
Go to the documentation of this file.
1 //=============================================================================================================
38 #ifndef DELETEMESSAGEBOX_H
39 #define DELETEMESSAGEBOX_H
40 
41 //*************************************************************************************************************
42 //=============================================================================================================
43 // QT INCLUDES
44 //=============================================================================================================
45 
46 #include <QDialog>
47 
48 //*************************************************************************************************************
49 //=============================================================================================================
50 // DEFINE NAMESPACE Ui
51 //=============================================================================================================
52 
53 namespace Ui
54 {
55 
56 //=============================================================================================================
57 
58 class DeleteMessageBox;
59 }
60 
61 class DeleteMessageBox : public QDialog
62 {
63  Q_OBJECT
64 
65 public:
66 
67  //*********************************************************************************************************
68  //constructor
69  explicit DeleteMessageBox(QWidget *parent = 0);
70  DeleteMessageBox(QString msg_text, QString caption, QString btt_left_text, QString btt_right_text, QWidget *parent = 0);
71  //*********************************************************************************************************
72 
74 
75 private slots:
76  void on_btt_yes_clicked();
77  void on_btt_No_clicked();
78  void on_chb_NoMessageBox_toggled(bool checked);
79 
80 private:
81  Ui::DeleteMessageBox *ui;
82 };
83 
84 #endif // DELETEMESSAGEBOX_H
Definition: aboutwindow.h:52