~bedouin/+junk/x-gin

« back to all changes in this revision

Viewing changes to dialog.h

  • Committer: Slamet Badwi (bedouin)
  • Date: 2014-11-24 12:48:35 UTC
  • Revision ID: slamet.badwi@gmail.com-20141124124835-3ha1yquxff0mup8g
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef DIALOG_H
 
2
#define DIALOG_H
 
3
 
 
4
#include <QDialog>
 
5
 
 
6
namespace Ui {
 
7
class Dialog;
 
8
}
 
9
 
 
10
class Dialog : public QDialog
 
11
{
 
12
    Q_OBJECT
 
13
 
 
14
public:
 
15
    explicit Dialog(QWidget *parent = 0);
 
16
    ~Dialog();
 
17
    void selectPage(int indx);
 
18
    QString nginxDir();
 
19
    QString htmlRoot();
 
20
    bool asRoot();
 
21
 
 
22
private slots:
 
23
    void on_buttonSearchNFolder_clicked();
 
24
 
 
25
    void on_buttonSearchNRoot_clicked();
 
26
 
 
27
    void on_buttonSaveSettings_clicked();
 
28
 
 
29
private:
 
30
    Ui::Dialog *ui;
 
31
};
 
32
 
 
33
#endif // DIALOG_H