leocad/common/project.h

123 lines
3 KiB
C
Raw Normal View History

#pragma once
2011-09-07 23:06:51 +02:00
#include "lc_application.h"
2013-08-09 06:57:18 +02:00
#define LC_HTML_SINGLEPAGE 0x01
#define LC_HTML_INDEX 0x02
#define LC_HTML_LISTEND 0x08
#define LC_HTML_LISTSTEP 0x10
#define LC_HTML_SUBMODELS 0x40
#define LC_HTML_CURRENT_ONLY 0x80
2013-08-09 06:57:18 +02:00
class lcHTMLExportOptions
{
public:
lcHTMLExportOptions(const Project* Project);
void SaveDefaults();
QString PathName;
bool TransparentImages;
bool SubModels;
bool CurrentOnly;
bool SinglePage;
bool IndexPage;
int StepImagesWidth;
int StepImagesHeight;
bool PartsListStep;
bool PartsListEnd;
};
class Project
2011-09-07 23:06:51 +02:00
{
public:
Project(bool IsPreview = false);
2011-09-07 23:06:51 +02:00
~Project();
2020-05-04 00:39:39 +02:00
Project(const Project&) = delete;
2021-11-15 03:34:24 +01:00
Project(Project&&) = delete;
2020-05-04 00:39:39 +02:00
Project& operator=(const Project&) = delete;
2021-11-15 03:34:24 +01:00
Project& operator=(Project&&) = delete;
2020-05-04 00:39:39 +02:00
2024-06-17 02:43:02 +02:00
const std::vector<std::unique_ptr<lcModel>>& GetModels() const
2014-12-10 00:56:29 +01:00
{
return mModels;
}
2020-05-03 21:11:51 +02:00
lcModel* GetModel(const QString& FileName) const;
lcModel* GetActiveModel() const
{
return mActiveModel;
}
lcModel* GetMainModel() const
{
2024-06-17 02:43:02 +02:00
return !mModels.empty() ? mModels[0].get() : nullptr;
}
2014-12-13 00:42:09 +01:00
bool IsModified() const;
void MarkAsModified();
2014-12-04 02:47:28 +01:00
QString GetTitle() const;
2014-12-13 00:42:09 +01:00
2014-12-04 02:47:28 +01:00
QString GetFileName() const
{
return mFileName;
}
QString GetImageFileName(bool AllowCurrentFolder) const;
2017-12-27 22:55:37 +01:00
2021-01-15 03:19:58 +01:00
lcInstructions* GetInstructions();
2019-12-31 01:04:58 +01:00
2024-06-17 02:43:02 +02:00
void SetActiveModel(lcModel* Model);
2014-12-13 00:42:09 +01:00
void SetActiveModel(int ModelIndex);
2020-05-03 21:11:51 +02:00
void SetActiveModel(const QString& FileName);
2014-12-13 00:42:09 +01:00
lcModel* CreateNewModel(bool ShowModel);
2016-09-09 00:34:51 +02:00
QString GetNewModelName(QWidget* ParentWidget, const QString& DialogTitle, const QString& CurrentName, const QStringList& ExistingModels) const;
2014-12-13 00:42:09 +01:00
void ShowModelListDialog();
bool Load(const QString& FileName, bool ShowErrors);
bool Save(const QString& FileName);
bool Save(QTextStream& Stream);
2014-12-23 18:02:23 +01:00
void Merge(Project* Other);
2017-06-26 03:20:34 +02:00
bool ImportLDD(const QString& FileName);
2017-08-20 22:47:53 +02:00
bool ImportInventory(const QByteArray& Inventory, const QString& Name, const QString& Description);
2014-12-04 02:47:28 +01:00
2015-01-12 06:02:50 +01:00
void SaveImage();
2023-05-23 13:05:56 +02:00
bool ExportCurrentStep(const QString& FileName);
2019-05-28 01:39:51 +02:00
bool ExportModel(const QString& FileName, lcModel* Model) const;
bool Export3DStudio(const QString& FileName);
2014-12-30 17:30:12 +01:00
void ExportBrickLink();
bool ExportCOLLADA(const QString& FileName);
bool ExportCSV(const QString& FileName);
void ExportHTML(const lcHTMLExportOptions& Options);
2017-09-22 19:08:02 +02:00
bool ExportPOVRay(const QString& FileName);
bool ExportWavefront(const QString& FileName);
2014-12-30 17:30:12 +01:00
void UpdatePieceInfo(PieceInfo* Info) const;
protected:
QString GetExportFileName(const QString& FileName, const QString& DefaultExtension, const QString& DialogTitle, const QString& DialogFilter) const;
2019-05-28 01:39:51 +02:00
std::vector<lcModelPartsEntry> GetModelParts();
void SetFileName(const QString& FileName);
2014-12-30 17:30:12 +01:00
bool mIsPreview;
bool mModified;
QString mFileName;
QFileSystemWatcher mFileWatcher;
2014-12-04 02:47:28 +01:00
2024-06-17 02:43:02 +02:00
std::vector<std::unique_ptr<lcModel>> mModels;
lcModel* mActiveModel;
2021-01-15 03:19:58 +01:00
std::unique_ptr<lcInstructions> mInstructions;
Q_DECLARE_TR_FUNCTIONS(Project);
2011-09-07 23:06:51 +02:00
};
inline lcModel* lcGetActiveModel()
{
2020-03-23 04:18:52 +01:00
const Project* const Project = lcGetActiveProject();
return Project ? Project->GetActiveModel() : nullptr;
}