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