37 lines
805 B
C++
37 lines
805 B
C++
#ifndef PROJECTOUTPUTWIDGET_H
|
|
#define PROJECTOUTPUTWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include "settingswidget.h"
|
|
|
|
namespace Ui {
|
|
class ProjectOutputWidget;
|
|
}
|
|
|
|
class ProjectOutputWidget : public SettingsWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ProjectOutputWidget(const QString& name, const QString& group, QWidget *parent = nullptr);
|
|
~ProjectOutputWidget();
|
|
|
|
private:
|
|
Ui::ProjectOutputWidget *ui;
|
|
|
|
// SettingsWidget interface
|
|
protected:
|
|
void doLoad() override;
|
|
void doSave() override;
|
|
private slots:
|
|
void on_btnOutputDir_triggered(QAction *arg1);
|
|
void on_btnObjOutputDir_triggered(QAction *arg1);
|
|
void on_btnCompileLog_triggered(QAction *arg1);
|
|
|
|
// SettingsWidget interface
|
|
protected:
|
|
void updateIcons(const QSize &size) override;
|
|
};
|
|
|
|
#endif // PROJECTOUTPUTWIDGET_H
|