1 #ifndef DIALOGSHOWUPDATEMSG_H
2 #define DIALOGSHOWUPDATEMSG_H
3 
4 #include <QDialog>
5 
6 namespace Ui {
7 class DialogShowUpdateMsg;
8 }
9 
10 class DialogShowUpdateMsg : public QDialog
11 {
12     Q_OBJECT
13 
14 public:
15     explicit DialogShowUpdateMsg(QWidget *parent = 0, const QString &caption = 0, const QString &message = 0);
16     ~DialogShowUpdateMsg();
17 
18 private slots:
19     void on_pushOk_clicked();
20     void on_checkBoxDisable_stateChanged(int arg1);
21 
22     void on_pushCancel_clicked();
23 
24 private:
25     Ui::DialogShowUpdateMsg *ui;
26 
27     void setAutoUpdates(int arg1);
28 };
29 
30 #endif // DIALOGSHOWUPDATEMSG_H
31