]> git.sven.stormbind.net Git - sven/vym.git/blob - src/jira-settings-dialog.h
Replace Pierre as the maintainer
[sven/vym.git] / src / jira-settings-dialog.h
1 #ifndef JIRA_SETTINGS_DIALOG_H
2 #define JIRA_SETTINGS_DIALOG_H
3
4 #include "ui_jira-settings-dialog.h"
5
6 class JiraSettingsDialog : public QDialog {
7     Q_OBJECT
8
9   public:
10     JiraSettingsDialog(QWidget *parent = 0);
11
12   public slots:
13     void addServer();
14     void deleteServer();
15     void updateAuthenticationFields();
16     void fieldsChanged();
17     void selectionChanged(const QItemSelection &selected, const QItemSelection &);
18
19   private:
20     Ui::JiraSettingsDialog ui;
21 };
22
23 #endif // JIRA_SETTINGS_DIALOG_H