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
|
|
|
#include "project.h"
|
|
|
|
#include "editor.h"
|
2021-09-06 08:45:53 +08:00
|
|
|
#include "utils.h"
|
|
|
|
#include "systemconsts.h"
|
2021-09-07 16:49:35 +08:00
|
|
|
#include "editorlist.h"
|
|
|
|
#include <parser/cppparser.h>
|
|
|
|
#include "utils.h"
|
2021-09-12 01:01:34 +08:00
|
|
|
#include "platform.h"
|
2021-09-16 23:51:05 +08:00
|
|
|
#include "projecttemplate.h"
|
2021-09-17 09:56:52 +08:00
|
|
|
#include "systemconsts.h"
|
2021-10-23 23:10:34 +08:00
|
|
|
#include "iconsmanager.h"
|
2021-09-06 08:45:53 +08:00
|
|
|
|
2022-03-21 09:08:05 +08:00
|
|
|
#include <QFileSystemWatcher>
|
2021-09-06 08:45:53 +08:00
|
|
|
#include <QDir>
|
2021-09-09 00:15:12 +08:00
|
|
|
#include <QFileDialog>
|
2021-09-06 08:45:53 +08:00
|
|
|
#include <QFileInfo>
|
2021-09-06 12:58:29 +08:00
|
|
|
#include <QMessageBox>
|
2021-09-11 18:42:49 +08:00
|
|
|
#include <QTextCodec>
|
2021-09-26 22:39:26 +08:00
|
|
|
#include <QMessageBox>
|
2022-03-21 09:08:05 +08:00
|
|
|
#include <QDirIterator>
|
2022-02-13 20:08:18 +08:00
|
|
|
#include "customfileiconprovider.h"
|
2021-10-24 12:04:37 +08:00
|
|
|
#include <QMimeData>
|
2021-09-09 11:47:04 +08:00
|
|
|
#include "settings.h"
|
2022-02-15 21:39:17 +08:00
|
|
|
#include "vcs/gitrepository.h"
|
2021-09-16 12:03:10 +08:00
|
|
|
|
2022-03-21 09:08:05 +08:00
|
|
|
Project::Project(const QString &filename, const QString &name,
|
|
|
|
EditorList* editorList,
|
|
|
|
QFileSystemWatcher* fileSystemWatcher,
|
|
|
|
QObject *parent) :
|
2021-09-11 09:21:44 +08:00
|
|
|
QObject(parent),
|
2022-03-21 09:08:05 +08:00
|
|
|
mModel(this),
|
|
|
|
mEditorList(editorList),
|
|
|
|
mFileSystemWatcher(fileSystemWatcher)
|
2021-09-05 23:45:05 +08:00
|
|
|
{
|
2021-10-23 19:27:50 +08:00
|
|
|
mFilename = QFileInfo(filename).absoluteFilePath();
|
2021-09-07 16:49:35 +08:00
|
|
|
mParser = std::make_shared<CppParser>();
|
|
|
|
mParser->setOnGetFileStream(
|
|
|
|
std::bind(
|
2022-03-21 09:08:05 +08:00
|
|
|
&EditorList::getContentFromOpenedEditor,mEditorList,
|
2021-09-07 16:49:35 +08:00
|
|
|
std::placeholders::_1, std::placeholders::_2));
|
2021-09-18 11:08:30 +08:00
|
|
|
if (name == DEV_INTERNAL_OPEN) {
|
|
|
|
mModified = false;
|
2022-03-30 20:15:15 +08:00
|
|
|
open();
|
2021-09-18 11:08:30 +08:00
|
|
|
} else {
|
2021-09-07 16:49:35 +08:00
|
|
|
mName = name;
|
2021-09-12 19:50:44 +08:00
|
|
|
SimpleIni ini;
|
|
|
|
ini.SetValue("Project","filename", toByteArray(extractRelativePath(directory(),mFilename)));
|
|
|
|
ini.SetValue("Project","name", toByteArray(mName));
|
|
|
|
ini.SaveFile(mFilename.toLocal8Bit());
|
2022-02-08 12:33:10 +08:00
|
|
|
mRootNode = makeProjectNode();
|
2021-09-07 16:49:35 +08:00
|
|
|
}
|
2022-01-18 12:41:11 +08:00
|
|
|
resetCppParser(mParser,mOptions.compilerSet);
|
2021-09-05 23:45:05 +08:00
|
|
|
}
|
|
|
|
|
2021-09-11 18:42:49 +08:00
|
|
|
Project::~Project()
|
|
|
|
{
|
2022-03-21 09:08:05 +08:00
|
|
|
mEditorList->beginUpdate();
|
2021-09-11 18:42:49 +08:00
|
|
|
foreach (const PProjectUnit& unit, mUnits) {
|
2022-03-21 09:08:05 +08:00
|
|
|
Editor * editor = unitEditor(unit);
|
|
|
|
if (editor) {
|
|
|
|
mEditorList->forceCloseEditor(editor);
|
2021-09-11 18:42:49 +08:00
|
|
|
}
|
|
|
|
}
|
2022-03-21 09:08:05 +08:00
|
|
|
mEditorList->endUpdate();
|
2021-09-11 18:42:49 +08:00
|
|
|
}
|
|
|
|
|
2021-09-09 11:47:04 +08:00
|
|
|
QString Project::directory() const
|
2021-09-06 08:45:53 +08:00
|
|
|
{
|
|
|
|
QFileInfo fileInfo(mFilename);
|
|
|
|
return fileInfo.absolutePath();
|
|
|
|
}
|
|
|
|
|
2021-09-09 11:47:04 +08:00
|
|
|
QString Project::executable() const
|
2021-09-06 08:45:53 +08:00
|
|
|
{
|
|
|
|
QString exeFileName;
|
|
|
|
if (mOptions.overrideOutput && !mOptions.overridenOutput.isEmpty()) {
|
|
|
|
exeFileName = mOptions.overridenOutput;
|
|
|
|
} else {
|
|
|
|
switch(mOptions.type) {
|
|
|
|
case ProjectType::StaticLib:
|
2021-09-10 12:37:02 +08:00
|
|
|
exeFileName = changeFileExt(extractFileName(mFilename),STATIC_LIB_EXT);
|
2021-09-06 08:45:53 +08:00
|
|
|
break;
|
|
|
|
case ProjectType::DynamicLib:
|
2021-09-10 12:37:02 +08:00
|
|
|
exeFileName = changeFileExt(extractFileName(mFilename),DYNAMIC_LIB_EXT);
|
2021-09-06 08:45:53 +08:00
|
|
|
break;
|
|
|
|
default:
|
2021-09-10 12:37:02 +08:00
|
|
|
exeFileName = changeFileExt(extractFileName(mFilename),EXECUTABLE_EXT);
|
2021-09-06 08:45:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
QString exePath;
|
|
|
|
if (!mOptions.exeOutput.isEmpty()) {
|
|
|
|
QDir baseDir(directory());
|
|
|
|
exePath = baseDir.filePath(mOptions.exeOutput);
|
|
|
|
} else {
|
|
|
|
exePath = directory();
|
|
|
|
}
|
|
|
|
QDir exeDir(exePath);
|
|
|
|
return exeDir.filePath(exeFileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Project::makeFileName()
|
|
|
|
{
|
2021-09-06 12:58:29 +08:00
|
|
|
if (mOptions.useCustomMakefile)
|
|
|
|
return mOptions.customMakefile;
|
2021-09-06 08:45:53 +08:00
|
|
|
else
|
2021-09-06 12:58:29 +08:00
|
|
|
return QDir(directory()).filePath(MAKEFILE_NAME);
|
|
|
|
}
|
|
|
|
|
2021-09-09 11:47:04 +08:00
|
|
|
bool Project::modified() const
|
2021-09-06 12:58:29 +08:00
|
|
|
{
|
|
|
|
// Project file modified? Done
|
|
|
|
if (mModified)
|
|
|
|
return true;// quick exit avoids loop over all units
|
|
|
|
|
|
|
|
// Otherwise, check all units
|
|
|
|
foreach (const PProjectUnit& unit, mUnits){
|
2021-11-25 20:50:51 +08:00
|
|
|
if (unit->modified()) {
|
2021-09-06 12:58:29 +08:00
|
|
|
return true;
|
2021-11-25 20:50:51 +08:00
|
|
|
}
|
2021-09-06 12:58:29 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Project::open()
|
|
|
|
{
|
2021-09-11 09:21:44 +08:00
|
|
|
mModel.beginUpdate();
|
|
|
|
auto action = finally([this]{
|
|
|
|
mModel.endUpdate();
|
|
|
|
});
|
2021-09-12 19:50:44 +08:00
|
|
|
// QFile fileInfo(mFilename);
|
|
|
|
SimpleIni ini;
|
|
|
|
ini.LoadFile(mFilename.toLocal8Bit());
|
|
|
|
loadOptions(ini);
|
2021-09-06 12:58:29 +08:00
|
|
|
|
2022-02-08 12:33:10 +08:00
|
|
|
mRootNode = makeProjectNode();
|
2021-09-06 12:58:29 +08:00
|
|
|
|
2021-09-12 19:50:44 +08:00
|
|
|
checkProjectFileForUpdate(ini);
|
|
|
|
int uCount = ini.GetLongValue("Project","UnitCount",0);
|
2021-09-18 10:47:35 +08:00
|
|
|
createFolderNodes();
|
2021-09-06 12:58:29 +08:00
|
|
|
QDir dir(directory());
|
|
|
|
for (int i=0;i<uCount;i++) {
|
2021-09-11 18:42:49 +08:00
|
|
|
PProjectUnit newUnit = std::make_shared<ProjectUnit>(this);
|
2021-09-12 19:50:44 +08:00
|
|
|
QByteArray groupName = toByteArray(QString("Unit%1").arg(i+1));
|
|
|
|
newUnit->setFileName(
|
|
|
|
dir.absoluteFilePath(
|
|
|
|
fromByteArray(ini.GetValue(groupName,"FileName",""))));
|
2022-03-28 16:57:58 +08:00
|
|
|
// if (!QFileInfo(newUnit->fileName()).exists()) {
|
|
|
|
// QMessageBox::critical(nullptr,
|
|
|
|
// tr("File Not Found"),
|
|
|
|
// tr("Project file '%1' can't be found!")
|
|
|
|
// .arg(newUnit->fileName()),
|
|
|
|
// QMessageBox::Ok);
|
|
|
|
// newUnit->setModified(true);
|
|
|
|
// } else {
|
|
|
|
newUnit->setFileMissing(!QFileInfo(newUnit->fileName()).exists());
|
|
|
|
newUnit->setFolder(fromByteArray(ini.GetValue(groupName,"Folder","")));
|
|
|
|
newUnit->setCompile(ini.GetBoolValue(groupName,"Compile", true));
|
|
|
|
newUnit->setCompileCpp(
|
|
|
|
ini.GetBoolValue(groupName,"CompileCpp",mOptions.isCpp));
|
|
|
|
|
|
|
|
newUnit->setLink(ini.GetBoolValue(groupName,"Link", true));
|
|
|
|
newUnit->setPriority(ini.GetLongValue(groupName,"Priority", 1000));
|
|
|
|
newUnit->setOverrideBuildCmd(ini.GetBoolValue(groupName,"OverrideBuildCmd", false));
|
|
|
|
newUnit->setBuildCmd(fromByteArray(ini.GetValue(groupName,"BuildCmd", "")));
|
|
|
|
QByteArray defaultEncoding = toByteArray(mOptions.encoding);
|
|
|
|
if (ini.GetBoolValue(groupName,"DetectEncoding",true)){
|
|
|
|
defaultEncoding = ENCODING_AUTO_DETECT;
|
|
|
|
}
|
|
|
|
newUnit->setEncoding(ini.GetValue(groupName, "FileEncoding",defaultEncoding));
|
|
|
|
if (QTextCodec::codecForName(newUnit->encoding())==nullptr) {
|
|
|
|
newUnit->setEncoding(ENCODING_AUTO_DETECT);
|
2021-09-07 00:32:16 +08:00
|
|
|
}
|
2022-03-28 16:57:58 +08:00
|
|
|
newUnit->setNew(false);
|
|
|
|
newUnit->setParent(this);
|
|
|
|
newUnit->setNode(makeNewFileNode(extractFileName(newUnit->fileName()), false, folderNodeFromName(newUnit->folder())));
|
|
|
|
newUnit->node()->unitIndex = mUnits.count();
|
|
|
|
mUnits.append(newUnit);
|
2021-09-07 00:32:16 +08:00
|
|
|
}
|
|
|
|
rebuildNodes();
|
|
|
|
}
|
2021-09-06 18:59:06 +08:00
|
|
|
|
2021-10-23 19:27:50 +08:00
|
|
|
void Project::setFileName(QString value)
|
2021-09-07 00:32:16 +08:00
|
|
|
{
|
2021-10-23 19:27:50 +08:00
|
|
|
value = QFileInfo(value).absoluteFilePath();
|
2021-09-07 00:32:16 +08:00
|
|
|
if (mFilename!=value) {
|
2021-09-10 23:41:38 +08:00
|
|
|
QFile::rename(mFilename,value);
|
2021-09-07 00:32:16 +08:00
|
|
|
mFilename = value;
|
|
|
|
setModified(true);
|
|
|
|
}
|
|
|
|
}
|
2021-09-06 12:58:29 +08:00
|
|
|
|
2021-09-07 00:32:16 +08:00
|
|
|
void Project::setModified(bool value)
|
|
|
|
{
|
2021-11-25 20:50:51 +08:00
|
|
|
if (mModified!=value) {
|
2021-09-07 00:32:16 +08:00
|
|
|
mModified=value;
|
2021-09-07 10:28:40 +08:00
|
|
|
emit modifyChanged(mModified);
|
2021-09-07 00:32:16 +08:00
|
|
|
}
|
2021-09-07 10:28:40 +08:00
|
|
|
}
|
2021-09-06 12:58:29 +08:00
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode Project::makeNewFileNode(const QString &s, bool isFolder, PProjectModelNode newParent)
|
2021-09-10 10:27:01 +08:00
|
|
|
{
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode node = std::make_shared<ProjectModelNode>();
|
2021-09-17 17:15:35 +08:00
|
|
|
if (!newParent) {
|
2022-02-08 12:33:10 +08:00
|
|
|
newParent = mRootNode;
|
2021-09-17 17:15:35 +08:00
|
|
|
}
|
2021-09-11 18:42:49 +08:00
|
|
|
newParent->children.append(node);
|
2021-09-10 10:27:01 +08:00
|
|
|
node->parent = newParent;
|
|
|
|
node->text = s;
|
2021-09-10 21:37:52 +08:00
|
|
|
if (newParent) {
|
|
|
|
node->level = newParent->level+1;
|
|
|
|
}
|
2022-02-08 12:33:10 +08:00
|
|
|
if (isFolder) {
|
2021-09-10 21:37:52 +08:00
|
|
|
node->unitIndex = -1;
|
2022-02-08 12:33:10 +08:00
|
|
|
node->priority = 0;
|
2022-02-13 20:08:18 +08:00
|
|
|
node->folderNodeType = ProjectSpecialFolderNode::NonSpecial;
|
|
|
|
} else {
|
|
|
|
node->folderNodeType = ProjectSpecialFolderNode::NotFolder;
|
2022-02-08 12:33:10 +08:00
|
|
|
}
|
2021-09-11 18:42:49 +08:00
|
|
|
return node;
|
2021-09-10 10:27:01 +08:00
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode Project::makeProjectNode()
|
2021-09-10 10:27:01 +08:00
|
|
|
{
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode node = std::make_shared<ProjectModelNode>();
|
2021-09-10 10:27:01 +08:00
|
|
|
node->text = mName;
|
2021-09-10 21:37:52 +08:00
|
|
|
node->level = 0;
|
2021-09-15 12:19:09 +08:00
|
|
|
node->unitIndex = -1;
|
2022-02-13 20:08:18 +08:00
|
|
|
node->folderNodeType = ProjectSpecialFolderNode::NonSpecial;
|
2021-09-11 18:42:49 +08:00
|
|
|
return node;
|
2021-09-10 10:27:01 +08:00
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectUnit Project::newUnit(PProjectModelNode parentNode, const QString& customFileName)
|
2021-09-10 12:37:02 +08:00
|
|
|
{
|
2021-09-11 18:42:49 +08:00
|
|
|
PProjectUnit newUnit = std::make_shared<ProjectUnit>(this);
|
2021-09-10 12:37:02 +08:00
|
|
|
|
|
|
|
// Select folder to add unit to
|
|
|
|
if (!parentNode)
|
2022-02-08 12:33:10 +08:00
|
|
|
parentNode = mRootNode; // project root node
|
2021-09-10 12:37:02 +08:00
|
|
|
|
|
|
|
if (parentNode->unitIndex>=0) { //it's a file
|
2022-02-08 12:33:10 +08:00
|
|
|
parentNode = mRootNode;
|
2021-09-10 12:37:02 +08:00
|
|
|
}
|
|
|
|
QString s;
|
|
|
|
QDir dir(directory());
|
|
|
|
// Find unused 'new' filename
|
|
|
|
if (customFileName.isEmpty()) {
|
|
|
|
do {
|
|
|
|
s = dir.absoluteFilePath(tr("untitled")+QString("%1").arg(getNewFileNumber()));
|
|
|
|
} while (fileExists(s));
|
|
|
|
} else {
|
|
|
|
s = dir.absoluteFilePath(customFileName);
|
|
|
|
}
|
|
|
|
// Add
|
2021-09-16 23:51:05 +08:00
|
|
|
int count = mUnits.count();
|
2021-09-10 12:37:02 +08:00
|
|
|
mUnits.append(newUnit);
|
|
|
|
|
|
|
|
// Set all properties
|
|
|
|
newUnit->setFileName(s);
|
|
|
|
newUnit->setNew(true);
|
|
|
|
newUnit->setFolder(getFolderPath(parentNode));
|
|
|
|
newUnit->setNode(makeNewFileNode(extractFileName(newUnit->fileName()),
|
|
|
|
false, parentNode));
|
2021-09-16 23:51:05 +08:00
|
|
|
newUnit->node()->unitIndex = count;
|
2021-09-10 12:37:02 +08:00
|
|
|
//parentNode.Expand(True);
|
2022-06-10 08:41:52 +08:00
|
|
|
switch(getFileType(customFileName)) {
|
|
|
|
case FileType::CSource:
|
|
|
|
newUnit->setCompile(true);
|
2022-04-25 21:48:04 +08:00
|
|
|
newUnit->setCompileCpp(false);
|
2022-06-10 08:41:52 +08:00
|
|
|
newUnit->setLink(true);
|
|
|
|
break;
|
|
|
|
case FileType::CppSource:
|
|
|
|
newUnit->setCompile(true);
|
|
|
|
newUnit->setCompileCpp(true);
|
|
|
|
newUnit->setLink(true);
|
|
|
|
break;
|
|
|
|
case FileType::WindowsResourceSource:
|
|
|
|
newUnit->setCompile(true);
|
2022-04-25 21:48:04 +08:00
|
|
|
newUnit->setCompileCpp(mOptions.isCpp);
|
2022-06-10 08:41:52 +08:00
|
|
|
newUnit->setLink(false);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
newUnit->setCompile(false);
|
|
|
|
newUnit->setCompileCpp(false);
|
|
|
|
newUnit->setLink(false);
|
2022-04-25 21:48:04 +08:00
|
|
|
}
|
2021-09-10 12:37:02 +08:00
|
|
|
newUnit->setPriority(1000);
|
|
|
|
newUnit->setOverrideBuildCmd(false);
|
|
|
|
newUnit->setBuildCmd("");
|
|
|
|
newUnit->setModified(true);
|
2021-11-15 19:30:24 +08:00
|
|
|
newUnit->setEncoding(toByteArray(mOptions.encoding));
|
2021-09-16 23:51:05 +08:00
|
|
|
return newUnit;
|
2021-09-10 12:37:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Editor *Project::openUnit(int index)
|
|
|
|
{
|
|
|
|
if ((index < 0) || (index >= mUnits.count()))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
PProjectUnit unit = mUnits[index];
|
|
|
|
|
2022-03-28 16:57:58 +08:00
|
|
|
if (!unit->fileName().isEmpty() && fileExists(unit->fileName())) {
|
|
|
|
Editor * editor = mEditorList->getOpenedEditorByFilename(unit->fileName());
|
2021-09-10 12:37:02 +08:00
|
|
|
if (editor) {//already opened in the editors
|
|
|
|
editor->setInProject(true);
|
2021-09-15 14:35:37 +08:00
|
|
|
editor->activate();
|
2021-09-10 12:37:02 +08:00
|
|
|
return editor;
|
|
|
|
}
|
2021-09-10 15:03:47 +08:00
|
|
|
QByteArray encoding;
|
2021-09-12 22:45:00 +08:00
|
|
|
encoding = unit->encoding();
|
2022-03-28 16:57:58 +08:00
|
|
|
editor = mEditorList->newEditor(unit->fileName(), encoding, true, unit->isNew());
|
|
|
|
if (editor) {
|
|
|
|
editor->setInProject(true);
|
|
|
|
//unit->setEncoding(encoding);
|
|
|
|
editor->activate();
|
|
|
|
loadUnitLayout(editor,index);
|
|
|
|
return editor;
|
|
|
|
}
|
2021-09-10 15:03:47 +08:00
|
|
|
}
|
2021-09-11 18:42:49 +08:00
|
|
|
return nullptr;
|
2021-09-10 15:03:47 +08:00
|
|
|
}
|
|
|
|
|
2022-03-21 09:08:05 +08:00
|
|
|
Editor *Project::unitEditor(const PProjectUnit &unit) const
|
|
|
|
{
|
2022-03-28 16:57:58 +08:00
|
|
|
return mEditorList->getOpenedEditorByFilename(unit->fileName());
|
2022-03-21 09:08:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Editor *Project::unitEditor(const ProjectUnit *unit) const
|
|
|
|
{
|
2022-03-28 16:57:58 +08:00
|
|
|
return mEditorList->getOpenedEditorByFilename(unit->fileName());
|
2022-03-21 09:08:05 +08:00
|
|
|
}
|
|
|
|
|
2021-09-10 15:03:47 +08:00
|
|
|
void Project::rebuildNodes()
|
|
|
|
{
|
2021-09-11 09:21:44 +08:00
|
|
|
mModel.beginUpdate();
|
2021-09-10 15:03:47 +08:00
|
|
|
// Delete everything
|
2022-02-08 12:33:10 +08:00
|
|
|
mRootNode->children.clear();
|
|
|
|
mFolderNodes.clear();
|
|
|
|
mSpecialNodes.clear();
|
|
|
|
mFileSystemFolderNodes.clear();
|
2021-09-10 15:03:47 +08:00
|
|
|
|
|
|
|
// Recreate everything
|
2022-02-08 00:24:08 +08:00
|
|
|
switch(mOptions.modelType) {
|
|
|
|
case ProjectModelType::Custom:
|
|
|
|
createFolderNodes();
|
|
|
|
|
|
|
|
for (int idx=0;idx<mUnits.count();idx++) {
|
2022-02-08 12:33:10 +08:00
|
|
|
QFileInfo fileInfo(mUnits[idx]->fileName());
|
2022-02-08 00:24:08 +08:00
|
|
|
mUnits[idx]->setNode(
|
|
|
|
makeNewFileNode(
|
2022-02-08 12:33:10 +08:00
|
|
|
fileInfo.fileName(),
|
2022-02-08 00:24:08 +08:00
|
|
|
false,
|
|
|
|
folderNodeFromName(mUnits[idx]->folder())
|
|
|
|
)
|
|
|
|
);
|
|
|
|
mUnits[idx]->node()->unitIndex = idx;
|
2022-02-08 12:33:10 +08:00
|
|
|
mUnits[idx]->node()->priority = mUnits[idx]->priority();
|
2022-02-08 00:24:08 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ProjectModelType::FileSystem:
|
|
|
|
createFileSystemFolderNodes();
|
2021-09-10 12:37:02 +08:00
|
|
|
|
2022-02-08 12:33:10 +08:00
|
|
|
for (int idx=0;idx<mUnits.count();idx++) {
|
|
|
|
QFileInfo fileInfo(mUnits[idx]->fileName());
|
|
|
|
mUnits[idx]->setNode(
|
|
|
|
makeNewFileNode(
|
|
|
|
fileInfo.fileName(),
|
|
|
|
false,
|
|
|
|
getParentFolderNode(
|
|
|
|
mUnits[idx]->fileName())
|
|
|
|
)
|
|
|
|
);
|
|
|
|
mUnits[idx]->node()->unitIndex = idx;
|
|
|
|
mUnits[idx]->node()->priority = mUnits[idx]->priority();
|
|
|
|
}
|
2022-04-08 17:22:24 +08:00
|
|
|
|
2022-02-08 12:33:10 +08:00
|
|
|
break;
|
|
|
|
}
|
2021-09-10 15:03:47 +08:00
|
|
|
|
2021-09-11 09:21:44 +08:00
|
|
|
mModel.endUpdate();
|
2021-09-10 15:03:47 +08:00
|
|
|
emit nodesChanged();
|
2021-09-10 12:37:02 +08:00
|
|
|
}
|
|
|
|
|
2021-11-15 22:08:35 +08:00
|
|
|
bool Project::removeUnit(int index, bool doClose , bool removeFile)
|
2021-09-10 21:37:52 +08:00
|
|
|
{
|
2021-09-11 09:21:44 +08:00
|
|
|
mModel.beginUpdate();
|
|
|
|
auto action = finally([this]{
|
|
|
|
mModel.endUpdate();
|
|
|
|
});
|
2021-09-10 21:37:52 +08:00
|
|
|
if (index<0 || index>=mUnits.count())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
PProjectUnit unit = mUnits[index];
|
|
|
|
|
2022-01-23 21:04:08 +08:00
|
|
|
// qDebug()<<unit->fileName();
|
|
|
|
// qDebug()<<(qint64)unit->editor();
|
2021-09-10 21:37:52 +08:00
|
|
|
// Attempt to close it
|
2022-03-21 09:08:05 +08:00
|
|
|
if (doClose) {
|
|
|
|
Editor* editor = unitEditor(unit);
|
|
|
|
if (editor) {
|
|
|
|
editor->setInProject(false);
|
|
|
|
mEditorList->closeEditor(editor);
|
|
|
|
}
|
2021-09-10 21:37:52 +08:00
|
|
|
}
|
|
|
|
|
2021-11-15 22:08:35 +08:00
|
|
|
if (removeFile) {
|
|
|
|
QFile::remove(unit->fileName());
|
|
|
|
}
|
|
|
|
|
2021-09-10 21:37:52 +08:00
|
|
|
//if not fUnits.GetItem(index).fNew then
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode node = unit->node();
|
|
|
|
PProjectModelNode parent = node->parent.lock();
|
2021-09-10 21:37:52 +08:00
|
|
|
if (parent) {
|
|
|
|
parent->children.removeAll(node);
|
|
|
|
}
|
|
|
|
mUnits.removeAt(index);
|
|
|
|
updateNodeIndexes();
|
|
|
|
setModified(true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
bool Project::removeFolder(PProjectModelNode node)
|
2021-09-10 21:37:52 +08:00
|
|
|
{
|
2021-09-11 09:21:44 +08:00
|
|
|
mModel.beginUpdate();
|
|
|
|
auto action = finally([this]{
|
|
|
|
mModel.endUpdate();
|
|
|
|
});
|
2021-09-10 21:37:52 +08:00
|
|
|
// Sanity check
|
|
|
|
if (!node)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Check if this is actually a folder
|
|
|
|
if (node->unitIndex>=0 || node->level<1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Let this function call itself
|
|
|
|
removeFolderRecurse(node);
|
|
|
|
|
|
|
|
// Update list of folders (sets modified)
|
|
|
|
updateFolders();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-09-11 18:42:49 +08:00
|
|
|
void Project::resetParserProjectFiles()
|
|
|
|
{
|
|
|
|
mParser->clearProjectFiles();
|
|
|
|
mParser->clearProjectIncludePaths();
|
|
|
|
foreach (const PProjectUnit& unit, mUnits) {
|
|
|
|
mParser->addFileToScan(unit->fileName());
|
|
|
|
}
|
2022-06-16 21:34:31 +08:00
|
|
|
foreach (const QString& s, mOptions.includeDirs) {
|
2021-09-11 18:42:49 +08:00
|
|
|
mParser->addProjectIncludePath(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-10 21:37:52 +08:00
|
|
|
void Project::saveAll()
|
|
|
|
{
|
|
|
|
if (!saveUnits())
|
|
|
|
return;
|
|
|
|
saveOptions(); // update other data, and save to disk
|
|
|
|
saveLayout(); // save current opened files, and which is "active".
|
|
|
|
|
|
|
|
// We have saved everything to disk, so mark unmodified
|
|
|
|
setModified(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Project::saveLayout()
|
|
|
|
{
|
2021-11-17 10:55:18 +08:00
|
|
|
SimpleIni layIni;
|
2021-09-10 21:37:52 +08:00
|
|
|
QStringList sl;
|
|
|
|
// Write list of open project files
|
2022-03-21 09:08:05 +08:00
|
|
|
for (int i=0;i<mEditorList->pageCount();i++) {
|
|
|
|
Editor* e= (*mEditorList)[i];
|
2021-09-10 21:37:52 +08:00
|
|
|
if (e && e->inProject())
|
|
|
|
sl.append(QString("%1").arg(indexInUnits(e)));
|
|
|
|
}
|
2021-11-17 10:55:18 +08:00
|
|
|
layIni.SetValue("Editors","Order",sl.join(",").toUtf8());
|
2021-09-10 21:37:52 +08:00
|
|
|
|
|
|
|
Editor *e, *e2;
|
|
|
|
// Remember what files were visible
|
2022-03-21 09:08:05 +08:00
|
|
|
mEditorList->getVisibleEditors(e, e2);
|
2021-09-10 21:37:52 +08:00
|
|
|
if (e)
|
2021-11-17 10:55:18 +08:00
|
|
|
layIni.SetLongValue("Editors","Focused", indexInUnits(e));
|
2021-09-10 21:37:52 +08:00
|
|
|
// save editor info
|
|
|
|
for (int i=0;i<mUnits.count();i++) {
|
2021-11-17 10:55:18 +08:00
|
|
|
QByteArray groupName = QString("Editor_%1").arg(i).toUtf8();
|
2021-09-10 21:37:52 +08:00
|
|
|
PProjectUnit unit = mUnits[i];
|
2022-03-21 09:08:05 +08:00
|
|
|
Editor* editor = unitEditor(unit);
|
2021-09-10 21:37:52 +08:00
|
|
|
if (editor) {
|
2021-11-17 10:55:18 +08:00
|
|
|
layIni.SetLongValue(groupName,"CursorCol", editor->caretX());
|
|
|
|
layIni.SetLongValue(groupName,"CursorRow", editor->caretY());
|
|
|
|
layIni.SetLongValue(groupName,"TopLine", editor->topLine());
|
|
|
|
layIni.SetLongValue(groupName,"LeftChar", editor->leftChar());
|
2021-09-10 21:37:52 +08:00
|
|
|
}
|
|
|
|
// remove old data from project file
|
2022-03-08 20:36:30 +08:00
|
|
|
// SimpleIni ini;
|
|
|
|
// ini.LoadFile(filename().toLocal8Bit());
|
|
|
|
// groupName = toByteArray(QString("Unit%1").arg(i+1));
|
|
|
|
// ini.Delete(groupName,"Open");
|
|
|
|
// ini.Delete(groupName,"Top");
|
|
|
|
// ini.Delete(groupName,"CursorCol");
|
|
|
|
// ini.Delete(groupName,"CursorRow");
|
|
|
|
// ini.Delete(groupName,"TopLine");
|
|
|
|
// ini.Delete(groupName,"LeftChar");
|
|
|
|
// ini.SaveFile(filename().toLocal8Bit());
|
2021-09-10 21:37:52 +08:00
|
|
|
}
|
2021-11-17 10:55:18 +08:00
|
|
|
layIni.SaveFile(changeFileExt(filename(), "layout").toLocal8Bit());
|
2021-09-10 21:37:52 +08:00
|
|
|
}
|
|
|
|
|
2021-09-18 10:47:35 +08:00
|
|
|
void Project::saveUnitAs(int i, const QString &sFileName, bool syncEditor)
|
2021-09-10 23:41:38 +08:00
|
|
|
{
|
|
|
|
if ((i < 0) || (i >= mUnits.count()))
|
|
|
|
return;
|
|
|
|
PProjectUnit unit = mUnits[i];
|
2021-09-18 10:47:35 +08:00
|
|
|
if (fileExists(unit->fileName())) {
|
|
|
|
unit->setNew(false);
|
|
|
|
}
|
2022-03-21 09:08:05 +08:00
|
|
|
Editor * editor=unitEditor(unit);
|
|
|
|
if (editor && syncEditor) {
|
2021-09-18 10:47:35 +08:00
|
|
|
//prevent recurse
|
2022-03-21 09:08:05 +08:00
|
|
|
editor->saveAs(sFileName,true);
|
2021-09-18 10:47:35 +08:00
|
|
|
}
|
2021-09-10 23:41:38 +08:00
|
|
|
unit->setNew(false);
|
|
|
|
unit->setFileName(sFileName);
|
2021-09-12 19:50:44 +08:00
|
|
|
SimpleIni ini;
|
|
|
|
ini.LoadFile(mFilename.toLocal8Bit());
|
|
|
|
QByteArray groupName = toByteArray(QString("Unit%1").arg(i+1));
|
|
|
|
ini.SetValue(
|
|
|
|
groupName,
|
|
|
|
"FileName",
|
|
|
|
toByteArray(
|
|
|
|
extractRelativePath(
|
|
|
|
directory(),
|
|
|
|
sFileName)));
|
|
|
|
ini.SaveFile(mFilename.toLocal8Bit());
|
2021-09-10 23:41:38 +08:00
|
|
|
setModified(true);
|
2021-09-18 10:47:35 +08:00
|
|
|
if (!syncEditor) {
|
|
|
|
//the call it's from editor, we need to update model
|
|
|
|
mModel.beginUpdate();
|
|
|
|
mModel.endUpdate();
|
|
|
|
}
|
2021-09-10 23:41:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Project::saveUnitLayout(Editor *e, int index)
|
|
|
|
{
|
|
|
|
if (!e)
|
|
|
|
return;
|
2021-11-17 10:55:18 +08:00
|
|
|
SimpleIni layIni;
|
|
|
|
QByteArray groupName = (QString("Editor_%1").arg(index)).toUtf8();
|
|
|
|
layIni.SetLongValue(groupName,"CursorCol", e->caretX());
|
|
|
|
layIni.SetLongValue(groupName,"CursorRow", e->caretY());
|
|
|
|
layIni.SetLongValue(groupName,"TopLine", e->topLine());
|
|
|
|
layIni.SetLongValue(groupName,"LeftChar", e->leftChar());
|
|
|
|
layIni.SaveFile((changeFileExt(filename(), "layout")).toLocal8Bit());
|
2021-09-10 23:41:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Project::saveUnits()
|
|
|
|
{
|
|
|
|
int count = 0;
|
2021-09-12 19:50:44 +08:00
|
|
|
SimpleIni ini;
|
2021-11-17 10:55:18 +08:00
|
|
|
SI_Error error = ini.LoadFile(mFilename.toLocal8Bit());
|
|
|
|
if (error != SI_Error::SI_OK)
|
|
|
|
return false;
|
2021-09-10 23:41:38 +08:00
|
|
|
for (int idx = 0; idx < mUnits.count(); idx++) {
|
|
|
|
PProjectUnit unit = mUnits[idx];
|
2021-09-12 19:50:44 +08:00
|
|
|
QByteArray groupName = toByteArray(QString("Unit%1").arg(count+1));
|
2022-03-28 16:57:58 +08:00
|
|
|
if (!unit->FileMissing()) {
|
|
|
|
bool rd_only = false;
|
|
|
|
if (unit->modified() && fileExists(unit->fileName())
|
|
|
|
&& isReadOnly(unit->fileName())) {
|
|
|
|
// file is read-only
|
|
|
|
QMessageBox::critical(nullptr,
|
|
|
|
tr("Can't save file"),
|
|
|
|
tr("Can't save file '%1'").arg(unit->fileName()),
|
|
|
|
QMessageBox::Ok
|
|
|
|
);
|
|
|
|
rd_only = true;
|
|
|
|
}
|
|
|
|
if (!rd_only) {
|
|
|
|
if (!unit->save() && unit->isNew())
|
|
|
|
return false;
|
|
|
|
}
|
2021-09-10 23:41:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// saved new file or an existing file add to project file
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetValue(
|
|
|
|
groupName,
|
|
|
|
"FileName",
|
|
|
|
toByteArray(
|
|
|
|
extractRelativePath(
|
|
|
|
directory(),
|
|
|
|
unit->fileName())));
|
2021-09-10 23:41:38 +08:00
|
|
|
count++;
|
|
|
|
switch(getFileType(unit->fileName())) {
|
|
|
|
case FileType::CHeader:
|
|
|
|
case FileType::CSource:
|
|
|
|
case FileType::CppHeader:
|
|
|
|
case FileType::CppSource:
|
2021-09-15 11:23:42 +08:00
|
|
|
ini.SetLongValue(groupName,"CompileCpp", unit->compileCpp());
|
2021-09-10 23:41:38 +08:00
|
|
|
break;
|
|
|
|
case FileType::WindowsResourceSource:
|
|
|
|
unit->setFolder("Resources");
|
2021-10-20 18:05:43 +08:00
|
|
|
default:
|
|
|
|
break;
|
2021-09-10 23:41:38 +08:00
|
|
|
}
|
2021-09-17 13:35:50 +08:00
|
|
|
unit->setNew(false);
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetValue(groupName,"Folder", toByteArray(unit->folder()));
|
2021-09-15 11:23:42 +08:00
|
|
|
ini.SetLongValue(groupName,"Compile", unit->compile());
|
|
|
|
ini.SetLongValue(groupName,"Link", unit->link());
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetLongValue(groupName,"Priority", unit->priority());
|
2021-09-15 11:23:42 +08:00
|
|
|
ini.SetLongValue(groupName,"OverrideBuildCmd", unit->overrideBuildCmd());
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetValue(groupName,"BuildCmd", toByteArray(unit->buildCmd()));
|
2021-09-15 11:23:42 +08:00
|
|
|
ini.SetLongValue(groupName,"DetectEncoding", unit->encoding()==ENCODING_AUTO_DETECT);
|
2022-04-13 16:42:23 +08:00
|
|
|
if (unit->encoding() != options().encoding)
|
|
|
|
ini.SetValue(groupName,"FileEncoding", toByteArray(unit->encoding()));
|
2021-09-10 23:41:38 +08:00
|
|
|
}
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetLongValue("Project","UnitCount",count);
|
|
|
|
ini.SaveFile(mFilename.toLocal8Bit());
|
2021-09-10 23:41:38 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-04-08 21:15:10 +08:00
|
|
|
void Project::saveAsTemplate(const QString &filename,
|
|
|
|
const QString &name,
|
|
|
|
const QString &description,
|
|
|
|
const QString &category)
|
|
|
|
{
|
|
|
|
SimpleIni ini;
|
|
|
|
ini.SetValue("Template", "Icon", "");
|
|
|
|
ini.SetValue("Template", "Category",toByteArray(category));
|
|
|
|
ini.SetValue("Template", "Name",toByteArray(name));
|
|
|
|
ini.SetValue("Template", "Description", toByteArray(description));
|
|
|
|
ini.SetValue("Project", "Icon", toByteArray(options().icon));
|
|
|
|
//todo: save to template
|
|
|
|
// mOptions.type = static_cast<ProjectType>(mIni->GetLongValue("Project", "Type", 0)); // default = gui
|
|
|
|
// mOptions.objFiles = fromByteArray(mIni->GetValue("Project", "ObjFiles", "")).split(";",QString::SkipEmptyParts);
|
|
|
|
// mOptions.includes = fromByteArray(mIni->GetValue("Project", "Includes", "")).split(";",QString::SkipEmptyParts);
|
|
|
|
// mOptions.libs = fromByteArray(mIni->GetValue("Project", "Libs", "")).split(";",QString::SkipEmptyParts);
|
|
|
|
// mOptions.resourceIncludes = fromByteArray(mIni->GetValue("Project", "ResourceIncludes", "")).split(";",QString::SkipEmptyParts);
|
|
|
|
// mOptions.compilerCmd = fromByteArray(mIni->GetValue("Project", "Compiler", ""));
|
|
|
|
// mOptions.cppCompilerCmd = fromByteArray(mIni->GetValue("Project", "CppCompiler", ""));
|
|
|
|
// mOptions.linkerCmd = fromByteArray(mIni->GetValue("Project", "Linker",""));
|
|
|
|
// mOptions.isCpp = mIni->GetBoolValue("Project", "IsCpp", false);
|
|
|
|
// mOptions.includeVersionInfo = mIni->GetBoolValue("Project", "IncludeVersionInfo", false);
|
|
|
|
// mOptions.supportXPThemes = mIni->GetBoolValue("Project", "SupportXPThemes", false);
|
|
|
|
// mOptions.exeOutput = fromByteArray(mIni->GetValue("Project", "ExeOutput", ""));
|
|
|
|
// mOptions.objectOutput = fromByteArray(mIni->GetValue("Project", "ObjectOutput", ""));
|
|
|
|
// mOptions.logOutput = fromByteArray(mIni->GetValue("Project", "LogOutput", ""));
|
|
|
|
// mOptions.staticLink = mIni->GetBoolValue("Project", "StaticLink",true);
|
|
|
|
// mOptions.addCharset = mIni->GetBoolValue("Project", "AddCharset",true);
|
|
|
|
// bool useUTF8 = mIni->GetBoolValue("Project", "UseUTF8", false);
|
|
|
|
// if (useUTF8) {
|
|
|
|
// mOptions.encoding = fromByteArray(mIni->GetValue("Project","Encoding", ENCODING_UTF8));
|
|
|
|
// } else {
|
|
|
|
// mOptions.encoding = fromByteArray(mIni->GetValue("Project","Encoding", ENCODING_AUTO_DETECT));
|
|
|
|
// }
|
|
|
|
// mOptions.modelType = (ProjectModelType)mIni->GetLongValue("Project", "ModelType", (int)ProjectModelType::FileSystem);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-01-13 17:15:57 +08:00
|
|
|
PProjectUnit Project::findUnitByFilename(const QString &filename)
|
2022-01-13 16:47:48 +08:00
|
|
|
{
|
2022-01-13 17:15:57 +08:00
|
|
|
foreach(PProjectUnit unit, mUnits) {
|
2022-01-13 16:47:48 +08:00
|
|
|
if (QString::compare(unit->fileName(),filename, PATH_SENSITIVITY)==0)
|
2022-01-13 17:15:57 +08:00
|
|
|
return unit;
|
|
|
|
}
|
|
|
|
return PProjectUnit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Project::associateEditor(Editor *editor)
|
|
|
|
{
|
|
|
|
if (!editor)
|
|
|
|
return;
|
|
|
|
PProjectUnit unit = findUnitByFilename(editor->filename());
|
|
|
|
associateEditorToUnit(editor,unit);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Project::associateEditorToUnit(Editor *editor, PProjectUnit unit)
|
|
|
|
{
|
2022-03-22 18:39:53 +08:00
|
|
|
if (!unit) {
|
|
|
|
if (editor)
|
|
|
|
editor->setInProject(false);
|
2022-01-13 17:15:57 +08:00
|
|
|
return;
|
2022-03-22 18:39:53 +08:00
|
|
|
}
|
2022-01-13 17:15:57 +08:00
|
|
|
if (editor) {
|
|
|
|
unit->setEncoding(editor->encodingOption());
|
|
|
|
editor->setInProject(true);
|
2022-01-13 16:47:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-13 20:22:16 +08:00
|
|
|
//bool Project::setCompileOption(const QString &key, int valIndex)
|
|
|
|
//{
|
|
|
|
// Settings::PCompilerSet pSet = pSettings->compilerSets().getSet(mOptions.compilerSet);
|
|
|
|
// if (!pSet)
|
|
|
|
// return false;
|
|
|
|
// PCompilerOption op = CompilerInfoManager::getCompilerOption(
|
|
|
|
// pSet->compilerType(), key);
|
|
|
|
// if (!op)
|
|
|
|
// return false;
|
|
|
|
// if (op->choices.isEmpty()) {
|
|
|
|
// if (valIndex>0)
|
|
|
|
// mOptions.compilerOptions.insert(key,COMPILER_OPTION_ON);
|
|
|
|
// else
|
|
|
|
// mOptions.compilerOptions.insert(key,"");
|
|
|
|
// } else {
|
|
|
|
// if (valIndex>0 && valIndex <= op->choices.length()) {
|
|
|
|
// mOptions.compilerOptions.insert(key,op->choices[valIndex-1].second);
|
|
|
|
// } else {
|
|
|
|
// mOptions.compilerOptions.insert(key,"");
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// return true;
|
|
|
|
//}
|
2022-05-12 15:28:08 +08:00
|
|
|
|
|
|
|
bool Project::setCompileOption(const QString &key, const QString &value)
|
|
|
|
{
|
2022-05-13 20:22:16 +08:00
|
|
|
Settings::PCompilerSet pSet = pSettings->compilerSets().getSet(mOptions.compilerSet);
|
|
|
|
if (!pSet)
|
|
|
|
return false;
|
|
|
|
PCompilerOption op = CompilerInfoManager::getCompilerOption(
|
|
|
|
pSet->compilerType(), key);
|
2022-05-12 15:28:08 +08:00
|
|
|
if (!op)
|
|
|
|
return false;
|
|
|
|
mOptions.compilerOptions.insert(key,value);
|
|
|
|
return true;
|
2021-09-10 23:41:38 +08:00
|
|
|
}
|
|
|
|
|
2022-05-14 11:21:59 +08:00
|
|
|
QString Project::getCompileOption(const QString &key) const
|
|
|
|
{
|
|
|
|
return mOptions.compilerOptions.value(key,"");
|
|
|
|
}
|
|
|
|
|
2021-09-11 09:21:44 +08:00
|
|
|
void Project::updateFolders()
|
|
|
|
{
|
|
|
|
mFolders.clear();
|
2022-02-08 12:33:10 +08:00
|
|
|
updateFolderNode(mRootNode);
|
2021-09-11 09:21:44 +08:00
|
|
|
for (int idx = 0; idx < mUnits.count();idx++)
|
|
|
|
mUnits[idx]->setFolder(
|
|
|
|
getFolderPath(
|
|
|
|
mUnits[idx]->node()->parent.lock()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
setModified(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Project::updateNodeIndexes()
|
|
|
|
{
|
|
|
|
for (int idx = 0;idx<mUnits.count();idx++)
|
|
|
|
mUnits[idx]->node()->unitIndex = idx;
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode Project::pointerToNode(ProjectModelNode *p, PProjectModelNode parent)
|
2021-09-17 13:35:50 +08:00
|
|
|
{
|
2022-05-19 17:57:31 +08:00
|
|
|
if (!p)
|
|
|
|
return PProjectModelNode();
|
2021-09-17 19:58:37 +08:00
|
|
|
if (!parent) {
|
2022-02-08 12:33:10 +08:00
|
|
|
parent = mRootNode;
|
2021-09-17 19:58:37 +08:00
|
|
|
}
|
2022-02-08 12:33:10 +08:00
|
|
|
if (p==mRootNode.get())
|
|
|
|
return mRootNode;
|
2022-02-08 00:24:08 +08:00
|
|
|
foreach (const PProjectModelNode& node , parent->children) {
|
2021-09-17 13:35:50 +08:00
|
|
|
if (node.get()==p)
|
|
|
|
return node;
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode result = pointerToNode(p,node);
|
2021-09-17 19:58:37 +08:00
|
|
|
if (result)
|
|
|
|
return result;
|
2021-09-17 13:35:50 +08:00
|
|
|
}
|
2022-02-08 00:24:08 +08:00
|
|
|
return PProjectModelNode();
|
2021-09-17 13:35:50 +08:00
|
|
|
}
|
|
|
|
|
2021-10-25 21:36:23 +08:00
|
|
|
void Project::setCompilerSet(int compilerSetIndex)
|
|
|
|
{
|
|
|
|
if (mOptions.compilerSet != compilerSetIndex) {
|
|
|
|
mOptions.compilerSet = compilerSetIndex;
|
|
|
|
updateCompilerSetType();
|
2022-03-30 19:50:55 +08:00
|
|
|
setModified(true);
|
2021-10-25 21:36:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-03 21:36:12 +08:00
|
|
|
bool Project::assignTemplate(const std::shared_ptr<ProjectTemplate> aTemplate, bool useCpp)
|
2021-09-16 23:51:05 +08:00
|
|
|
{
|
|
|
|
if (!aTemplate) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
mOptions = aTemplate->options();
|
2021-09-18 22:37:07 +08:00
|
|
|
mOptions.compilerSet = pSettings->compilerSets().defaultIndex();
|
2022-02-01 16:17:28 +08:00
|
|
|
mOptions.isCpp = useCpp;
|
2021-10-25 22:06:52 +08:00
|
|
|
updateCompilerSetType();
|
2021-09-17 09:56:52 +08:00
|
|
|
mOptions.icon = aTemplate->icon();
|
2021-09-16 23:51:05 +08:00
|
|
|
|
|
|
|
// Copy icon to project directory
|
|
|
|
if (!mOptions.icon.isEmpty()) {
|
2022-03-15 20:17:47 +08:00
|
|
|
QString originIcon = QFileInfo(aTemplate->fileName()).absoluteDir().absoluteFilePath(mOptions.icon);
|
2021-09-16 23:51:05 +08:00
|
|
|
if (fileExists(originIcon)) {
|
2022-04-25 21:48:04 +08:00
|
|
|
QString destIcon = QFileInfo(mFilename).absoluteDir().absoluteFilePath("app.ico");
|
2021-09-16 23:51:05 +08:00
|
|
|
QFile::copy(originIcon,destIcon);
|
|
|
|
mOptions.icon = destIcon;
|
|
|
|
} else {
|
|
|
|
mOptions.icon = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Add list of files
|
|
|
|
if (aTemplate->version() > 0) {
|
|
|
|
for (int i=0;i<aTemplate->unitCount();i++) {
|
|
|
|
// Pick file contents
|
|
|
|
PTemplateUnit templateUnit = aTemplate->unit(i);
|
2022-01-10 10:53:16 +08:00
|
|
|
if (!templateUnit->Source.isEmpty()) {
|
|
|
|
QString target = templateUnit->Source;
|
|
|
|
PProjectUnit unit;
|
|
|
|
if (!templateUnit->Target.isEmpty())
|
|
|
|
target = templateUnit->Target;
|
|
|
|
QFile::copy(
|
|
|
|
QDir(pSettings->dirs().templateDir()).absoluteFilePath(templateUnit->Source),
|
|
|
|
includeTrailingPathDelimiter(this->directory())+target);
|
2022-02-08 12:33:10 +08:00
|
|
|
unit = newUnit(mRootNode, target);
|
2021-09-16 23:51:05 +08:00
|
|
|
} else {
|
2022-01-10 10:53:16 +08:00
|
|
|
QString s;
|
|
|
|
PProjectUnit unit;
|
2022-02-01 16:17:28 +08:00
|
|
|
if (mOptions.isCpp) {
|
2022-01-10 10:53:16 +08:00
|
|
|
s = templateUnit->CppText;
|
2022-02-08 12:33:10 +08:00
|
|
|
unit = newUnit(mRootNode, templateUnit->CppName);
|
2022-01-10 10:53:16 +08:00
|
|
|
} else {
|
|
|
|
s = templateUnit->CText;
|
2022-02-08 12:33:10 +08:00
|
|
|
unit = newUnit(mRootNode,templateUnit->CName);
|
2022-01-10 10:53:16 +08:00
|
|
|
}
|
2021-09-26 22:39:26 +08:00
|
|
|
|
2022-03-21 09:08:05 +08:00
|
|
|
Editor * editor = mEditorList->newEditor(
|
2022-03-28 16:57:58 +08:00
|
|
|
unit->fileName(),
|
2022-01-10 10:53:16 +08:00
|
|
|
unit->encoding(),
|
|
|
|
true,
|
|
|
|
true);
|
|
|
|
|
|
|
|
QString s2 = QDir(pSettings->dirs().templateDir()).absoluteFilePath(s);
|
|
|
|
if (fileExists(s2) && !s.isEmpty()) {
|
|
|
|
try {
|
|
|
|
editor->loadFile(s2);
|
|
|
|
} catch(FileError& e) {
|
2022-03-21 09:08:05 +08:00
|
|
|
QMessageBox::critical(nullptr,
|
2022-01-10 10:53:16 +08:00
|
|
|
tr("Error Load File"),
|
|
|
|
e.reason());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
s.replace("#13#10","\r\n");
|
|
|
|
editor->insertString(s,false);
|
2021-10-25 00:30:53 +08:00
|
|
|
}
|
2022-01-10 10:53:16 +08:00
|
|
|
editor->save(true,false);
|
|
|
|
editor->activate();
|
2021-09-16 23:51:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-08 12:33:10 +08:00
|
|
|
rebuildNodes();
|
2021-09-16 23:51:05 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-09-10 21:37:52 +08:00
|
|
|
void Project::saveOptions()
|
|
|
|
{
|
2021-09-12 19:50:44 +08:00
|
|
|
SimpleIni ini;
|
|
|
|
ini.LoadFile(mFilename.toLocal8Bit());
|
|
|
|
ini.SetValue("Project","FileName", toByteArray(extractRelativePath(directory(), mFilename)));
|
|
|
|
ini.SetValue("Project","Name", toByteArray(mName));
|
|
|
|
ini.SetLongValue("Project","Type", static_cast<int>(mOptions.type));
|
2021-12-30 19:25:47 +08:00
|
|
|
ini.SetLongValue("Project","Ver", 3); // Is 3 as of Red Panda C++.0
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetValue("Project","ObjFiles", toByteArray(mOptions.objFiles.join(";")));
|
2022-06-16 21:34:31 +08:00
|
|
|
ini.SetValue("Project","Includes", toByteArray(mOptions.includeDirs.join(";")));
|
|
|
|
ini.SetValue("Project","Libs", toByteArray(mOptions.libDirs.join(";")));
|
|
|
|
ini.SetValue("Project","Bins", toByteArray(mOptions.binDirs.join(";")));
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetValue("Project","PrivateResource", toByteArray(mOptions.privateResource));
|
|
|
|
ini.SetValue("Project","ResourceIncludes", toByteArray(mOptions.resourceIncludes.join(";")));
|
|
|
|
ini.SetValue("Project","MakeIncludes", toByteArray(mOptions.makeIncludes.join(";")));
|
|
|
|
ini.SetValue("Project","Compiler", toByteArray(mOptions.compilerCmd));
|
|
|
|
ini.SetValue("Project","CppCompiler", toByteArray(mOptions.cppCompilerCmd));
|
|
|
|
ini.SetValue("Project","Linker", toByteArray(mOptions.linkerCmd));
|
2022-02-01 16:17:28 +08:00
|
|
|
ini.SetLongValue("Project","IsCpp", mOptions.isCpp);
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetValue("Project","Icon", toByteArray(extractRelativePath(directory(), mOptions.icon)));
|
|
|
|
ini.SetValue("Project","ExeOutput", toByteArray(mOptions.exeOutput));
|
|
|
|
ini.SetValue("Project","ObjectOutput", toByteArray(mOptions.objectOutput));
|
|
|
|
ini.SetValue("Project","LogOutput", toByteArray(mOptions.logOutput));
|
2021-09-15 11:23:42 +08:00
|
|
|
ini.SetLongValue("Project","LogOutputEnabled", mOptions.logOutputEnabled);
|
|
|
|
ini.SetLongValue("Project","OverrideOutput", mOptions.overrideOutput);
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetValue("Project","OverrideOutputName", toByteArray(mOptions.overridenOutput));
|
|
|
|
ini.SetValue("Project","HostApplication", toByteArray(mOptions.hostApplication));
|
2021-09-15 11:23:42 +08:00
|
|
|
ini.SetLongValue("Project","UseCustomMakefile", mOptions.useCustomMakefile);
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetValue("Project","CustomMakefile", toByteArray(mOptions.customMakefile));
|
2021-09-15 11:23:42 +08:00
|
|
|
ini.SetLongValue("Project","UsePrecompiledHeader", mOptions.usePrecompiledHeader);
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetValue("Project","PrecompiledHeader", toByteArray(mOptions.precompiledHeader));
|
|
|
|
ini.SetValue("Project","CommandLine", toByteArray(mOptions.cmdLineArgs));
|
|
|
|
ini.SetValue("Project","Folders", toByteArray(mFolders.join(";")));
|
2021-09-15 11:23:42 +08:00
|
|
|
ini.SetLongValue("Project","IncludeVersionInfo", mOptions.includeVersionInfo);
|
|
|
|
ini.SetLongValue("Project","SupportXPThemes", mOptions.supportXPThemes);
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetLongValue("Project","CompilerSet", mOptions.compilerSet);
|
2021-10-25 21:36:23 +08:00
|
|
|
ini.SetLongValue("Project","CompilerSetType", mOptions.compilerSetType);
|
2022-06-10 22:08:10 +08:00
|
|
|
ini.Delete("Project","CompilerSettings"); // remove old compiler settings
|
|
|
|
ini.Delete("CompilerSettings",nullptr); // remove old compiler settings
|
2022-05-12 15:28:08 +08:00
|
|
|
foreach (const QString& key, mOptions.compilerOptions.keys()) {
|
|
|
|
ini.SetValue("CompilerSettings",toByteArray(key),toByteArray(mOptions.compilerOptions.value(key)));
|
|
|
|
}
|
2021-09-15 11:23:42 +08:00
|
|
|
ini.SetLongValue("Project","StaticLink", mOptions.staticLink);
|
|
|
|
ini.SetLongValue("Project","AddCharset", mOptions.addCharset);
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetValue("Project","Encoding",toByteArray(mOptions.encoding));
|
2022-02-08 00:24:08 +08:00
|
|
|
ini.SetLongValue("Project","ModelType", (int)mOptions.modelType);
|
2021-09-10 23:41:38 +08:00
|
|
|
//for Red Panda Dev C++ 6 compatibility
|
2021-09-15 11:23:42 +08:00
|
|
|
ini.SetLongValue("Project","UseUTF8",mOptions.encoding == ENCODING_UTF8);
|
2021-09-12 19:50:44 +08:00
|
|
|
|
|
|
|
ini.SetLongValue("VersionInfo","Major", mOptions.versionInfo.major);
|
|
|
|
ini.SetLongValue("VersionInfo","Minor", mOptions.versionInfo.minor);
|
|
|
|
ini.SetLongValue("VersionInfo","Release", mOptions.versionInfo.release);
|
|
|
|
ini.SetLongValue("VersionInfo","Build", mOptions.versionInfo.build);
|
|
|
|
ini.SetLongValue("VersionInfo","LanguageID", mOptions.versionInfo.languageID);
|
|
|
|
ini.SetLongValue("VersionInfo","CharsetID", mOptions.versionInfo.charsetID);
|
|
|
|
ini.SetValue("VersionInfo","CompanyName", toByteArray(mOptions.versionInfo.companyName));
|
|
|
|
ini.SetValue("VersionInfo","FileVersion", toByteArray(mOptions.versionInfo.fileVersion));
|
|
|
|
ini.SetValue("VersionInfo","FileDescription", toByteArray(mOptions.versionInfo.fileDescription));
|
|
|
|
ini.SetValue("VersionInfo","InternalName", toByteArray(mOptions.versionInfo.internalName));
|
|
|
|
ini.SetValue("VersionInfo","LegalCopyright", toByteArray(mOptions.versionInfo.legalCopyright));
|
|
|
|
ini.SetValue("VersionInfo","LegalTrademarks", toByteArray(mOptions.versionInfo.legalTrademarks));
|
|
|
|
ini.SetValue("VersionInfo","OriginalFilename", toByteArray(mOptions.versionInfo.originalFilename));
|
|
|
|
ini.SetValue("VersionInfo","ProductName", toByteArray(mOptions.versionInfo.productName));
|
|
|
|
ini.SetValue("VersionInfo","ProductVersion", toByteArray(mOptions.versionInfo.productVersion));
|
2021-09-15 11:23:42 +08:00
|
|
|
ini.SetLongValue("VersionInfo","AutoIncBuildNr", mOptions.versionInfo.autoIncBuildNr);
|
|
|
|
ini.SetLongValue("VersionInfo","SyncProduct", mOptions.versionInfo.syncProduct);
|
2021-09-10 23:41:38 +08:00
|
|
|
|
2021-09-10 21:37:52 +08:00
|
|
|
|
2021-09-12 19:50:44 +08:00
|
|
|
//delete outdated dev4 project options
|
|
|
|
ini.Delete("Project","NoConsole");
|
|
|
|
ini.Delete("Project","IsDLL");
|
|
|
|
ini.Delete("Project","ResFiles");
|
|
|
|
ini.Delete("Project","IncludeDirs");
|
|
|
|
ini.Delete("Project","CompilerOptions");
|
|
|
|
ini.Delete("Project","Use_GPP");
|
|
|
|
|
|
|
|
ini.SaveFile(mFilename.toLocal8Bit());
|
2021-09-10 21:37:52 +08:00
|
|
|
}
|
|
|
|
|
2021-09-07 10:28:40 +08:00
|
|
|
void Project::addFolder(const QString &s)
|
|
|
|
{
|
|
|
|
if (mFolders.indexOf(s)<0) {
|
2021-09-11 09:21:44 +08:00
|
|
|
mModel.beginUpdate();
|
|
|
|
auto action = finally([this]{
|
|
|
|
mModel.endUpdate();
|
|
|
|
});
|
2021-09-07 10:28:40 +08:00
|
|
|
mFolders.append(s);
|
|
|
|
rebuildNodes();
|
|
|
|
//todo: MainForm.ProjectView.Select(FolderNodeFromName(s));
|
|
|
|
//folderNodeFromName(s)->makeVisible();
|
|
|
|
setModified(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectUnit Project::addUnit(const QString &inFileName, PProjectModelNode parentNode, bool rebuild)
|
2021-09-07 10:28:40 +08:00
|
|
|
{
|
|
|
|
PProjectUnit newUnit;
|
|
|
|
// Don't add if it already exists
|
|
|
|
if (fileAlreadyExists(inFileName)) {
|
2022-03-21 09:08:05 +08:00
|
|
|
QMessageBox::critical(nullptr,
|
2021-09-07 10:28:40 +08:00
|
|
|
tr("File Exists"),
|
|
|
|
tr("File '%1' is already in the project"),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
return newUnit;
|
|
|
|
}
|
|
|
|
newUnit = std::make_shared<ProjectUnit>(this);
|
|
|
|
|
|
|
|
// Set all properties
|
|
|
|
newUnit->setFileName(QDir(directory()).filePath(inFileName));
|
|
|
|
newUnit->setNew(false);
|
2022-03-21 09:08:05 +08:00
|
|
|
Editor * e= unitEditor(newUnit);
|
2021-11-15 22:08:35 +08:00
|
|
|
if (e) {
|
2022-03-27 11:44:52 +08:00
|
|
|
newUnit->setEncoding(e->fileEncoding());
|
2021-11-15 22:08:35 +08:00
|
|
|
e->setInProject(true);
|
|
|
|
} else {
|
2022-04-13 16:42:23 +08:00
|
|
|
newUnit->setEncoding(options().encoding.toUtf8());
|
2021-11-15 22:08:35 +08:00
|
|
|
}
|
2021-09-07 10:28:40 +08:00
|
|
|
newUnit->setFolder(getFolderPath(parentNode));
|
2021-09-10 12:37:02 +08:00
|
|
|
newUnit->setNode(makeNewFileNode(extractFileName(newUnit->fileName()), false, parentNode));
|
2021-09-07 10:28:40 +08:00
|
|
|
newUnit->node()->unitIndex = mUnits.count();
|
|
|
|
mUnits.append(newUnit);
|
|
|
|
|
|
|
|
// Determine compilation flags
|
|
|
|
switch(getFileType(inFileName)) {
|
|
|
|
case FileType::CSource:
|
|
|
|
newUnit->setCompile(true);
|
2022-06-10 08:41:52 +08:00
|
|
|
newUnit->setCompileCpp(false);
|
2021-09-07 10:28:40 +08:00
|
|
|
newUnit->setLink(true);
|
|
|
|
break;
|
|
|
|
case FileType::CppSource:
|
|
|
|
newUnit->setCompile(true);
|
|
|
|
newUnit->setCompileCpp(true);
|
|
|
|
newUnit->setLink(true);
|
|
|
|
break;
|
|
|
|
case FileType::WindowsResourceSource:
|
|
|
|
newUnit->setCompile(true);
|
2022-02-01 16:17:28 +08:00
|
|
|
newUnit->setCompileCpp(mOptions.isCpp);
|
2021-09-07 10:28:40 +08:00
|
|
|
newUnit->setLink(false);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
newUnit->setCompile(false);
|
|
|
|
newUnit->setCompileCpp(false);
|
|
|
|
newUnit->setLink(false);
|
|
|
|
}
|
|
|
|
newUnit->setPriority(1000);
|
|
|
|
newUnit->setOverrideBuildCmd(false);
|
|
|
|
newUnit->setBuildCmd("");
|
2021-09-11 09:21:44 +08:00
|
|
|
if (rebuild) {
|
2021-09-07 10:28:40 +08:00
|
|
|
rebuildNodes();
|
2021-09-11 09:21:44 +08:00
|
|
|
}
|
2021-09-07 10:28:40 +08:00
|
|
|
setModified(true);
|
|
|
|
return newUnit;
|
|
|
|
}
|
|
|
|
|
2022-01-27 18:34:18 +08:00
|
|
|
QString Project::folder()
|
|
|
|
{
|
|
|
|
return extractFileDir(filename());
|
|
|
|
}
|
|
|
|
|
2021-09-07 10:28:40 +08:00
|
|
|
void Project::buildPrivateResource(bool forceSave)
|
|
|
|
{
|
|
|
|
int comp = 0;
|
|
|
|
foreach (const PProjectUnit& unit,mUnits) {
|
|
|
|
if (
|
|
|
|
(getFileType(unit->fileName()) == FileType::WindowsResourceSource)
|
|
|
|
&& unit->compile() )
|
|
|
|
comp++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if project has no other resources included
|
|
|
|
// and does not have an icon
|
|
|
|
// and does not include the XP style manifest
|
|
|
|
// and does not include version info
|
|
|
|
// then do not create a private resource file
|
|
|
|
if ((comp == 0) &&
|
|
|
|
(! mOptions.supportXPThemes)
|
|
|
|
&& (! mOptions.includeVersionInfo)
|
|
|
|
&& (mOptions.icon == "")) {
|
|
|
|
mOptions.privateResource="";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// change private resource from <project_filename>.res
|
|
|
|
// to <project_filename>_private.res
|
|
|
|
//
|
|
|
|
// in many cases (like in importing a MSVC project)
|
|
|
|
// the project's resource file has already the
|
|
|
|
// <project_filename>.res filename.
|
2021-09-07 14:04:48 +08:00
|
|
|
QString rcFile;
|
2021-09-07 10:28:40 +08:00
|
|
|
if (!mOptions.privateResource.isEmpty()) {
|
2021-09-07 14:04:48 +08:00
|
|
|
rcFile = QDir(directory()).filePath(mOptions.privateResource);
|
2021-09-15 11:23:42 +08:00
|
|
|
if (changeFileExt(rcFile, DEV_PROJECT_EXT) == mFilename) {
|
|
|
|
QFileInfo fileInfo(mFilename);
|
|
|
|
rcFile = includeTrailingPathDelimiter(fileInfo.absolutePath())
|
|
|
|
+ fileInfo.baseName()
|
|
|
|
+ "_private."
|
|
|
|
+ RC_EXT;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
QFileInfo fileInfo(mFilename);
|
|
|
|
rcFile = includeTrailingPathDelimiter(fileInfo.absolutePath())
|
|
|
|
+ fileInfo.baseName()
|
|
|
|
+ "_private."
|
|
|
|
+ RC_EXT;
|
|
|
|
}
|
2021-09-07 14:04:48 +08:00
|
|
|
rcFile = extractRelativePath(mFilename, rcFile);
|
|
|
|
rcFile.replace(' ','_');
|
2021-09-07 10:28:40 +08:00
|
|
|
|
|
|
|
// don't run the private resource file and header if not modified,
|
|
|
|
// unless ForceSave is true
|
|
|
|
if (!forceSave
|
2021-09-07 14:04:48 +08:00
|
|
|
&& fileExists(rcFile)
|
|
|
|
&& fileExists(changeFileExt(rcFile, H_EXT))
|
2021-09-07 10:28:40 +08:00
|
|
|
&& !mModified)
|
|
|
|
return;
|
|
|
|
|
2021-09-07 16:49:35 +08:00
|
|
|
QStringList contents;
|
2021-12-30 19:25:47 +08:00
|
|
|
contents.append("/* THIS FILE WILL BE OVERWRITTEN BY Red Panda C++ */");
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("/* DO NOT EDIT! */");
|
|
|
|
contents.append("");
|
2021-09-07 10:28:40 +08:00
|
|
|
|
|
|
|
if (mOptions.includeVersionInfo) {
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("#include <windows.h> // include for version info constants");
|
|
|
|
contents.append("");
|
2021-09-07 14:04:48 +08:00
|
|
|
}
|
2021-09-07 10:28:40 +08:00
|
|
|
|
|
|
|
foreach (const PProjectUnit& unit, mUnits) {
|
|
|
|
if (
|
|
|
|
(getFileType(unit->fileName()) == FileType::WindowsResourceSource)
|
|
|
|
&& unit->compile() )
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("#include \"" +
|
2021-09-07 10:28:40 +08:00
|
|
|
genMakePath(
|
|
|
|
extractRelativePath(directory(), unit->fileName()),
|
|
|
|
false,
|
|
|
|
false) + "\"");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mOptions.icon.isEmpty()) {
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("");
|
2021-09-15 12:19:09 +08:00
|
|
|
QString icon = mOptions.icon;
|
2021-09-07 10:28:40 +08:00
|
|
|
if (fileExists(icon)) {
|
|
|
|
icon = extractRelativePath(mFilename, icon);
|
|
|
|
icon.replace('\\', '/');
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("A ICON \"" + icon + '"');
|
2021-09-07 10:28:40 +08:00
|
|
|
} else
|
|
|
|
mOptions.icon = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mOptions.supportXPThemes) {
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("");
|
|
|
|
contents.append("//");
|
|
|
|
contents.append("// SUPPORT FOR WINDOWS XP THEMES:");
|
|
|
|
contents.append("// THIS WILL MAKE THE PROGRAM USE THE COMMON CONTROLS");
|
|
|
|
contents.append("// LIBRARY VERSION 6.0 (IF IT IS AVAILABLE)");
|
|
|
|
contents.append("//");
|
2021-09-07 10:28:40 +08:00
|
|
|
if (!mOptions.exeOutput.isEmpty())
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(
|
2021-09-07 10:28:40 +08:00
|
|
|
"1 24 \"" +
|
|
|
|
genMakePath2(
|
|
|
|
includeTrailingPathDelimiter(mOptions.exeOutput)
|
2021-09-10 12:37:02 +08:00
|
|
|
+ extractFileName(executable()))
|
2021-09-07 10:28:40 +08:00
|
|
|
+ ".Manifest\"");
|
|
|
|
else
|
2021-09-10 12:37:02 +08:00
|
|
|
contents.append("1 24 \"" + extractFileName(executable()) + ".Manifest\"");
|
2021-09-07 14:04:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mOptions.includeVersionInfo) {
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("");
|
|
|
|
contents.append("//");
|
|
|
|
contents.append("// TO CHANGE VERSION INFORMATION, EDIT PROJECT OPTIONS...");
|
|
|
|
contents.append("//");
|
|
|
|
contents.append("1 VERSIONINFO");
|
|
|
|
contents.append("FILEVERSION " +
|
2021-09-07 14:04:48 +08:00
|
|
|
QString("%1,%2,%3,%4")
|
|
|
|
.arg(mOptions.versionInfo.major)
|
|
|
|
.arg(mOptions.versionInfo.minor)
|
|
|
|
.arg(mOptions.versionInfo.release)
|
|
|
|
.arg(mOptions.versionInfo.build));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("PRODUCTVERSION " +
|
2021-09-07 14:04:48 +08:00
|
|
|
QString("%1,%2,%3,%4")
|
|
|
|
.arg(mOptions.versionInfo.major)
|
|
|
|
.arg(mOptions.versionInfo.minor)
|
|
|
|
.arg(mOptions.versionInfo.release)
|
|
|
|
.arg(mOptions.versionInfo.build));
|
|
|
|
switch(mOptions.type) {
|
|
|
|
case ProjectType::GUI:
|
|
|
|
case ProjectType::Console:
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("FILETYPE VFT_APP");
|
2021-09-07 14:04:48 +08:00
|
|
|
break;
|
|
|
|
case ProjectType::StaticLib:
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("FILETYPE VFT_STATIC_LIB");
|
2021-09-07 14:04:48 +08:00
|
|
|
break;
|
|
|
|
case ProjectType::DynamicLib:
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("FILETYPE VFT_DLL");
|
2021-09-07 14:04:48 +08:00
|
|
|
break;
|
|
|
|
}
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("{");
|
|
|
|
contents.append(" BLOCK \"StringFileInfo\"");
|
|
|
|
contents.append(" {");
|
|
|
|
contents.append(" BLOCK \"" +
|
2021-09-07 14:04:48 +08:00
|
|
|
QString("%1%2")
|
|
|
|
.arg(mOptions.versionInfo.languageID,4,16,QChar('0'))
|
|
|
|
.arg(mOptions.versionInfo.charsetID,4,16,QChar('0'))
|
|
|
|
+ '"');
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(" {");
|
|
|
|
contents.append(" VALUE \"CompanyName\", \""
|
2021-09-07 14:04:48 +08:00
|
|
|
+ mOptions.versionInfo.companyName
|
|
|
|
+ "\"");
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(" VALUE \"FileVersion\", \""
|
2021-09-07 14:04:48 +08:00
|
|
|
+ mOptions.versionInfo.fileVersion
|
|
|
|
+ "\"");
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(" VALUE \"FileDescription\", \""
|
2021-09-07 14:04:48 +08:00
|
|
|
+ mOptions.versionInfo.fileDescription
|
|
|
|
+ "\"");
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(" VALUE \"InternalName\", \""
|
2021-09-07 14:04:48 +08:00
|
|
|
+ mOptions.versionInfo.internalName
|
|
|
|
+ "\"");
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(" VALUE \"LegalCopyright\", \""
|
2021-09-07 14:04:48 +08:00
|
|
|
+ mOptions.versionInfo.legalCopyright
|
|
|
|
+ '"');
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(" VALUE \"LegalTrademarks\", \""
|
2021-09-07 14:04:48 +08:00
|
|
|
+ mOptions.versionInfo.legalTrademarks
|
|
|
|
+ "\"");
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(" VALUE \"OriginalFilename\", \""
|
2021-09-07 14:04:48 +08:00
|
|
|
+ mOptions.versionInfo.originalFilename
|
|
|
|
+ "\"");
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(" VALUE \"ProductName\", \""
|
2021-09-07 14:04:48 +08:00
|
|
|
+ mOptions.versionInfo.productName + "\"");
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(" VALUE \"ProductVersion\", \""
|
2021-09-07 14:04:48 +08:00
|
|
|
+ mOptions.versionInfo.productVersion + "\"");
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(" }");
|
|
|
|
contents.append(" }");
|
2021-09-07 14:04:48 +08:00
|
|
|
|
|
|
|
// additional block for windows 95->NT
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(" BLOCK \"VarFileInfo\"");
|
|
|
|
contents.append(" {");
|
|
|
|
contents.append(" VALUE \"Translation\", " +
|
2021-09-07 14:04:48 +08:00
|
|
|
QString("0x%1, %2")
|
|
|
|
.arg(mOptions.versionInfo.languageID,4,16,QChar('0'))
|
|
|
|
.arg(mOptions.versionInfo.charsetID));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(" }");
|
2021-09-07 14:04:48 +08:00
|
|
|
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("}");
|
2021-09-07 10:28:40 +08:00
|
|
|
}
|
|
|
|
|
2021-09-07 14:04:48 +08:00
|
|
|
rcFile = QDir(directory()).absoluteFilePath(rcFile);
|
2021-09-07 16:49:35 +08:00
|
|
|
if (contents.count() > 3) {
|
2021-11-12 10:51:00 +08:00
|
|
|
stringsToFile(contents,rcFile);
|
2021-09-07 14:04:48 +08:00
|
|
|
mOptions.privateResource = extractRelativePath(directory(), rcFile);
|
|
|
|
} else {
|
|
|
|
if (fileExists(rcFile))
|
|
|
|
QFile::remove(rcFile);
|
|
|
|
QString resFile = changeFileExt(rcFile, RES_EXT);
|
|
|
|
if (fileExists(resFile))
|
|
|
|
QFile::remove(resFile);
|
|
|
|
mOptions.privateResource = "";
|
|
|
|
}
|
|
|
|
// if fileExists(Res) then
|
|
|
|
// FileSetDate(Res, DateTimeToFileDate(Now)); // fix the "Clock skew detected" warning ;)
|
2021-09-07 10:28:40 +08:00
|
|
|
|
|
|
|
// create XP manifest
|
2021-09-07 14:04:48 +08:00
|
|
|
if (mOptions.supportXPThemes) {
|
|
|
|
QStringList content;
|
|
|
|
content.append("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>");
|
|
|
|
content.append("<assembly");
|
|
|
|
content.append(" xmlns=\"urn:schemas-microsoft-com:asm.v1\"");
|
|
|
|
content.append(" manifestVersion=\"1.0\">");
|
|
|
|
content.append("<assemblyIdentity");
|
|
|
|
QString name = mName;
|
|
|
|
name.replace(' ','_');
|
|
|
|
content.append(" name=\"DevCpp.Apps." + name + '\"');
|
|
|
|
content.append(" processorArchitecture=\"*\"");
|
|
|
|
content.append(" version=\"1.0.0.0\"");
|
|
|
|
content.append(" type=\"win32\"/>");
|
|
|
|
content.append("<description>" + name + "</description>");
|
|
|
|
content.append("<dependency>");
|
|
|
|
content.append(" <dependentAssembly>");
|
|
|
|
content.append(" <assemblyIdentity");
|
|
|
|
content.append(" type=\"win32\"");
|
|
|
|
content.append(" name=\"Microsoft.Windows.Common-Controls\"");
|
|
|
|
content.append(" version=\"6.0.0.0\"");
|
|
|
|
content.append(" processorArchitecture=\"*\"");
|
|
|
|
content.append(" publicKeyToken=\"6595b64144ccf1df\"");
|
|
|
|
content.append(" language=\"*\"");
|
|
|
|
content.append(" />");
|
|
|
|
content.append(" </dependentAssembly>");
|
|
|
|
content.append("</dependency>");
|
|
|
|
content.append("</assembly>");
|
2021-11-12 10:51:00 +08:00
|
|
|
stringsToFile(content,executable() + ".Manifest");
|
2021-09-07 14:04:48 +08:00
|
|
|
} else if (fileExists(executable() + ".Manifest"))
|
|
|
|
QFile::remove(executable() + ".Manifest");
|
2021-09-07 10:28:40 +08:00
|
|
|
|
|
|
|
// create private header file
|
2021-09-07 14:04:48 +08:00
|
|
|
QString hFile = changeFileExt(rcFile, H_EXT);
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.clear();
|
2021-09-10 12:37:02 +08:00
|
|
|
QString def = extractFileName(rcFile);
|
2021-09-07 14:04:48 +08:00
|
|
|
def.replace(".","_");
|
2021-12-30 19:25:47 +08:00
|
|
|
contents.append("/* THIS FILE WILL BE OVERWRITTEN BY Red Panda C++ */");
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("/* DO NOT EDIT ! */");
|
|
|
|
contents.append("");
|
|
|
|
contents.append("#ifndef " + def);
|
|
|
|
contents.append("#define " + def);
|
|
|
|
contents.append("");
|
|
|
|
contents.append("/* VERSION DEFINITIONS */");
|
|
|
|
contents.append("#define VER_STRING\t" +
|
2021-09-15 11:23:42 +08:00
|
|
|
QString("\"%1.%2.%3.%4\"")
|
2021-09-07 14:04:48 +08:00
|
|
|
.arg(mOptions.versionInfo.major)
|
|
|
|
.arg(mOptions.versionInfo.minor)
|
|
|
|
.arg(mOptions.versionInfo.release)
|
|
|
|
.arg(mOptions.versionInfo.build));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(QString("#define VER_MAJOR\t%1").arg(mOptions.versionInfo.major));
|
|
|
|
contents.append(QString("#define VER_MINOR\t%1").arg(mOptions.versionInfo.minor));
|
2021-09-15 11:23:42 +08:00
|
|
|
contents.append(QString("#define VER_RELEASE\t%1").arg(mOptions.versionInfo.release));
|
|
|
|
contents.append(QString("#define VER_BUILD\t%1").arg(mOptions.versionInfo.build));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(QString("#define COMPANY_NAME\t\"%1\"")
|
2021-09-07 14:04:48 +08:00
|
|
|
.arg(mOptions.versionInfo.companyName));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(QString("#define FILE_VERSION\t\"%1\"")
|
2021-09-07 14:04:48 +08:00
|
|
|
.arg(mOptions.versionInfo.fileVersion));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(QString("#define FILE_DESCRIPTION\t\"%1\"")
|
2021-09-07 14:04:48 +08:00
|
|
|
.arg(mOptions.versionInfo.fileDescription));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(QString("#define INTERNAL_NAME\t\"%1\"")
|
2021-09-07 14:04:48 +08:00
|
|
|
.arg(mOptions.versionInfo.internalName));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(QString("#define LEGAL_COPYRIGHT\t\"%1\"")
|
2021-09-07 14:04:48 +08:00
|
|
|
.arg(mOptions.versionInfo.legalCopyright));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(QString("#define LEGAL_TRADEMARKS\t\"%1\"")
|
2021-09-07 14:04:48 +08:00
|
|
|
.arg(mOptions.versionInfo.legalTrademarks));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(QString("#define ORIGINAL_FILENAME\t\"%1\"")
|
2021-09-07 14:04:48 +08:00
|
|
|
.arg(mOptions.versionInfo.originalFilename));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(QString("#define PRODUCT_NAME\t\"%1\"")
|
2021-09-07 14:04:48 +08:00
|
|
|
.arg(mOptions.versionInfo.productName));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append(QString("#define PRODUCT_VERSION\t\"%1\"")
|
2021-09-07 14:04:48 +08:00
|
|
|
.arg(mOptions.versionInfo.productVersion));
|
2021-09-07 16:49:35 +08:00
|
|
|
contents.append("");
|
|
|
|
contents.append("#endif /*" + def + "*/");
|
2021-11-12 10:51:00 +08:00
|
|
|
stringsToFile(contents,hFile);
|
2021-09-07 16:49:35 +08:00
|
|
|
}
|
|
|
|
|
2021-09-12 19:50:44 +08:00
|
|
|
void Project::checkProjectFileForUpdate(SimpleIni &ini)
|
2021-09-07 16:49:35 +08:00
|
|
|
{
|
|
|
|
bool cnvt = false;
|
2021-09-12 19:50:44 +08:00
|
|
|
int uCount = ini.GetLongValue("Project","UnitCount", 0);
|
2021-09-07 16:49:35 +08:00
|
|
|
// check if using old way to store resources and fix it
|
2021-09-12 19:50:44 +08:00
|
|
|
QString oldRes = QString::fromLocal8Bit(ini.GetValue("Project","Resources", ""));
|
2021-09-07 16:49:35 +08:00
|
|
|
if (!oldRes.isEmpty()) {
|
|
|
|
QFile::copy(mFilename,mFilename+".bak");
|
|
|
|
QStringList sl;
|
2022-01-04 16:50:54 +08:00
|
|
|
sl = oldRes.split(';',QString::SkipEmptyParts);
|
2021-09-07 16:49:35 +08:00
|
|
|
for (int i=0;i<sl.count();i++){
|
|
|
|
const QString& s = sl[i];
|
2021-09-12 19:50:44 +08:00
|
|
|
QByteArray groupName = toByteArray(QString("Unit%1").arg(uCount+i));
|
|
|
|
ini.SetValue(groupName,"Filename", toByteArray(s));
|
|
|
|
ini.SetValue(groupName,"Folder", "Resources");
|
2021-09-15 11:23:42 +08:00
|
|
|
ini.SetLongValue(groupName,"Compile",true);
|
2021-09-07 16:49:35 +08:00
|
|
|
}
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetLongValue("Project","UnitCount",uCount+sl.count());
|
|
|
|
QString folders = QString::fromLocal8Bit(ini.GetValue("Project","Folders",""));
|
2021-09-07 16:49:35 +08:00
|
|
|
if (!folders.isEmpty())
|
|
|
|
folders += ",Resources";
|
|
|
|
else
|
|
|
|
folders = "Resources";
|
2021-09-12 19:50:44 +08:00
|
|
|
ini.SetValue("Project","Folders",toByteArray(folders));
|
|
|
|
cnvt = true;
|
|
|
|
ini.Delete("Project","Resources");
|
|
|
|
ini.Delete("Project","Focused");
|
|
|
|
ini.Delete("Project","Order");
|
|
|
|
ini.Delete("Project","DebugInfo");
|
|
|
|
ini.Delete("Project","ProfileInfo");
|
|
|
|
ini.SaveFile(mFilename.toLocal8Bit());
|
2021-09-07 16:49:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cnvt)
|
|
|
|
QMessageBox::information(
|
2022-03-21 09:08:05 +08:00
|
|
|
nullptr,
|
2021-09-07 16:49:35 +08:00
|
|
|
tr("Project Updated"),
|
|
|
|
tr("Your project was succesfully updated to a newer file format!")
|
|
|
|
+"<br />"
|
|
|
|
+tr("If something has gone wrong, we kept a backup-file: '%1'...")
|
|
|
|
.arg(mFilename+".bak"),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Project::closeUnit(int index)
|
|
|
|
{
|
|
|
|
PProjectUnit unit = mUnits[index];
|
2022-03-21 09:08:05 +08:00
|
|
|
Editor * editor =unitEditor(unit);
|
|
|
|
if (editor) {
|
|
|
|
saveUnitLayout(editor,index);
|
|
|
|
editor->setInProject(false);
|
|
|
|
mEditorList->forceCloseEditor(editor);
|
2021-09-07 16:49:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Project::createFolderNodes()
|
|
|
|
{
|
|
|
|
for (int idx=0;idx<mFolders.count();idx++) {
|
2022-02-08 12:33:10 +08:00
|
|
|
PProjectModelNode node = mRootNode;
|
2021-09-07 16:49:35 +08:00
|
|
|
QString s = mFolders[idx];
|
|
|
|
int i = s.indexOf('/');
|
|
|
|
while (i>=0) {
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode findnode;
|
2021-09-07 16:49:35 +08:00
|
|
|
for (int c=0;c<node->children.count();c++) {
|
|
|
|
if (node->children[c]->text == s.mid(0,i))
|
|
|
|
findnode = node->children[c];
|
|
|
|
}
|
|
|
|
if (!findnode)
|
|
|
|
node = makeNewFileNode(s.mid(0,i),true,node);
|
|
|
|
else
|
|
|
|
node = findnode;
|
|
|
|
node->unitIndex = -1;
|
2021-09-18 10:47:35 +08:00
|
|
|
s.remove(0,i+1);
|
2021-09-07 16:49:35 +08:00
|
|
|
i = s.indexOf('/');
|
|
|
|
}
|
|
|
|
node = makeNewFileNode(s, true, node);
|
|
|
|
node->unitIndex = -1;
|
|
|
|
mFolderNodes.append(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-08 17:22:24 +08:00
|
|
|
static void addFolderRecursively(QSet<QString>& folders, QString folder) {
|
|
|
|
if (folder.isEmpty())
|
|
|
|
return;
|
|
|
|
folders.insert(excludeTrailingPathDelimiter(folder));
|
|
|
|
QString parentFolder = QFileInfo(folder).absolutePath();
|
|
|
|
if (parentFolder==folder)
|
|
|
|
return;
|
|
|
|
addFolderRecursively(folders, parentFolder);
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
void Project::createFileSystemFolderNodes()
|
|
|
|
{
|
2022-04-08 17:22:24 +08:00
|
|
|
QSet<QString> headerFolders;
|
|
|
|
QSet<QString> sourceFolders;
|
|
|
|
QSet<QString> otherFolders;
|
|
|
|
for (int idx=0;idx<mUnits.count();idx++) {
|
|
|
|
QFileInfo fileInfo(mUnits[idx]->fileName());
|
|
|
|
if (isHFile(fileInfo.fileName())) {
|
|
|
|
addFolderRecursively(headerFolders,fileInfo.absolutePath());
|
|
|
|
} else if (isCFile(fileInfo.fileName())) {
|
|
|
|
addFolderRecursively(sourceFolders,fileInfo.absolutePath());
|
|
|
|
} else {
|
|
|
|
addFolderRecursively(otherFolders,fileInfo.absolutePath());
|
|
|
|
}
|
|
|
|
}
|
2022-02-08 12:33:10 +08:00
|
|
|
PProjectModelNode node = makeNewFileNode(tr("Headers"),true,mRootNode);
|
2022-02-13 20:08:18 +08:00
|
|
|
node->folderNodeType = ProjectSpecialFolderNode::HEADERS;
|
2022-02-08 12:33:10 +08:00
|
|
|
node->priority = 1000;
|
2022-04-08 17:22:24 +08:00
|
|
|
createFileSystemFolderNode(ProjectSpecialFolderNode::HEADERS,folder(),node, headerFolders);
|
2022-02-08 00:24:08 +08:00
|
|
|
mFolderNodes.append(node);
|
2022-02-08 12:33:10 +08:00
|
|
|
mSpecialNodes.insert(ProjectSpecialFolderNode::HEADERS,node);
|
|
|
|
|
|
|
|
node = makeNewFileNode(tr("Sources"),true,mRootNode);
|
2022-02-13 20:08:18 +08:00
|
|
|
node->folderNodeType = ProjectSpecialFolderNode::SOURCES;
|
2022-02-08 12:33:10 +08:00
|
|
|
node->priority = 900;
|
2022-04-08 17:22:24 +08:00
|
|
|
createFileSystemFolderNode(ProjectSpecialFolderNode::SOURCES,folder(),node, sourceFolders);
|
2022-02-08 00:24:08 +08:00
|
|
|
mFolderNodes.append(node);
|
2022-02-08 12:33:10 +08:00
|
|
|
mSpecialNodes.insert(ProjectSpecialFolderNode::SOURCES,node);
|
|
|
|
|
|
|
|
node = makeNewFileNode(tr("Others"),true,mRootNode);
|
2022-02-13 20:08:18 +08:00
|
|
|
node->folderNodeType = ProjectSpecialFolderNode::OTHERS;
|
2022-02-08 12:33:10 +08:00
|
|
|
node->priority = 800;
|
2022-04-08 17:22:24 +08:00
|
|
|
createFileSystemFolderNode(ProjectSpecialFolderNode::OTHERS,folder(),node, otherFolders);
|
2022-02-08 00:24:08 +08:00
|
|
|
mFolderNodes.append(node);
|
2022-02-08 12:33:10 +08:00
|
|
|
mSpecialNodes.insert(ProjectSpecialFolderNode::OTHERS,node);
|
|
|
|
}
|
2022-02-08 00:24:08 +08:00
|
|
|
|
2022-04-08 17:22:24 +08:00
|
|
|
void Project::createFileSystemFolderNode(
|
|
|
|
ProjectSpecialFolderNode folderType,
|
|
|
|
const QString &folderName,
|
|
|
|
PProjectModelNode parent,
|
|
|
|
const QSet<QString>& validFolders)
|
2022-02-08 12:33:10 +08:00
|
|
|
{
|
|
|
|
QDirIterator iter(folderName);
|
|
|
|
while (iter.hasNext()) {
|
|
|
|
iter.next();
|
|
|
|
QFileInfo fileInfo = iter.fileInfo();
|
|
|
|
if (fileInfo.isHidden() || fileInfo.fileName().startsWith('.'))
|
|
|
|
continue;
|
2022-04-08 17:22:24 +08:00
|
|
|
if (fileInfo.isDir() && validFolders.contains(fileInfo.absoluteFilePath())) {
|
2022-02-08 12:33:10 +08:00
|
|
|
PProjectModelNode node = makeNewFileNode(fileInfo.fileName(),true,parent);
|
2022-03-07 21:10:59 +08:00
|
|
|
mFileSystemFolderNodes.insert(QString("%1/%2").arg((int)folderType).arg(fileInfo.absoluteFilePath()),node);
|
2022-04-08 17:22:24 +08:00
|
|
|
createFileSystemFolderNode(folderType,fileInfo.absoluteFilePath(), node, validFolders);
|
2022-02-08 12:33:10 +08:00
|
|
|
}
|
|
|
|
}
|
2022-02-08 00:24:08 +08:00
|
|
|
}
|
|
|
|
|
2021-09-07 16:49:35 +08:00
|
|
|
void Project::doAutoOpen()
|
|
|
|
{
|
2021-09-27 13:01:01 +08:00
|
|
|
loadLayout();
|
2021-09-07 16:49:35 +08:00
|
|
|
}
|
|
|
|
|
2021-09-09 00:15:12 +08:00
|
|
|
bool Project::fileAlreadyExists(const QString &s)
|
|
|
|
{
|
|
|
|
foreach (const PProjectUnit& unit, mUnits) {
|
|
|
|
if (unit->fileName() == s)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-02-08 12:33:10 +08:00
|
|
|
PProjectModelNode Project::findFolderNode(const QString &folderPath, ProjectSpecialFolderNode nodeType)
|
|
|
|
{
|
|
|
|
PProjectModelNode node = mFileSystemFolderNodes.value(QString("%1/%2").arg((int)nodeType).arg(folderPath),
|
|
|
|
PProjectModelNode());
|
|
|
|
if (node)
|
|
|
|
return node;
|
|
|
|
PProjectModelNode parentNode = mSpecialNodes.value(nodeType,PProjectModelNode());
|
|
|
|
if (parentNode)
|
|
|
|
return parentNode;
|
|
|
|
return mRootNode;
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode Project::folderNodeFromName(const QString &name)
|
2021-09-09 00:15:12 +08:00
|
|
|
{
|
|
|
|
int index = mFolders.indexOf(name);
|
|
|
|
if (index>=0) {
|
|
|
|
return mFolderNodes[index];
|
|
|
|
}
|
2022-02-08 12:33:10 +08:00
|
|
|
return mRootNode;
|
2021-09-09 00:15:12 +08:00
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
QString Project::getFolderPath(PProjectModelNode node)
|
2021-09-09 11:47:04 +08:00
|
|
|
{
|
|
|
|
QString result;
|
|
|
|
if (!node)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
if (node->unitIndex>=0) // not a folder
|
|
|
|
return result;
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode p = node;
|
2022-02-08 12:33:10 +08:00
|
|
|
while (p && p->unitIndex==-1 && p!=mRootNode) {
|
2021-09-09 11:47:04 +08:00
|
|
|
if (!result.isEmpty())
|
|
|
|
result = p->text + "/" + result;
|
2021-09-18 10:47:35 +08:00
|
|
|
else
|
|
|
|
result = p->text;
|
2021-09-10 10:27:01 +08:00
|
|
|
p = p->parent.lock();
|
2021-09-09 11:47:04 +08:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Project::getUnitFromString(const QString &s)
|
|
|
|
{
|
|
|
|
return indexInUnits(s);
|
|
|
|
}
|
|
|
|
|
2022-02-08 12:33:10 +08:00
|
|
|
PProjectModelNode Project::getParentFolderNode(const QString &filename)
|
|
|
|
{
|
|
|
|
QFileInfo fileInfo(filename);
|
|
|
|
ProjectSpecialFolderNode folderNodeType;
|
2022-02-13 20:08:18 +08:00
|
|
|
if (isHFile(fileInfo.fileName())) {
|
2022-02-08 12:33:10 +08:00
|
|
|
folderNodeType = ProjectSpecialFolderNode::HEADERS;
|
2022-02-13 20:08:18 +08:00
|
|
|
} else if (isCFile(fileInfo.fileName())) {
|
2022-02-08 12:33:10 +08:00
|
|
|
folderNodeType = ProjectSpecialFolderNode::SOURCES;
|
|
|
|
} else {
|
|
|
|
folderNodeType = ProjectSpecialFolderNode::OTHERS;
|
|
|
|
}
|
|
|
|
return findFolderNode(fileInfo.absolutePath(),folderNodeType);
|
|
|
|
}
|
|
|
|
|
2021-09-09 18:36:54 +08:00
|
|
|
void Project::incrementBuildNumber()
|
|
|
|
{
|
|
|
|
mOptions.versionInfo.build++;
|
|
|
|
mOptions.versionInfo.fileVersion = QString("%1.%2.%3.%3")
|
|
|
|
.arg(mOptions.versionInfo.major)
|
|
|
|
.arg(mOptions.versionInfo.minor)
|
|
|
|
.arg(mOptions.versionInfo.release)
|
|
|
|
.arg(mOptions.versionInfo.build);
|
|
|
|
if (mOptions.versionInfo.syncProduct)
|
|
|
|
mOptions.versionInfo.productVersion = mOptions.versionInfo.fileVersion;
|
|
|
|
setModified(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Project::loadLayout()
|
|
|
|
{
|
2021-11-17 10:55:18 +08:00
|
|
|
SimpleIni layIni;
|
|
|
|
SI_Error error = layIni.LoadFile(changeFileExt(filename(), "layout").toLocal8Bit());
|
|
|
|
if (error!=SI_OK)
|
|
|
|
return;
|
|
|
|
int topLeft = layIni.GetLongValue("Editors","Focused",1);
|
2021-09-09 18:36:54 +08:00
|
|
|
//TopRight := layIni.ReadInteger('Editors', 'FocusedRight', -1);
|
2021-11-17 10:55:18 +08:00
|
|
|
QString temp =layIni.GetValue("Editors","Order", "");
|
2022-01-04 16:50:54 +08:00
|
|
|
QStringList sl = temp.split(",",QString::SkipEmptyParts);
|
2021-09-09 18:36:54 +08:00
|
|
|
|
|
|
|
foreach (const QString& s,sl) {
|
|
|
|
bool ok;
|
|
|
|
int currIdx = s.toInt(&ok);
|
|
|
|
if (ok) {
|
|
|
|
openUnit(currIdx);
|
|
|
|
}
|
|
|
|
}
|
2022-03-21 09:08:05 +08:00
|
|
|
if (topLeft>=0 && topLeft<mUnits.count()) {
|
|
|
|
Editor * editor = unitEditor(mUnits[topLeft]);
|
2022-03-28 16:57:58 +08:00
|
|
|
if (editor)
|
|
|
|
editor->activate();
|
2021-09-09 18:36:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-12 19:50:44 +08:00
|
|
|
void Project::loadOptions(SimpleIni& ini)
|
2021-09-09 23:20:00 +08:00
|
|
|
{
|
2021-09-12 19:50:44 +08:00
|
|
|
mName = fromByteArray(ini.GetValue("Project","name", ""));
|
2021-09-17 09:56:52 +08:00
|
|
|
QString icon = fromByteArray(ini.GetValue("Project", "icon", ""));
|
|
|
|
if (icon.isEmpty()) {
|
|
|
|
mOptions.icon = "";
|
|
|
|
} else {
|
|
|
|
mOptions.icon = QDir(directory()).absoluteFilePath(icon);
|
|
|
|
}
|
2021-09-12 19:50:44 +08:00
|
|
|
mOptions.version = ini.GetLongValue("Project", "Ver", 0);
|
2021-09-09 23:20:00 +08:00
|
|
|
if (mOptions.version > 0) { // ver > 0 is at least a v5 project
|
2022-05-13 20:22:16 +08:00
|
|
|
if (mOptions.version < 3) {
|
|
|
|
mOptions.version = 3;
|
2022-03-21 09:08:05 +08:00
|
|
|
QMessageBox::information(nullptr,
|
2021-09-09 23:20:00 +08:00
|
|
|
tr("Settings need update"),
|
2021-12-30 19:25:47 +08:00
|
|
|
tr("The compiler settings format of Red Panda C++ has changed.")
|
2021-09-09 23:20:00 +08:00
|
|
|
+"<BR /><BR />"
|
|
|
|
+tr("Please update your settings at Project >> Project Options >> Compiler and save your project."),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
}
|
|
|
|
|
2021-09-12 19:50:44 +08:00
|
|
|
mOptions.type = static_cast<ProjectType>(ini.GetLongValue("Project", "type", 0));
|
|
|
|
mOptions.compilerCmd = fromByteArray(ini.GetValue("Project", "Compiler", ""));
|
|
|
|
mOptions.cppCompilerCmd = fromByteArray(ini.GetValue("Project", "CppCompiler", ""));
|
|
|
|
mOptions.linkerCmd = fromByteArray(ini.GetValue("Project", "Linker", ""));
|
2022-01-04 16:50:54 +08:00
|
|
|
mOptions.objFiles = fromByteArray(ini.GetValue("Project", "ObjFiles", "")).split(";",QString::SkipEmptyParts);
|
2022-06-16 21:34:31 +08:00
|
|
|
mOptions.binDirs = fromByteArray(ini.GetValue("Project", "Bins", "")).split(";",QString::SkipEmptyParts);
|
|
|
|
mOptions.libDirs = fromByteArray(ini.GetValue("Project", "Libs", "")).split(";",QString::SkipEmptyParts);
|
|
|
|
mOptions.includeDirs = fromByteArray(ini.GetValue("Project", "Includes", "")).split(";",QString::SkipEmptyParts);
|
2021-09-12 19:50:44 +08:00
|
|
|
mOptions.privateResource = fromByteArray(ini.GetValue("Project", "PrivateResource", ""));
|
2022-01-04 16:50:54 +08:00
|
|
|
mOptions.resourceIncludes = fromByteArray(ini.GetValue("Project", "ResourceIncludes", "")).split(";",QString::SkipEmptyParts);
|
|
|
|
mOptions.makeIncludes = fromByteArray(ini.GetValue("Project", "MakeIncludes", "")).split(";",QString::SkipEmptyParts);
|
2022-02-01 16:17:28 +08:00
|
|
|
mOptions.isCpp = ini.GetBoolValue("Project", "IsCpp", false);
|
2021-09-12 19:50:44 +08:00
|
|
|
mOptions.exeOutput = fromByteArray(ini.GetValue("Project", "ExeOutput", ""));
|
|
|
|
mOptions.objectOutput = fromByteArray(ini.GetValue("Project", "ObjectOutput", ""));
|
|
|
|
mOptions.logOutput = fromByteArray(ini.GetValue("Project", "LogOutput", ""));
|
|
|
|
mOptions.logOutputEnabled = ini.GetBoolValue("Project", "LogOutputEnabled", false);
|
|
|
|
mOptions.overrideOutput = ini.GetBoolValue("Project", "OverrideOutput", false);
|
|
|
|
mOptions.overridenOutput = fromByteArray(ini.GetValue("Project", "OverrideOutputName", ""));
|
|
|
|
mOptions.hostApplication = fromByteArray(ini.GetValue("Project", "HostApplication", ""));
|
|
|
|
mOptions.useCustomMakefile = ini.GetBoolValue("Project", "UseCustomMakefile", false);
|
|
|
|
mOptions.customMakefile = fromByteArray(ini.GetValue("Project", "CustomMakefile", ""));
|
|
|
|
mOptions.usePrecompiledHeader = ini.GetBoolValue("Project", "UsePrecompiledHeader", false);
|
|
|
|
mOptions.precompiledHeader = fromByteArray(ini.GetValue("Project", "PrecompiledHeader", ""));
|
|
|
|
mOptions.cmdLineArgs = fromByteArray(ini.GetValue("Project", "CommandLine", ""));
|
2022-01-04 16:50:54 +08:00
|
|
|
mFolders = fromByteArray(ini.GetValue("Project", "Folders", "")).split(";",QString::SkipEmptyParts);
|
2021-09-12 19:50:44 +08:00
|
|
|
mOptions.includeVersionInfo = ini.GetBoolValue("Project", "IncludeVersionInfo", false);
|
|
|
|
mOptions.supportXPThemes = ini.GetBoolValue("Project", "SupportXPThemes", false);
|
|
|
|
mOptions.compilerSet = ini.GetLongValue("Project", "CompilerSet", pSettings->compilerSets().defaultIndex());
|
2022-02-08 00:24:08 +08:00
|
|
|
mOptions.modelType = (ProjectModelType)ini.GetLongValue("Project", "ModelType", (int)ProjectModelType::Custom);
|
2021-09-10 10:27:01 +08:00
|
|
|
|
|
|
|
if (mOptions.compilerSet >= pSettings->compilerSets().size()
|
|
|
|
|| mOptions.compilerSet < 0) { // TODO: change from indices to names
|
|
|
|
QMessageBox::critical(
|
2022-03-21 09:08:05 +08:00
|
|
|
nullptr,
|
2021-09-10 10:27:01 +08:00
|
|
|
tr("Compiler not found"),
|
|
|
|
tr("The compiler set you have selected for this project, no longer exists.")
|
|
|
|
+"<BR />"
|
|
|
|
+tr("It will be substituted by the global compiler set."),
|
|
|
|
QMessageBox::Ok
|
|
|
|
);
|
2022-03-30 20:15:15 +08:00
|
|
|
setCompilerSet(pSettings->compilerSets().defaultIndex());
|
2021-09-10 10:27:01 +08:00
|
|
|
}
|
2022-05-12 22:42:19 +08:00
|
|
|
|
2022-05-13 20:22:16 +08:00
|
|
|
Settings::PCompilerSet pSet = pSettings->compilerSets().getSet(mOptions.compilerSet);
|
|
|
|
if (pSet) {
|
|
|
|
QByteArray oldCompilerOptions = ini.GetValue("Project", "CompilerSettings", "");
|
|
|
|
if (!oldCompilerOptions.isEmpty()) {
|
|
|
|
//version 2 compatibility
|
|
|
|
for (int i=0;i<oldCompilerOptions.length();i++) {
|
|
|
|
QString key = pSettings->compilerSets().getKeyFromCompilerCompatibleIndex(i);
|
|
|
|
PCompilerOption pOption = CompilerInfoManager::getCompilerOption(
|
|
|
|
pSet->compilerType(), key);
|
|
|
|
if (pOption) {
|
|
|
|
int val = Settings::CompilerSet::charToValue(oldCompilerOptions[i]);
|
|
|
|
if (pOption->choices.isEmpty()) {
|
|
|
|
if (val>0)
|
|
|
|
mOptions.compilerOptions.insert(key,COMPILER_OPTION_ON);
|
|
|
|
else
|
|
|
|
mOptions.compilerOptions.insert(key,"");
|
|
|
|
} else {
|
|
|
|
if (val>0 && val <= pOption->choices.length())
|
|
|
|
mOptions.compilerOptions.insert(key,pOption->choices[val-1].second);
|
|
|
|
else
|
|
|
|
mOptions.compilerOptions.insert(key,"");
|
|
|
|
}
|
2022-05-12 22:42:19 +08:00
|
|
|
}
|
|
|
|
}
|
2022-05-13 20:22:16 +08:00
|
|
|
} else {
|
|
|
|
//version 3
|
|
|
|
SimpleIni::TNamesDepend oKeys;
|
|
|
|
ini.GetAllKeys("CompilerSettings", oKeys);
|
|
|
|
for(const SimpleIni::Entry& entry:oKeys) {
|
|
|
|
QString key(entry.pItem);
|
2022-05-12 22:42:19 +08:00
|
|
|
mOptions.compilerOptions.insert(
|
2022-05-13 20:22:16 +08:00
|
|
|
key,
|
|
|
|
ini.GetValue("CompilerSettings", entry.pItem, ""));
|
2022-05-12 22:42:19 +08:00
|
|
|
}
|
2022-05-12 15:28:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-12 19:50:44 +08:00
|
|
|
mOptions.staticLink = ini.GetBoolValue("Project", "StaticLink", true);
|
|
|
|
mOptions.addCharset = ini.GetBoolValue("Project", "AddCharset", true);
|
2021-10-25 21:36:23 +08:00
|
|
|
|
|
|
|
if (mOptions.compilerSetType<0) {
|
|
|
|
updateCompilerSetType();
|
|
|
|
}
|
2021-09-12 19:50:44 +08:00
|
|
|
bool useUTF8 = ini.GetBoolValue("Project", "UseUTF8", false);
|
2021-09-10 23:41:38 +08:00
|
|
|
if (useUTF8) {
|
2021-09-12 19:50:44 +08:00
|
|
|
mOptions.encoding = fromByteArray(ini.GetValue("Project","Encoding", ENCODING_UTF8));
|
2021-09-12 22:45:00 +08:00
|
|
|
} else {
|
|
|
|
mOptions.encoding = fromByteArray(ini.GetValue("Project","Encoding", ENCODING_AUTO_DETECT));
|
2021-09-10 23:41:38 +08:00
|
|
|
}
|
2021-09-12 19:50:44 +08:00
|
|
|
|
|
|
|
mOptions.versionInfo.major = ini.GetLongValue("VersionInfo", "Major", 0);
|
|
|
|
mOptions.versionInfo.minor = ini.GetLongValue("VersionInfo", "Minor", 1);
|
|
|
|
mOptions.versionInfo.release = ini.GetLongValue("VersionInfo", "Release", 1);
|
|
|
|
mOptions.versionInfo.build = ini.GetLongValue("VersionInfo", "Build", 1);
|
|
|
|
mOptions.versionInfo.languageID = ini.GetLongValue("VersionInfo", "LanguageID", 0x0409);
|
|
|
|
mOptions.versionInfo.charsetID = ini.GetLongValue("VersionInfo", "CharsetID", 0x04E4);
|
|
|
|
mOptions.versionInfo.companyName = fromByteArray(ini.GetValue("VersionInfo", "CompanyName", ""));
|
|
|
|
mOptions.versionInfo.fileVersion = fromByteArray(ini.GetValue("VersionInfo", "FileVersion", "0.1"));
|
|
|
|
mOptions.versionInfo.fileDescription = fromByteArray(ini.GetValue("VersionInfo", "FileDescription",
|
2021-12-30 19:25:47 +08:00
|
|
|
toByteArray(tr("Developed using the Red Panda C++ IDE"))));
|
2021-09-12 19:50:44 +08:00
|
|
|
mOptions.versionInfo.internalName = fromByteArray(ini.GetValue("VersionInfo", "InternalName", ""));
|
|
|
|
mOptions.versionInfo.legalCopyright = fromByteArray(ini.GetValue("VersionInfo", "LegalCopyright", ""));
|
|
|
|
mOptions.versionInfo.legalTrademarks = fromByteArray(ini.GetValue("VersionInfo", "LegalTrademarks", ""));
|
|
|
|
mOptions.versionInfo.originalFilename = fromByteArray(ini.GetValue("VersionInfo", "OriginalFilename",
|
|
|
|
toByteArray(extractFileName(executable()))));
|
|
|
|
mOptions.versionInfo.productName = fromByteArray(ini.GetValue("VersionInfo", "ProductName", toByteArray(mName)));
|
|
|
|
mOptions.versionInfo.productVersion = fromByteArray(ini.GetValue("VersionInfo", "ProductVersion", "0.1.1.1"));
|
|
|
|
mOptions.versionInfo.autoIncBuildNr = ini.GetBoolValue("VersionInfo", "AutoIncBuildNr", false);
|
|
|
|
mOptions.versionInfo.syncProduct = ini.GetBoolValue("VersionInfo", "SyncProduct", false);
|
|
|
|
|
2021-09-10 10:27:01 +08:00
|
|
|
} else { // dev-c < 4
|
2022-05-13 20:22:16 +08:00
|
|
|
mOptions.version = 3;
|
2021-09-12 19:50:44 +08:00
|
|
|
if (!ini.GetBoolValue("VersionInfo", "NoConsole", true))
|
2021-09-10 10:27:01 +08:00
|
|
|
mOptions.type = ProjectType::Console;
|
2021-09-12 19:50:44 +08:00
|
|
|
else if (ini.GetBoolValue("VersionInfo", "IsDLL", false))
|
2021-09-10 10:27:01 +08:00
|
|
|
mOptions.type = ProjectType::DynamicLib;
|
2021-09-09 23:20:00 +08:00
|
|
|
else
|
2021-09-10 10:27:01 +08:00
|
|
|
mOptions.type = ProjectType::GUI;
|
|
|
|
|
2021-09-12 19:50:44 +08:00
|
|
|
mOptions.privateResource = fromByteArray(ini.GetValue("Project", "PrivateResource", ""));
|
2022-01-04 16:50:54 +08:00
|
|
|
mOptions.resourceIncludes = fromByteArray(ini.GetValue("Project", "ResourceIncludes", "")).split(";",QString::SkipEmptyParts);
|
|
|
|
mOptions.objFiles = fromByteArray(ini.GetValue("Project", "ObjFiles", "")).split(";",QString::SkipEmptyParts);
|
2022-06-16 21:34:31 +08:00
|
|
|
mOptions.includeDirs = fromByteArray(ini.GetValue("Project", "IncludeDirs", "")).split(";",QString::SkipEmptyParts);
|
2021-09-12 19:50:44 +08:00
|
|
|
mOptions.compilerCmd = fromByteArray(ini.GetValue("Project", "CompilerOptions", ""));
|
2022-02-01 16:17:28 +08:00
|
|
|
mOptions.isCpp = ini.GetBoolValue("Project", "Use_GPP", false);
|
2021-09-12 19:50:44 +08:00
|
|
|
mOptions.exeOutput = fromByteArray(ini.GetValue("Project", "ExeOutput", ""));
|
|
|
|
mOptions.objectOutput = fromByteArray(ini.GetValue("Project", "ObjectOutput", ""));
|
|
|
|
mOptions.overrideOutput = ini.GetBoolValue("Project", "OverrideOutput", false);
|
|
|
|
mOptions.overridenOutput = fromByteArray(ini.GetValue("Project", "OverrideOutputName", ""));
|
|
|
|
mOptions.hostApplication = fromByteArray(ini.GetValue("Project", "HostApplication", ""));
|
2021-09-10 10:27:01 +08:00
|
|
|
}
|
2021-09-09 23:20:00 +08:00
|
|
|
}
|
|
|
|
|
2021-09-10 15:03:47 +08:00
|
|
|
void Project::loadUnitLayout(Editor *e, int index)
|
|
|
|
{
|
|
|
|
if (!e)
|
|
|
|
return;
|
2021-11-17 10:55:18 +08:00
|
|
|
SimpleIni layIni;
|
|
|
|
SI_Error error;
|
|
|
|
error = layIni.LoadFile(changeFileExt(filename(), "layout").toLocal8Bit());
|
|
|
|
if (error != SI_Error::SI_OK)
|
|
|
|
return;
|
|
|
|
QByteArray groupName = (QString("Editor_%1").arg(index)).toUtf8();
|
|
|
|
e->setCaretY(layIni.GetLongValue(groupName,"CursorRow",1));
|
|
|
|
e->setCaretX(layIni.GetLongValue(groupName,"CursorCol",1));
|
|
|
|
e->setTopLine(layIni.GetLongValue(groupName,"TopLine",1));
|
|
|
|
e->setLeftChar(layIni.GetLongValue(groupName,"LeftChar",1));
|
2021-09-10 15:03:47 +08:00
|
|
|
}
|
|
|
|
|
2021-09-07 16:49:35 +08:00
|
|
|
PCppParser Project::cppParser()
|
|
|
|
{
|
|
|
|
return mParser;
|
2021-09-07 00:32:16 +08:00
|
|
|
}
|
2021-09-06 12:58:29 +08:00
|
|
|
|
2021-09-09 11:47:04 +08:00
|
|
|
int Project::indexInUnits(const QString &fileName) const
|
|
|
|
{
|
|
|
|
QDir dir(directory());
|
|
|
|
for (int i=0;i<mUnits.count();i++) {
|
|
|
|
PProjectUnit unit = mUnits[i];
|
|
|
|
if (dir.absoluteFilePath(fileName) == dir.absoluteFilePath(unit->fileName()))
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Project::indexInUnits(const Editor *editor) const
|
|
|
|
{
|
|
|
|
if (!editor)
|
|
|
|
return -1;
|
|
|
|
return indexInUnits(editor->filename());
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
void Project::removeFolderRecurse(PProjectModelNode node)
|
2021-09-10 21:37:52 +08:00
|
|
|
{
|
|
|
|
if (!node)
|
|
|
|
return ;
|
|
|
|
// Recursively remove folders
|
|
|
|
for (int i=node->children.count()-1;i>=0;i++) {
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode childNode = node->children[i];
|
2021-09-10 21:37:52 +08:00
|
|
|
// Remove folder inside folder
|
|
|
|
if (childNode->unitIndex<0 && childNode->level>0) {
|
|
|
|
removeFolderRecurse(childNode);
|
|
|
|
// Or remove editors at this level
|
|
|
|
} else if (childNode->unitIndex >= 0 && childNode->level > 0) {
|
|
|
|
// Remove editor in folder from project
|
|
|
|
int editorIndex = childNode->unitIndex;
|
2021-11-15 22:08:35 +08:00
|
|
|
if (!removeUnit(editorIndex,true))
|
2021-09-10 21:37:52 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode parent = node->parent.lock();
|
2021-09-10 21:37:52 +08:00
|
|
|
if (parent) {
|
|
|
|
parent->children.removeAll(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
void Project::updateFolderNode(PProjectModelNode node)
|
2021-09-11 09:21:44 +08:00
|
|
|
{
|
|
|
|
for (int i=0;i<node->children.count();i++){
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode child = node->children[i];
|
2021-09-11 09:21:44 +08:00
|
|
|
if (child->unitIndex<0) {
|
|
|
|
mFolders.append(getFolderPath(child));
|
|
|
|
updateFolderNode(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-25 21:36:23 +08:00
|
|
|
void Project::updateCompilerSetType()
|
|
|
|
{
|
|
|
|
Settings::PCompilerSet defaultSet = pSettings->compilerSets().getSet(mOptions.compilerSet);
|
|
|
|
if (defaultSet) {
|
|
|
|
mOptions.compilerSetType=defaultSet->compilerSetType();
|
|
|
|
mOptions.staticLink = defaultSet->staticLink();
|
2022-05-12 15:28:08 +08:00
|
|
|
mOptions.compilerOptions = defaultSet->compileOptions();
|
2021-10-25 21:36:23 +08:00
|
|
|
} else {
|
|
|
|
mOptions.compilerSetType=CST_DEBUG;
|
|
|
|
mOptions.staticLink = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-21 09:08:05 +08:00
|
|
|
QFileSystemWatcher *Project::fileSystemWatcher() const
|
|
|
|
{
|
|
|
|
return mFileSystemWatcher;
|
|
|
|
}
|
|
|
|
|
2022-04-08 18:12:40 +08:00
|
|
|
QString Project::fileSystemNodeFolderPath(const PProjectModelNode &node)
|
|
|
|
{
|
|
|
|
QString result;
|
2022-05-19 17:57:31 +08:00
|
|
|
if (node != mRootNode) {
|
|
|
|
PProjectModelNode pNode = node;
|
|
|
|
while (pNode && pNode->folderNodeType == ProjectSpecialFolderNode::NonSpecial) {
|
|
|
|
result = node->text + "/" +result;
|
|
|
|
pNode = pNode->parent.lock();
|
|
|
|
}
|
2022-04-08 18:12:40 +08:00
|
|
|
}
|
|
|
|
result = folder() + "/" + result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-06-16 21:34:31 +08:00
|
|
|
QStringList Project::binDirs()
|
|
|
|
{
|
|
|
|
QStringList lst = options().binDirs;
|
|
|
|
Settings::PCompilerSet compilerSet = pSettings->compilerSets().getSet(options().compilerSet);
|
|
|
|
if (compilerSet) {
|
|
|
|
lst.append(compilerSet->binDirs());
|
|
|
|
}
|
|
|
|
return lst;
|
|
|
|
}
|
|
|
|
|
2022-03-21 09:08:05 +08:00
|
|
|
EditorList *Project::editorList() const
|
|
|
|
{
|
|
|
|
return mEditorList;
|
|
|
|
}
|
|
|
|
|
2021-09-11 11:42:20 +08:00
|
|
|
const QList<PProjectUnit> &Project::units() const
|
|
|
|
{
|
|
|
|
return mUnits;
|
|
|
|
}
|
|
|
|
|
2022-02-08 12:33:10 +08:00
|
|
|
ProjectModelType Project::modelType() const
|
|
|
|
{
|
|
|
|
return mOptions.modelType;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Project::setModelType(ProjectModelType type)
|
|
|
|
{
|
|
|
|
if (type!=mOptions.modelType) {
|
|
|
|
mOptions.modelType = type;
|
|
|
|
rebuildNodes();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-14 17:33:47 +08:00
|
|
|
ProjectOptions &Project::options()
|
2021-09-10 15:03:47 +08:00
|
|
|
{
|
|
|
|
return mOptions;
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModel *Project::model()
|
2021-09-11 11:42:20 +08:00
|
|
|
{
|
|
|
|
return &mModel;
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
const PProjectModelNode &Project::rootNode() const
|
2021-09-10 12:37:02 +08:00
|
|
|
{
|
2022-02-08 12:33:10 +08:00
|
|
|
return mRootNode;
|
2021-09-10 12:37:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const QString &Project::name() const
|
|
|
|
{
|
|
|
|
return mName;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Project::setName(const QString &newName)
|
|
|
|
{
|
2021-09-14 17:33:47 +08:00
|
|
|
if (newName != mName) {
|
|
|
|
mName = newName;
|
2022-02-08 12:33:10 +08:00
|
|
|
mRootNode->text = newName;
|
2021-11-27 09:36:49 +08:00
|
|
|
setModified(true);
|
2021-09-14 17:33:47 +08:00
|
|
|
}
|
2021-09-10 12:37:02 +08:00
|
|
|
}
|
|
|
|
|
2021-09-09 00:15:12 +08:00
|
|
|
const QString &Project::filename() const
|
|
|
|
{
|
|
|
|
return mFilename;
|
|
|
|
}
|
|
|
|
|
2021-09-07 00:32:16 +08:00
|
|
|
ProjectUnit::ProjectUnit(Project* parent)
|
|
|
|
{
|
|
|
|
mNode = nullptr;
|
|
|
|
mParent = parent;
|
2022-03-28 16:57:58 +08:00
|
|
|
mFileMissing = false;
|
2021-09-06 08:45:53 +08:00
|
|
|
}
|
|
|
|
|
2021-09-07 00:32:16 +08:00
|
|
|
Project *ProjectUnit::parent() const
|
2021-09-05 23:45:05 +08:00
|
|
|
{
|
|
|
|
return mParent;
|
|
|
|
}
|
|
|
|
|
2021-09-07 00:32:16 +08:00
|
|
|
void ProjectUnit::setParent(Project* newParent)
|
2021-09-05 23:45:05 +08:00
|
|
|
{
|
|
|
|
mParent = newParent;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString &ProjectUnit::fileName() const
|
|
|
|
{
|
|
|
|
return mFileName;
|
|
|
|
}
|
|
|
|
|
2021-10-23 19:27:50 +08:00
|
|
|
void ProjectUnit::setFileName(QString newFileName)
|
2021-09-05 23:45:05 +08:00
|
|
|
{
|
2021-10-23 19:27:50 +08:00
|
|
|
newFileName = QFileInfo(newFileName).absoluteFilePath();
|
2021-09-18 10:47:35 +08:00
|
|
|
if (mFileName != newFileName) {
|
|
|
|
mFileName = newFileName;
|
|
|
|
if (mNode) {
|
|
|
|
mNode->text = extractFileName(mFileName);
|
|
|
|
}
|
|
|
|
}
|
2021-09-05 23:45:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ProjectUnit::isNew() const
|
|
|
|
{
|
|
|
|
return mNew;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectUnit::setNew(bool newNew)
|
|
|
|
{
|
|
|
|
mNew = newNew;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString &ProjectUnit::folder() const
|
|
|
|
{
|
|
|
|
return mFolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectUnit::setFolder(const QString &newFolder)
|
|
|
|
{
|
|
|
|
mFolder = newFolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProjectUnit::compile() const
|
|
|
|
{
|
|
|
|
return mCompile;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectUnit::setCompile(bool newCompile)
|
|
|
|
{
|
|
|
|
mCompile = newCompile;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProjectUnit::compileCpp() const
|
|
|
|
{
|
|
|
|
return mCompileCpp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectUnit::setCompileCpp(bool newCompileCpp)
|
|
|
|
{
|
|
|
|
mCompileCpp = newCompileCpp;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProjectUnit::overrideBuildCmd() const
|
|
|
|
{
|
|
|
|
return mOverrideBuildCmd;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectUnit::setOverrideBuildCmd(bool newOverrideBuildCmd)
|
|
|
|
{
|
|
|
|
mOverrideBuildCmd = newOverrideBuildCmd;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString &ProjectUnit::buildCmd() const
|
|
|
|
{
|
|
|
|
return mBuildCmd;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectUnit::setBuildCmd(const QString &newBuildCmd)
|
|
|
|
{
|
|
|
|
mBuildCmd = newBuildCmd;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProjectUnit::link() const
|
|
|
|
{
|
|
|
|
return mLink;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectUnit::setLink(bool newLink)
|
|
|
|
{
|
|
|
|
mLink = newLink;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ProjectUnit::priority() const
|
|
|
|
{
|
|
|
|
return mPriority;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectUnit::setPriority(int newPriority)
|
|
|
|
{
|
2022-02-08 12:33:10 +08:00
|
|
|
if (mPriority!=newPriority) {
|
|
|
|
mPriority = newPriority;
|
|
|
|
if (mNode)
|
|
|
|
mNode->priority = mPriority;
|
|
|
|
}
|
2021-09-05 23:45:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const QByteArray &ProjectUnit::encoding() const
|
|
|
|
{
|
|
|
|
return mEncoding;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectUnit::setEncoding(const QByteArray &newEncoding)
|
|
|
|
{
|
2022-01-24 09:24:43 +08:00
|
|
|
if (mEncoding != newEncoding) {
|
2022-03-21 09:08:05 +08:00
|
|
|
Editor * editor=mParent->unitEditor(this);
|
|
|
|
if (editor) {
|
|
|
|
editor->setEncodingOption(newEncoding);
|
2022-01-24 09:24:43 +08:00
|
|
|
}
|
|
|
|
mEncoding = newEncoding;
|
|
|
|
}
|
2021-09-05 23:45:05 +08:00
|
|
|
}
|
|
|
|
|
2021-09-06 12:58:29 +08:00
|
|
|
bool ProjectUnit::modified() const
|
2021-09-05 23:45:05 +08:00
|
|
|
{
|
2022-03-21 09:08:05 +08:00
|
|
|
Editor * editor=mParent->unitEditor(this);
|
|
|
|
if (editor) {
|
|
|
|
return editor->modified();
|
2021-09-05 23:45:05 +08:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectUnit::setModified(bool value)
|
|
|
|
{
|
2022-03-21 09:08:05 +08:00
|
|
|
Editor * editor=mParent->unitEditor(this);
|
2021-09-05 23:45:05 +08:00
|
|
|
// Mark the change in the coupled editor
|
2022-03-21 09:08:05 +08:00
|
|
|
if (editor) {
|
|
|
|
return editor->setModified(value);
|
2021-09-05 23:45:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// If modified is set to true, mark project as modified too
|
|
|
|
if (value) {
|
2021-09-07 10:28:40 +08:00
|
|
|
mParent->setModified(true);
|
2021-09-05 23:45:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProjectUnit::save()
|
|
|
|
{
|
2022-03-21 09:08:05 +08:00
|
|
|
bool previous=mParent->fileSystemWatcher()->blockSignals(true);
|
|
|
|
auto action = finally([&previous,this](){
|
|
|
|
mParent->fileSystemWatcher()->blockSignals(previous);
|
2021-09-05 23:45:05 +08:00
|
|
|
});
|
|
|
|
bool result=true;
|
2022-03-21 09:08:05 +08:00
|
|
|
Editor * editor=mParent->unitEditor(this);
|
|
|
|
if (!editor && !fileExists(mFileName)) {
|
2021-09-05 23:45:05 +08:00
|
|
|
// file is neither open, nor saved
|
|
|
|
QStringList temp;
|
2021-11-12 10:51:00 +08:00
|
|
|
stringsToFile(temp,mFileName);
|
2022-03-21 09:08:05 +08:00
|
|
|
} else if (editor && editor->modified()) {
|
|
|
|
result = editor->save();
|
2021-09-05 23:45:05 +08:00
|
|
|
}
|
2021-09-07 00:32:16 +08:00
|
|
|
if (mNode) {
|
2021-09-10 12:37:02 +08:00
|
|
|
mNode->text = extractFileName(mFileName);
|
2021-09-07 00:32:16 +08:00
|
|
|
}
|
2021-09-05 23:45:05 +08:00
|
|
|
return result;
|
|
|
|
}
|
2021-09-07 10:28:40 +08:00
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode &ProjectUnit::node()
|
2021-09-07 10:28:40 +08:00
|
|
|
{
|
|
|
|
return mNode;
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
void ProjectUnit::setNode(const PProjectModelNode &newNode)
|
2021-09-07 10:28:40 +08:00
|
|
|
{
|
|
|
|
mNode = newNode;
|
|
|
|
}
|
2021-09-11 09:21:44 +08:00
|
|
|
|
2022-03-28 16:57:58 +08:00
|
|
|
bool ProjectUnit::FileMissing() const
|
|
|
|
{
|
|
|
|
return mFileMissing;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectUnit::setFileMissing(bool newDontSave)
|
|
|
|
{
|
|
|
|
mFileMissing = newDontSave;
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModel::ProjectModel(Project *project, QObject *parent):
|
2021-09-11 09:21:44 +08:00
|
|
|
QAbstractItemModel(parent),
|
|
|
|
mProject(project)
|
|
|
|
{
|
|
|
|
mUpdateCount = 0;
|
2022-02-15 00:01:50 +08:00
|
|
|
mIconProvider = new CustomFileIconProvider();
|
2022-02-14 00:13:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ProjectModel::~ProjectModel()
|
|
|
|
{
|
2022-02-15 00:01:50 +08:00
|
|
|
delete mIconProvider;
|
2021-09-11 09:21:44 +08:00
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
void ProjectModel::beginUpdate()
|
2021-09-11 09:21:44 +08:00
|
|
|
{
|
2022-01-07 19:20:42 +08:00
|
|
|
if (mUpdateCount==0) {
|
2021-09-11 09:21:44 +08:00
|
|
|
beginResetModel();
|
2022-01-07 19:20:42 +08:00
|
|
|
}
|
2021-09-11 09:21:44 +08:00
|
|
|
mUpdateCount++;
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
void ProjectModel::endUpdate()
|
2021-09-11 09:21:44 +08:00
|
|
|
{
|
|
|
|
mUpdateCount--;
|
2022-01-07 19:20:42 +08:00
|
|
|
if (mUpdateCount==0) {
|
2022-02-15 00:01:50 +08:00
|
|
|
mIconProvider->setRootFolder(mProject->folder());
|
2021-09-11 09:21:44 +08:00
|
|
|
endResetModel();
|
2022-01-07 19:20:42 +08:00
|
|
|
}
|
2021-09-11 09:21:44 +08:00
|
|
|
}
|
|
|
|
|
2022-02-15 21:39:17 +08:00
|
|
|
CustomFileIconProvider *ProjectModel::iconProvider() const
|
|
|
|
{
|
|
|
|
return mIconProvider;
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
Project *ProjectModel::project() const
|
2022-01-08 08:52:50 +08:00
|
|
|
{
|
|
|
|
return mProject;
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
QModelIndex ProjectModel::index(int row, int column, const QModelIndex &parent) const
|
2021-09-11 11:42:20 +08:00
|
|
|
{
|
|
|
|
if (!parent.isValid()) {
|
2022-01-27 18:34:18 +08:00
|
|
|
return createIndex(row,column,mProject->rootNode().get());
|
2021-09-11 11:42:20 +08:00
|
|
|
}
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModelNode* parentNode = static_cast<ProjectModelNode*>(parent.internalPointer());
|
2021-09-11 11:42:20 +08:00
|
|
|
if (!parentNode) {
|
|
|
|
return QModelIndex();
|
|
|
|
}
|
2021-10-24 00:17:08 +08:00
|
|
|
if (row<0 || row>=parentNode->children.count())
|
|
|
|
return QModelIndex();
|
2021-09-11 11:42:20 +08:00
|
|
|
return createIndex(row,column,parentNode->children[row].get());
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
QModelIndex ProjectModel::parent(const QModelIndex &child) const
|
2021-09-11 11:42:20 +08:00
|
|
|
{
|
|
|
|
if (!child.isValid())
|
|
|
|
return QModelIndex();
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModelNode * node = static_cast<ProjectModelNode*>(child.internalPointer());
|
2021-09-11 11:42:20 +08:00
|
|
|
if (!node)
|
|
|
|
return QModelIndex();
|
2021-10-24 12:04:37 +08:00
|
|
|
return getParentIndex(node);
|
2021-09-11 11:42:20 +08:00
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
int ProjectModel::rowCount(const QModelIndex &parent) const
|
2021-09-11 09:21:44 +08:00
|
|
|
{
|
|
|
|
if (!parent.isValid())
|
|
|
|
return 1;
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModelNode* p = static_cast<ProjectModelNode*>(parent.internalPointer());
|
2021-09-11 09:21:44 +08:00
|
|
|
if (p) {
|
|
|
|
return p->children.count();
|
|
|
|
} else {
|
2022-01-27 18:34:18 +08:00
|
|
|
return mProject->rootNode()->children.count();
|
2021-09-11 09:21:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
int ProjectModel::columnCount(const QModelIndex &) const
|
2021-09-11 09:21:44 +08:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
QVariant ProjectModel::data(const QModelIndex &index, int role) const
|
2021-09-11 09:21:44 +08:00
|
|
|
{
|
|
|
|
if (!index.isValid())
|
|
|
|
return QVariant();
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModelNode* p = static_cast<ProjectModelNode*>(index.internalPointer());
|
2021-09-11 09:21:44 +08:00
|
|
|
if (!p)
|
|
|
|
return QVariant();
|
2022-02-14 00:13:00 +08:00
|
|
|
if (role == Qt::DisplayRole) {
|
|
|
|
if (p == mProject->rootNode().get()) {
|
|
|
|
QString branch;
|
2022-02-15 21:39:17 +08:00
|
|
|
if (mIconProvider->VCSRepository()->hasRepository(branch))
|
2022-02-14 00:13:00 +08:00
|
|
|
return QString("%1 [%2]").arg(p->text,branch);
|
|
|
|
}
|
|
|
|
return p->text;
|
|
|
|
} else if (role==Qt::EditRole) {
|
2021-09-11 11:42:20 +08:00
|
|
|
return p->text;
|
2021-10-23 23:10:34 +08:00
|
|
|
} else if (role == Qt::DecorationRole) {
|
2022-02-13 20:08:18 +08:00
|
|
|
QIcon icon;
|
2021-10-23 23:10:34 +08:00
|
|
|
if (p->unitIndex>=0) {
|
2022-02-15 00:01:50 +08:00
|
|
|
icon = mIconProvider->icon(mProject->units()[p->unitIndex]->fileName());
|
2021-10-23 23:10:34 +08:00
|
|
|
} else {
|
2022-02-14 00:13:00 +08:00
|
|
|
if (p == mProject->rootNode().get()) {
|
|
|
|
QString branch;
|
2022-02-15 21:39:17 +08:00
|
|
|
if (mIconProvider->VCSRepository()->hasRepository(branch))
|
2022-02-14 00:13:00 +08:00
|
|
|
icon = pIconsManager->getIcon(IconsManager::FILESYSTEM_GIT);
|
|
|
|
} else {
|
|
|
|
switch(p->folderNodeType) {
|
|
|
|
case ProjectSpecialFolderNode::HEADERS:
|
|
|
|
icon = pIconsManager->getIcon(IconsManager::FILESYSTEM_HEADERS_FOLDER);
|
|
|
|
break;
|
|
|
|
case ProjectSpecialFolderNode::SOURCES:
|
|
|
|
icon = pIconsManager->getIcon(IconsManager::FILESYSTEM_SOURCES_FOLDER);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
icon = pIconsManager->getIcon(IconsManager::FILESYSTEM_FOLDER);
|
|
|
|
}
|
2022-02-13 20:08:18 +08:00
|
|
|
}
|
2021-10-23 23:10:34 +08:00
|
|
|
if (icon.isNull())
|
2022-02-15 00:01:50 +08:00
|
|
|
icon = mIconProvider->icon(QFileIconProvider::Folder);
|
2021-10-23 23:10:34 +08:00
|
|
|
}
|
2022-02-13 20:08:18 +08:00
|
|
|
return icon;
|
2021-09-11 09:21:44 +08:00
|
|
|
}
|
2021-09-11 11:42:20 +08:00
|
|
|
return QVariant();
|
2021-09-11 09:21:44 +08:00
|
|
|
}
|
2021-09-18 10:47:35 +08:00
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
Qt::ItemFlags ProjectModel::flags(const QModelIndex &index) const
|
2021-09-18 10:47:35 +08:00
|
|
|
{
|
|
|
|
if (!index.isValid())
|
|
|
|
return Qt::NoItemFlags;
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModelNode* p = static_cast<ProjectModelNode*>(index.internalPointer());
|
2021-09-18 10:47:35 +08:00
|
|
|
if (!p)
|
|
|
|
return Qt::NoItemFlags;
|
2022-01-27 18:34:18 +08:00
|
|
|
if (p==mProject->rootNode().get())
|
2021-11-27 09:36:49 +08:00
|
|
|
return Qt::ItemIsEnabled | Qt::ItemIsDropEnabled | Qt::ItemIsEditable;
|
2022-02-08 12:33:10 +08:00
|
|
|
if (mProject && mProject->modelType() == ProjectModelType::FileSystem) {
|
|
|
|
Qt::ItemFlags flags = Qt::ItemIsEnabled | Qt::ItemIsSelectable;
|
|
|
|
if (p->unitIndex>=0)
|
|
|
|
flags.setFlag(Qt::ItemIsEditable);
|
|
|
|
return flags;
|
|
|
|
} else {
|
|
|
|
Qt::ItemFlags flags = Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsSelectable | Qt::ItemIsDragEnabled;
|
|
|
|
if (p->unitIndex<0) {
|
|
|
|
flags.setFlag(Qt::ItemIsDropEnabled);
|
|
|
|
flags.setFlag(Qt::ItemIsDragEnabled,false);
|
|
|
|
}
|
|
|
|
return flags;
|
2021-10-24 12:37:00 +08:00
|
|
|
}
|
2021-09-18 10:47:35 +08:00
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
bool ProjectModel::setData(const QModelIndex &index, const QVariant &value, int role)
|
2021-09-18 10:47:35 +08:00
|
|
|
{
|
|
|
|
if (!index.isValid())
|
|
|
|
return false;
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModelNode* p = static_cast<ProjectModelNode*>(index.internalPointer());
|
|
|
|
PProjectModelNode node = mProject->pointerToNode(p);
|
2021-09-18 10:47:35 +08:00
|
|
|
if (!node)
|
|
|
|
return false;
|
|
|
|
if (role == Qt::EditRole) {
|
2022-01-27 18:34:18 +08:00
|
|
|
if (node == mProject->rootNode()) {
|
2021-11-27 09:36:49 +08:00
|
|
|
QString newName = value.toString().trimmed();
|
|
|
|
if (newName.isEmpty())
|
|
|
|
return false;
|
|
|
|
mProject->setName(newName);
|
2022-01-08 08:52:50 +08:00
|
|
|
emit dataChanged(index,index);
|
2021-11-27 09:36:49 +08:00
|
|
|
return true;
|
|
|
|
}
|
2021-09-18 10:47:35 +08:00
|
|
|
int idx = node->unitIndex;
|
|
|
|
if (idx >= 0) {
|
|
|
|
//change unit name
|
|
|
|
PProjectUnit unit = mProject->units()[idx];
|
|
|
|
QString newName = value.toString().trimmed();
|
|
|
|
if (newName.isEmpty())
|
|
|
|
return false;
|
|
|
|
if (newName == node->text)
|
|
|
|
return false;
|
|
|
|
QString oldName = unit->fileName();
|
|
|
|
QString curDir = extractFilePath(oldName);
|
|
|
|
newName = QDir(curDir).absoluteFilePath(newName);
|
|
|
|
// Only continue if the user says so...
|
|
|
|
if (fileExists(newName) && newName.compare(oldName, PATH_SENSITIVITY)!=0) {
|
|
|
|
// don't remove when changing case for example
|
2022-03-21 09:08:05 +08:00
|
|
|
if (QMessageBox::question(nullptr,
|
2021-09-18 10:47:35 +08:00
|
|
|
tr("File exists"),
|
|
|
|
tr("File '%1' already exists. Delete it now?")
|
|
|
|
.arg(newName),
|
|
|
|
QMessageBox::Yes | QMessageBox::No,
|
|
|
|
QMessageBox::No) == QMessageBox::Yes) {
|
|
|
|
// Close the target file...
|
2022-03-21 09:08:05 +08:00
|
|
|
Editor * e=mProject->editorList()->getOpenedEditorByFilename(newName);
|
2021-09-18 10:47:35 +08:00
|
|
|
if (e)
|
2022-03-21 09:08:05 +08:00
|
|
|
mProject->editorList()->closeEditor(e);
|
2021-09-18 10:47:35 +08:00
|
|
|
|
|
|
|
// Remove it from the current project...
|
|
|
|
int projindex = mProject->indexInUnits(newName);
|
|
|
|
if (projindex>=0) {
|
2021-11-15 22:08:35 +08:00
|
|
|
mProject->removeUnit(projindex,false);
|
2021-09-18 10:47:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// All references to the file are removed. Delete the file from disk
|
|
|
|
if (!QFile::remove(newName)) {
|
2022-03-21 09:08:05 +08:00
|
|
|
QMessageBox::critical(nullptr,
|
2021-09-18 10:47:35 +08:00
|
|
|
tr("Remove failed"),
|
|
|
|
tr("Failed to remove file '%1'")
|
|
|
|
.arg(newName),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Target filename does not exist anymore. Do a rename
|
|
|
|
// change name in project file first (no actual file renaming on disk)
|
2022-03-01 22:03:54 +08:00
|
|
|
//save old file, if it is openned;
|
2021-09-18 10:47:35 +08:00
|
|
|
// remove old file from monitor list
|
2022-03-21 09:08:05 +08:00
|
|
|
mProject->fileSystemWatcher()->removePath(oldName);
|
2021-09-18 10:47:35 +08:00
|
|
|
|
2022-03-01 22:03:54 +08:00
|
|
|
if (!QFile::rename(oldName,newName)) {
|
2022-03-21 09:08:05 +08:00
|
|
|
QMessageBox::critical(nullptr,
|
2022-03-01 22:03:54 +08:00
|
|
|
tr("Rename failed"),
|
|
|
|
tr("Failed to rename file '%1' to '%2'")
|
|
|
|
.arg(oldName,newName),
|
2021-09-18 10:47:35 +08:00
|
|
|
QMessageBox::Ok);
|
|
|
|
return false;
|
|
|
|
}
|
2022-03-01 22:03:54 +08:00
|
|
|
mProject->saveUnitAs(idx,newName);
|
2021-09-18 10:47:35 +08:00
|
|
|
|
|
|
|
// Add new filename to file minitor
|
2022-03-21 09:08:05 +08:00
|
|
|
mProject->fileSystemWatcher()->addPath(newName);
|
2022-03-01 22:03:54 +08:00
|
|
|
|
2022-02-08 12:33:10 +08:00
|
|
|
//suffix changed
|
|
|
|
if (mProject && mProject->modelType() == ProjectModelType::FileSystem
|
|
|
|
&& QFileInfo(oldName).suffix()!=QFileInfo(newName).suffix()) {
|
|
|
|
mProject->rebuildNodes();
|
|
|
|
} else
|
|
|
|
emit dataChanged(index,index);
|
2021-09-18 10:47:35 +08:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
//change folder name
|
|
|
|
QString newName = value.toString().trimmed();
|
|
|
|
if (newName.isEmpty())
|
|
|
|
return false;
|
|
|
|
if (newName == node->text)
|
|
|
|
return false;
|
|
|
|
node->text = newName;
|
|
|
|
mProject->updateFolders();
|
|
|
|
mProject->saveAll();
|
2022-01-08 08:52:50 +08:00
|
|
|
emit dataChanged(index,index);
|
2021-09-18 10:47:35 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2021-10-23 23:10:34 +08:00
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
QModelIndex ProjectModel::getParentIndex(ProjectModelNode * node) const
|
2021-10-23 23:10:34 +08:00
|
|
|
{
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode parent = node->parent.lock();
|
2021-10-24 12:04:37 +08:00
|
|
|
if (!parent) // root node
|
|
|
|
return QModelIndex();
|
2022-02-08 00:24:08 +08:00
|
|
|
PProjectModelNode grand = parent->parent.lock();
|
2021-10-24 12:04:37 +08:00
|
|
|
if (!grand) {
|
|
|
|
return createIndex(0,0,parent.get());
|
2021-10-24 00:17:08 +08:00
|
|
|
}
|
2021-10-24 12:04:37 +08:00
|
|
|
|
|
|
|
int row = grand->children.indexOf(parent);
|
|
|
|
if (row<0)
|
|
|
|
return QModelIndex();
|
|
|
|
return createIndex(row,0,parent.get());
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
bool ProjectModel::canDropMimeData(const QMimeData * data, Qt::DropAction action, int /*row*/, int /*column*/, const QModelIndex &parent) const
|
2021-10-24 12:04:37 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
if (!data || action != Qt::MoveAction)
|
2021-10-23 23:10:34 +08:00
|
|
|
return false;
|
2021-10-24 12:04:37 +08:00
|
|
|
if (!parent.isValid())
|
|
|
|
return false;
|
|
|
|
// check if the format is supported
|
|
|
|
QStringList types = mimeTypes();
|
|
|
|
if (types.isEmpty())
|
|
|
|
return false;
|
|
|
|
QString format = types.at(0);
|
|
|
|
if (!data->hasFormat(format))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
QModelIndex idx = parent;
|
|
|
|
// if (row >= rowCount(parent) || row < 0) {
|
|
|
|
// return false;
|
|
|
|
// } else {
|
|
|
|
// idx= index(row,column,parent);
|
|
|
|
// }
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModelNode* p= static_cast<ProjectModelNode*>(idx.internalPointer());
|
|
|
|
PProjectModelNode node = mProject->pointerToNode(p);
|
2021-10-23 23:10:34 +08:00
|
|
|
if (node->unitIndex>=0)
|
|
|
|
return false;
|
2021-10-24 12:04:37 +08:00
|
|
|
QByteArray encoded = data->data(format);
|
|
|
|
QDataStream stream(&encoded, QIODevice::ReadOnly);
|
|
|
|
while (!stream.atEnd()) {
|
2021-12-24 23:18:20 +08:00
|
|
|
qint32 r, c;
|
|
|
|
quintptr v;
|
2021-10-24 12:04:37 +08:00
|
|
|
stream >> r >> c >> v;
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModelNode* droppedPointer= (ProjectModelNode*)(v);
|
|
|
|
PProjectModelNode droppedNode = mProject->pointerToNode(droppedPointer);
|
|
|
|
PProjectModelNode oldParent = droppedNode->parent.lock();
|
2021-10-24 12:04:37 +08:00
|
|
|
if (oldParent == node)
|
|
|
|
return false;
|
|
|
|
}
|
2021-10-23 23:10:34 +08:00
|
|
|
return true;
|
|
|
|
}
|
2021-10-24 00:17:08 +08:00
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
Qt::DropActions ProjectModel::supportedDropActions() const
|
2021-10-24 00:17:08 +08:00
|
|
|
{
|
2021-10-24 12:04:37 +08:00
|
|
|
return Qt::MoveAction;
|
2021-10-24 00:17:08 +08:00
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
bool ProjectModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int /*row*/, int /*column*/, const QModelIndex &parent)
|
2021-10-24 00:17:08 +08:00
|
|
|
{
|
2021-10-24 12:04:37 +08:00
|
|
|
// check if the action is supported
|
|
|
|
if (!data || action != Qt::MoveAction)
|
|
|
|
return false;
|
|
|
|
// check if the format is supported
|
|
|
|
QStringList types = mimeTypes();
|
|
|
|
if (types.isEmpty())
|
|
|
|
return false;
|
|
|
|
QString format = types.at(0);
|
|
|
|
if (!data->hasFormat(format))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!parent.isValid())
|
|
|
|
return false;
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModelNode* p= static_cast<ProjectModelNode*>(parent.internalPointer());
|
|
|
|
PProjectModelNode node = mProject->pointerToNode(p);
|
2021-10-24 12:04:37 +08:00
|
|
|
|
|
|
|
QByteArray encoded = data->data(format);
|
|
|
|
QDataStream stream(&encoded, QIODevice::ReadOnly);
|
|
|
|
QVector<int> rows,cols;
|
|
|
|
QVector<intptr_t> pointers;
|
|
|
|
while (!stream.atEnd()) {
|
2021-12-24 23:18:20 +08:00
|
|
|
qint32 r, c;
|
|
|
|
quintptr v;
|
2021-10-24 12:04:37 +08:00
|
|
|
stream >> r >> c >> v;
|
|
|
|
rows.append(r);
|
|
|
|
cols.append(c);
|
|
|
|
pointers.append(v);
|
|
|
|
}
|
|
|
|
for (int i=pointers.count()-1;i>=0;i--) {
|
|
|
|
int r = rows[i];
|
|
|
|
intptr_t v = pointers[i];
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModelNode* droppedPointer= (ProjectModelNode*)(v);
|
|
|
|
PProjectModelNode droppedNode = mProject->pointerToNode(droppedPointer);
|
|
|
|
PProjectModelNode oldParent = droppedNode->parent.lock();
|
2021-10-24 12:04:37 +08:00
|
|
|
QModelIndex oldParentIndex = getParentIndex(droppedPointer);
|
|
|
|
beginRemoveRows(oldParentIndex,r,r);
|
|
|
|
if (oldParent)
|
|
|
|
oldParent->children.removeAt(r);
|
|
|
|
endRemoveRows();
|
|
|
|
droppedNode->parent = node;
|
|
|
|
node->children.append(droppedNode);
|
|
|
|
if (droppedNode->unitIndex>=0) {
|
|
|
|
PProjectUnit unit = mProject->units()[droppedNode->unitIndex];
|
|
|
|
unit->setFolder(mProject->getFolderPath(node));
|
|
|
|
}
|
|
|
|
QModelIndex newParentIndex = getParentIndex(droppedPointer);
|
|
|
|
beginInsertRows(newParentIndex,node->children.count()-1,node->children.count()-1);
|
|
|
|
endInsertRows();
|
|
|
|
mProject->saveAll();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2021-10-24 00:17:08 +08:00
|
|
|
}
|
|
|
|
|
2022-02-08 00:24:08 +08:00
|
|
|
QMimeData *ProjectModel::mimeData(const QModelIndexList &indexes) const
|
2021-10-24 00:17:08 +08:00
|
|
|
{
|
2021-10-24 12:04:37 +08:00
|
|
|
if (indexes.count() <= 0)
|
|
|
|
return nullptr;
|
|
|
|
QStringList types = mimeTypes();
|
|
|
|
if (types.isEmpty())
|
|
|
|
return nullptr;
|
|
|
|
QMimeData *data = new QMimeData();
|
|
|
|
QString format = types.at(0);
|
|
|
|
QByteArray encoded;
|
|
|
|
QDataStream stream(&encoded, QIODevice::WriteOnly);
|
|
|
|
QModelIndexList::ConstIterator it = indexes.begin();
|
|
|
|
QList<QUrl> urls;
|
|
|
|
for (; it != indexes.end(); ++it) {
|
2021-12-24 23:18:20 +08:00
|
|
|
stream << (qint32)((*it).row()) << (qint32)((*it).column()) << (quintptr)((*it).internalPointer());
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModelNode* p = static_cast<ProjectModelNode*>((*it).internalPointer());
|
2021-10-24 12:04:37 +08:00
|
|
|
if (p && p->unitIndex>=0) {
|
|
|
|
urls.append(QUrl::fromLocalFile(mProject->units()[p->unitIndex]->fileName()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!urls.isEmpty())
|
|
|
|
data->setUrls(urls);
|
|
|
|
data->setData(format, encoded);
|
|
|
|
return data;
|
2021-10-24 00:17:08 +08:00
|
|
|
}
|
2022-01-08 08:52:50 +08:00
|
|
|
|
|
|
|
ProjectModelSortFilterProxy::ProjectModelSortFilterProxy(QObject *parent):
|
|
|
|
QSortFilterProxyModel(parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProjectModelSortFilterProxy::lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const
|
|
|
|
{
|
|
|
|
if (!sourceModel())
|
|
|
|
return false;
|
2022-02-08 00:24:08 +08:00
|
|
|
ProjectModel* projectModel = dynamic_cast<ProjectModel*>(sourceModel());
|
|
|
|
ProjectModelNode* pLeft=nullptr;
|
2022-01-08 08:52:50 +08:00
|
|
|
if (source_left.isValid())
|
2022-02-08 00:24:08 +08:00
|
|
|
pLeft = static_cast<ProjectModelNode*>(source_left.internalPointer());
|
|
|
|
ProjectModelNode* pRight=nullptr;
|
2022-01-08 08:52:50 +08:00
|
|
|
if (source_right.isValid())
|
2022-02-08 00:24:08 +08:00
|
|
|
pRight = static_cast<ProjectModelNode*>(source_right.internalPointer());
|
2022-01-08 08:52:50 +08:00
|
|
|
if (!pLeft)
|
|
|
|
return true;
|
|
|
|
if (!pRight)
|
|
|
|
return false;
|
|
|
|
if (pLeft->unitIndex<0 && pRight->unitIndex>=0)
|
|
|
|
return true;
|
|
|
|
if (pLeft->unitIndex>=0 && pRight->unitIndex<0)
|
|
|
|
return false;
|
2022-02-08 12:33:10 +08:00
|
|
|
if (pLeft->priority!=pRight->priority)
|
|
|
|
return pLeft->priority>pRight->priority;
|
2022-01-08 08:52:50 +08:00
|
|
|
return QString::compare(pLeft->text, pRight->text)<0;
|
|
|
|
}
|