RedPanda-CPP/RedPandaIDE/settingsdialog/projectcompilerwidget.h

56 lines
1.6 KiB
C
Raw Normal View History

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 08:02:08 +08:00
#ifndef PROJECTCOMPILERWIDGET_H
#define PROJECTCOMPILERWIDGET_H
2022-05-12 22:42:19 +08:00
#include <QMap>
2021-09-15 08:02:08 +08:00
#include <QWidget>
#include "settingswidget.h"
2021-09-15 08:02:08 +08:00
namespace Ui {
class ProjectCompilerWidget;
}
class ProjectCompilerWidget : public SettingsWidget
2021-09-15 08:02:08 +08:00
{
Q_OBJECT
public:
explicit ProjectCompilerWidget(const QString& name, const QString& group, QWidget *parent = nullptr);
2021-09-15 08:02:08 +08:00
~ProjectCompilerWidget();
private:
void refreshOptions();
2021-09-15 08:02:08 +08:00
private:
Ui::ProjectCompilerWidget *ui;
2022-05-12 22:42:19 +08:00
QMap<QString,QString> mOptions;
// SettingsWidget interface
protected:
void doLoad() override;
void doSave() override;
// SettingsWidget interface
public:
void init() override;
private slots:
void on_cbCompilerSet_currentIndexChanged(int index);
void on_cbEncoding_currentTextChanged(const QString &arg1);
void on_cbEncodingDetails_currentTextChanged(const QString &arg1);
2021-09-15 08:02:08 +08:00
};
#endif // PROJECTCOMPILERWIDGET_H