2021-12-26 23:18:28 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.com)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2021-09-15 14:35:37 +08:00
|
|
|
#ifndef PROJECTCOMPILEPARAMATERSWIDGET_H
|
|
|
|
#define PROJECTCOMPILEPARAMATERSWIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
2021-09-15 16:57:28 +08:00
|
|
|
#include "settingswidget.h"
|
2021-09-15 14:35:37 +08:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ProjectCompileParamatersWidget;
|
|
|
|
}
|
|
|
|
|
2021-09-15 16:57:28 +08:00
|
|
|
class ProjectCompileParamatersWidget : public SettingsWidget
|
2021-09-15 14:35:37 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2021-09-15 16:57:28 +08:00
|
|
|
explicit ProjectCompileParamatersWidget(const QString& name, const QString& group, QWidget *parent = nullptr);
|
2021-09-15 14:35:37 +08:00
|
|
|
~ProjectCompileParamatersWidget();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::ProjectCompileParamatersWidget *ui;
|
2021-09-15 16:57:28 +08:00
|
|
|
|
|
|
|
// SettingsWidget interface
|
|
|
|
protected:
|
|
|
|
void doLoad() override;
|
|
|
|
void doSave() override;
|
2022-04-18 11:38:30 +08:00
|
|
|
private slots:
|
|
|
|
void on_btnChooseLib_clicked();
|
|
|
|
|
|
|
|
// SettingsWidget interface
|
|
|
|
protected:
|
2022-10-12 19:48:35 +08:00
|
|
|
void updateIcons(const QSize &size) override;
|
2021-09-15 14:35:37 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PROJECTCOMPILEPARAMATERSWIDGET_H
|