| 1 | #ifndef FORMATTERPATHWIDGET_H |
|---|---|
| 2 | #define FORMATTERPATHWIDGET_H |
| 3 | |
| 4 | #include "settingswidget.h" |
| 5 | #include <QWidget> |
| 6 | |
| 7 | namespace Ui { |
| 8 | class FormatterPathWidget; |
| 9 | } |
| 10 | |
| 11 | class FormatterPathWidget : public SettingsWidget |
| 12 | { |
| 13 | Q_OBJECT |
| 14 | |
| 15 | public: |
| 16 | explicit FormatterPathWidget(const QString& name, const QString& group, QWidget *parent = nullptr); |
| 17 | ~FormatterPathWidget(); |
| 18 | |
| 19 | private: |
| 20 | Ui::FormatterPathWidget *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_btnChooseAstyle_triggered(QAction *arg1); |
| 29 | }; |
| 30 | |
| 31 | #endif // FORMATTERPATHWIDGET_H |
| 32 |