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-14 17:33:47 +08:00
|
|
|
#ifndef PROJECTFILESWIDGET_H
|
|
|
|
#define PROJECTFILESWIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
2021-09-14 23:56:08 +08:00
|
|
|
#include "../project.h"
|
|
|
|
#include "settingswidget.h"
|
2021-09-14 17:33:47 +08:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ProjectFilesWidget;
|
|
|
|
}
|
|
|
|
|
2021-09-14 23:56:08 +08:00
|
|
|
class ProjectFilesWidget : public SettingsWidget
|
2021-09-14 17:33:47 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2021-09-14 23:56:08 +08:00
|
|
|
explicit ProjectFilesWidget(const QString& name, const QString& group, QWidget *parent = nullptr);
|
2021-09-14 17:33:47 +08:00
|
|
|
~ProjectFilesWidget();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::ProjectFilesWidget *ui;
|
2021-09-14 23:56:08 +08:00
|
|
|
QList<PProjectUnit> mUnits;
|
|
|
|
|
|
|
|
|
|
|
|
// SettingsWidget interface
|
|
|
|
protected:
|
|
|
|
void doLoad() override;
|
|
|
|
void doSave() override;
|
|
|
|
private:
|
|
|
|
PProjectUnit currentUnit();
|
2021-09-15 07:53:35 +08:00
|
|
|
void copyUnits();
|
2021-09-15 14:35:37 +08:00
|
|
|
void disableFileOptions();
|
2022-01-24 01:08:47 +08:00
|
|
|
void loadUnitEncoding(PProjectUnit unit);
|
2021-09-14 23:56:08 +08:00
|
|
|
private slots:
|
|
|
|
void on_treeProject_doubleClicked(const QModelIndex &index);
|
|
|
|
void on_spinPriority_valueChanged(int arg1);
|
|
|
|
void on_chkCompile_stateChanged(int arg1);
|
|
|
|
void on_chkLink_stateChanged(int arg1);
|
|
|
|
void on_chkCompileAsCPP_stateChanged(int arg1);
|
|
|
|
void on_chkOverrideBuildCommand_stateChanged(int arg1);
|
|
|
|
void on_txtBuildCommand_textChanged();
|
|
|
|
void on_cbEncoding_currentTextChanged(const QString &arg1);
|
|
|
|
void on_treeProject_clicked(const QModelIndex &index);
|
2021-09-15 11:23:42 +08:00
|
|
|
|
|
|
|
// SettingsWidget interface
|
2021-09-29 19:03:22 +08:00
|
|
|
void on_cbEncodingDetail_currentTextChanged(const QString &arg1);
|
|
|
|
|
2021-09-15 11:23:42 +08:00
|
|
|
public:
|
|
|
|
void init() override;
|
2021-09-14 17:33:47 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PROJECTFILESWIDGET_H
|