1 | #ifndef TOOLSGITWIDGET_H |
2 | #define TOOLSGITWIDGET_H |
3 | |
4 | #include <QWidget> |
5 | #include "settingswidget.h" |
6 | |
7 | namespace Ui { |
8 | class ToolsGitWidget; |
9 | } |
10 | |
11 | class ToolsGitWidget : public SettingsWidget |
12 | { |
13 | Q_OBJECT |
14 | |
15 | public: |
16 | explicit ToolsGitWidget(const QString& name, const QString& group, QWidget *parent = nullptr); |
17 | ~ToolsGitWidget(); |
18 | |
19 | private: |
20 | Ui::ToolsGitWidget *ui; |
21 | |
22 | // SettingsWidget interface |
23 | protected: |
24 | void doLoad() override; |
25 | void doSave() override; |
26 | void updateIcons(const QSize &size) override; |
27 | private slots: |
28 | void on_btnBrowseGit_clicked(); |
29 | void on_btnTestGit_clicked(); |
30 | }; |
31 | |
32 | #endif // TOOLSGITWIDGET_H |
33 | |