RedPanda-CPP/RedPandaIDE/project.h

240 lines
7.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-05 23:45:05 +08:00
#ifndef PROJECT_H
#define PROJECT_H
2021-09-11 09:21:44 +08:00
#include <QAbstractItemModel>
#include <QSortFilterProxyModel>
2021-09-05 23:45:05 +08:00
#include <memory>
2021-09-16 12:03:10 +08:00
#include "projectoptions.h"
#include "utils.h"
2021-09-05 23:45:05 +08:00
class Project;
class Editor;
2021-09-06 08:45:53 +08:00
class CppParser;
2021-09-07 00:32:16 +08:00
struct FolderNode;
using PFolderNode = std::shared_ptr<FolderNode>;
struct FolderNode {
QString text;
2021-09-10 10:27:01 +08:00
std::weak_ptr<FolderNode> parent;
2021-09-07 00:32:16 +08:00
int unitIndex;
QList<PFolderNode> children;
2021-09-10 21:37:52 +08:00
int level;
2021-09-07 00:32:16 +08:00
};
2021-09-05 23:45:05 +08:00
class ProjectUnit {
public:
2021-09-07 00:32:16 +08:00
explicit ProjectUnit(Project* parent);
Project* parent() const;
void setParent(Project* newParent);
2021-09-05 23:45:05 +08:00
Editor *editor() const;
void setEditor(Editor *newEditor);
const QString &fileName() const;
void setFileName(QString newFileName);
2021-09-05 23:45:05 +08:00
bool isNew() const;
void setNew(bool newNew);
const QString &folder() const;
void setFolder(const QString &newFolder);
bool compile() const;
void setCompile(bool newCompile);
bool compileCpp() const;
void setCompileCpp(bool newCompileCpp);
bool overrideBuildCmd() const;
void setOverrideBuildCmd(bool newOverrideBuildCmd);
const QString &buildCmd() const;
void setBuildCmd(const QString &newBuildCmd);
bool link() const;
void setLink(bool newLink);
int priority() const;
void setPriority(int newPriority);
const QByteArray &encoding() const;
void setEncoding(const QByteArray &newEncoding);
2021-09-06 12:58:29 +08:00
bool modified() const;
2021-09-05 23:45:05 +08:00
void setModified(bool value);
bool save();
2021-09-07 10:28:40 +08:00
PFolderNode &node();
void setNode(const PFolderNode &newNode);
2021-09-05 23:45:05 +08:00
private:
2021-09-07 00:32:16 +08:00
Project* mParent;
2021-09-05 23:45:05 +08:00
Editor* mEditor;
QString mFileName;
bool mNew;
QString mFolder;
bool mCompile;
bool mCompileCpp;
bool mOverrideBuildCmd;
QString mBuildCmd;
bool mLink;
int mPriority;
QByteArray mEncoding;
2021-09-07 00:32:16 +08:00
PFolderNode mNode;
2021-09-05 23:45:05 +08:00
};
2021-09-06 08:45:53 +08:00
using PProjectUnit = std::shared_ptr<ProjectUnit>;
2021-09-06 01:47:07 +08:00
2021-09-11 09:21:44 +08:00
class ProjectModel : public QAbstractItemModel {
Q_OBJECT
public:
explicit ProjectModel(Project* project, QObject* parent=nullptr);
void beginUpdate();
void endUpdate();
private:
Project* mProject;
int mUpdateCount;
// QAbstractItemModel interface
public:
QModelIndex index(int row, int column, const QModelIndex &parent) const override;
QModelIndex parent(const QModelIndex &child) const override;
int rowCount(const QModelIndex &parent) const override;
int columnCount(const QModelIndex &parent) const override;
QVariant data(const QModelIndex &index, int role) const override;
Qt::ItemFlags flags(const QModelIndex &index) const override;
bool setData(const QModelIndex &index, const QVariant &value, int role) override;
private:
QModelIndex getParentIndex(FolderNode * node) const;
// QAbstractItemModel interface
public:
bool canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const override;
2021-10-24 00:17:08 +08:00
Qt::DropActions supportedDropActions() const override;
bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) override;
QMimeData *mimeData(const QModelIndexList &indexes) const override;
Project *project() const;
};
class ProjectModelSortFilterProxy : public QSortFilterProxyModel
{
Q_OBJECT
public:
explicit ProjectModelSortFilterProxy(QObject *parent = nullptr);
// QSortFilterProxyModel interface
protected:
bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const override;
2021-09-11 09:21:44 +08:00
};
2021-09-16 23:51:05 +08:00
class ProjectTemplate;
2021-09-05 23:45:05 +08:00
class Project : public QObject
{
Q_OBJECT
public:
2021-09-07 16:49:35 +08:00
explicit Project(const QString& filename, const QString& name,QObject *parent = nullptr);
2021-09-11 18:42:49 +08:00
~Project();
2021-09-09 11:47:04 +08:00
QString directory() const;
QString executable() const;
2021-09-06 08:45:53 +08:00
QString makeFileName();
2021-09-09 11:47:04 +08:00
bool modified() const;
void setFileName(QString value);
2021-09-07 00:32:16 +08:00
void setModified(bool value);
2021-09-07 10:28:40 +08:00
void addFolder(const QString& s);
2021-09-07 00:32:16 +08:00
PProjectUnit addUnit(const QString& inFileName,
PFolderNode parentNode,
bool rebuild);
QString folder();
2021-09-12 22:45:00 +08:00
void buildPrivateResource(bool forceSave=false);
void checkProjectFileForUpdate(SimpleIni& ini);
2021-09-07 16:49:35 +08:00
void closeUnit(int index);
void createFolderNodes();
void doAutoOpen();
2021-09-09 00:15:12 +08:00
bool fileAlreadyExists(const QString& s);
PFolderNode folderNodeFromName(const QString& name);
2021-09-13 10:48:44 +08:00
char getCompilerOption(const QString& optionString);
2021-09-09 11:47:04 +08:00
QString getFolderPath(PFolderNode node);
int getUnitFromString(const QString& s);
2021-09-09 18:36:54 +08:00
void incrementBuildNumber();
2021-09-12 00:17:15 +08:00
int indexInUnits(const QString& fileName) const;
int indexInUnits(const Editor* editor) const;
2021-09-09 18:36:54 +08:00
QString listUnitStr(const QChar& separator);
void loadLayout(); // load all [UnitX]
void loadOptions(SimpleIni& ini);
2021-09-10 15:03:47 +08:00
void loadUnitLayout(Editor *e, int index); // load single [UnitX] cursor positions
2021-09-10 12:37:02 +08:00
PFolderNode makeNewFileNode(const QString& s, bool isFolder, PFolderNode newParent);
PFolderNode makeProjectNode();
2021-09-16 23:51:05 +08:00
PProjectUnit newUnit(PFolderNode parentNode,
2021-09-17 13:35:50 +08:00
const QString& customFileName="");
2021-09-07 10:28:40 +08:00
Editor* openUnit(int index);
2021-09-10 15:03:47 +08:00
void rebuildNodes();
bool removeUnit(int index, bool doClose, bool removeFile = false);
2021-09-10 21:37:52 +08:00
bool removeFolder(PFolderNode node);
2021-09-11 18:42:49 +08:00
void resetParserProjectFiles();
2021-09-10 21:37:52 +08:00
void saveAll(); // save [Project] and all [UnitX]
void saveLayout(); // save all [UnitX]
2021-09-10 23:41:38 +08:00
void saveOptions();
void saveUnitAs(int i, const QString& sFileName, bool syncEditor = true); // save single [UnitX]
2021-09-07 10:28:40 +08:00
void saveUnitLayout(Editor* e, int index); // save single [UnitX] cursor positions
bool saveUnits();
PProjectUnit findUnitByFilename(const QString& filename);
void associateEditor(Editor* editor);
void associateEditorToUnit(Editor* editor, PProjectUnit unit);
2021-09-13 10:48:44 +08:00
void setCompilerOption(const QString& optionString, char value);
2021-09-11 09:21:44 +08:00
void sortUnitsByPriority();
void sortUnitsByAlpha();
2021-09-10 23:41:38 +08:00
void updateFolders();
2021-09-11 09:21:44 +08:00
void updateNodeIndexes();
2021-09-17 19:58:37 +08:00
PFolderNode pointerToNode(FolderNode * p, PFolderNode parent=PFolderNode());
void setCompilerSet(int compilerSetIndex);
2021-09-09 00:15:12 +08:00
2021-09-11 09:21:44 +08:00
//void showOptions();
bool assignTemplate(const std::shared_ptr<ProjectTemplate> aTemplate, bool useCpp);
2021-09-10 23:41:38 +08:00
//void saveToLog();
2021-09-07 16:49:35 +08:00
std::shared_ptr<CppParser> cppParser();
2021-09-09 00:15:12 +08:00
const QString &filename() const;
2021-09-10 12:37:02 +08:00
const QString &name() const;
void setName(const QString &newName);
const PFolderNode &rootNode() const;
2021-09-10 12:37:02 +08:00
2021-09-14 17:33:47 +08:00
ProjectOptions &options();
2021-09-10 15:03:47 +08:00
2021-09-11 18:42:49 +08:00
ProjectModel* model() ;
2021-09-11 11:42:20 +08:00
const QList<PProjectUnit> &units() const;
2021-09-05 23:45:05 +08:00
signals:
2021-09-07 10:28:40 +08:00
void nodesChanged();
void modifyChanged(bool value);
2021-09-07 00:32:16 +08:00
private:
void open();
2021-09-10 21:37:52 +08:00
void removeFolderRecurse(PFolderNode node);
2021-09-11 09:21:44 +08:00
void updateFolderNode(PFolderNode node);
void updateCompilerSetType();
2021-09-06 08:45:53 +08:00
private:
QList<PProjectUnit> mUnits;
ProjectOptions mOptions;
QString mFilename;
QString mName;
bool mModified;
QStringList mFolders;
std::shared_ptr<CppParser> mParser;
2021-09-07 16:49:35 +08:00
QList<PFolderNode> mFolderNodes;
2021-09-07 00:32:16 +08:00
PFolderNode mNode;
2021-09-11 09:21:44 +08:00
ProjectModel mModel;
2021-09-05 23:45:05 +08:00
};
#endif // PROJECT_H