]> git.sven.stormbind.net Git - sven/vym.git/blob - src/zip-settings-dialog.h
Replace Pierre as the maintainer
[sven/vym.git] / src / zip-settings-dialog.h
1 #ifndef ZIPSETTINGSDIALOG_H
2 #define ZIPSETTINGSDIALOG_H
3
4 #include "ui_zip-settings-dialog.h"
5
6 class ZipSettingsDialog : public QDialog {
7     Q_OBJECT
8
9   public:
10     ZipSettingsDialog(QWidget *parent = 0);
11
12   public slots:
13     void zipToolPathChanged();
14     void unzipToolPathChanged();
15     void zipToolButtonPressed();
16     void unzipToolButtonPressed();
17
18   private:
19     void init();
20     Ui::ZipSettingsDialog ui;
21
22     void updateCheckResults();
23 };
24
25 #endif