mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
128 lines
2.9 KiB
C++
128 lines
2.9 KiB
C++
#pragma once
|
|
|
|
#include "object.h"
|
|
#include "lc_array.h"
|
|
#include "lc_application.h"
|
|
|
|
#define LC_HTML_SINGLEPAGE 0x01
|
|
#define LC_HTML_INDEX 0x02
|
|
#define LC_HTML_LISTEND 0x08
|
|
#define LC_HTML_LISTSTEP 0x10
|
|
#define LC_HTML_HIGHLIGHT 0x20
|
|
#define LC_HTML_SUBMODELS 0x40
|
|
#define LC_HTML_CURRENT_ONLY 0x80
|
|
|
|
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 HighlightNewParts;
|
|
bool PartsListStep;
|
|
bool PartsListEnd;
|
|
};
|
|
|
|
enum LC_MOUSE_TRACK
|
|
{
|
|
LC_TRACK_NONE,
|
|
LC_TRACK_LEFT,
|
|
LC_TRACK_RIGHT
|
|
};
|
|
|
|
class Project
|
|
{
|
|
public:
|
|
Project();
|
|
~Project();
|
|
|
|
const lcArray<lcModel*>& GetModels() const
|
|
{
|
|
return mModels;
|
|
}
|
|
|
|
lcModel* GetModel(const QString& Name) const;
|
|
|
|
lcModel* GetActiveModel() const
|
|
{
|
|
return mActiveModel;
|
|
}
|
|
|
|
int GetActiveModelIndex() const
|
|
{
|
|
return mModels.FindIndex(mActiveModel);
|
|
}
|
|
|
|
lcModel* GetMainModel() const
|
|
{
|
|
return !mModels.IsEmpty() ? mModels[0] : nullptr;
|
|
}
|
|
|
|
bool IsModified() const;
|
|
void MarkAsModified();
|
|
QString GetTitle() const;
|
|
|
|
QString GetFileName() const
|
|
{
|
|
return mFileName;
|
|
}
|
|
|
|
QString GetImageFileName(bool AllowCurrentFolder) const;
|
|
|
|
std::vector<std::pair<lcModel*, lcStep>> GetPageLayouts() const;
|
|
|
|
void SetActiveModel(int ModelIndex);
|
|
void SetActiveModel(const QString& ModelName);
|
|
|
|
lcModel* CreateNewModel(bool ShowModel);
|
|
QString GetNewModelName(QWidget* ParentWidget, const QString& DialogTitle, const QString& CurrentName, const QStringList& ExistingModels) const;
|
|
void ShowModelListDialog();
|
|
|
|
bool Load(const QString& FileName);
|
|
bool Save(const QString& FileName);
|
|
bool Save(QTextStream& Stream);
|
|
void Merge(Project* Other);
|
|
bool ImportLDD(const QString& FileName);
|
|
bool ImportInventory(const QByteArray& Inventory, const QString& Name, const QString& Description);
|
|
|
|
void SaveImage();
|
|
bool ExportModel(const QString& FileName, lcModel* Model) const;
|
|
void Export3DStudio(const QString& FileName);
|
|
void ExportBrickLink();
|
|
void ExportCOLLADA(const QString& FileName);
|
|
void ExportCSV();
|
|
void ExportHTML(const lcHTMLExportOptions& Options);
|
|
bool ExportPOVRay(const QString& FileName);
|
|
void ExportWavefront(const QString& FileName);
|
|
|
|
void UpdatePieceInfo(PieceInfo* Info) const;
|
|
|
|
protected:
|
|
QString GetExportFileName(const QString& FileName, const QString& DefaultExtension, const QString& DialogTitle, const QString& DialogFilter) const;
|
|
std::vector<lcModelPartsEntry> GetModelParts();
|
|
void SetFileName(const QString& FileName);
|
|
|
|
bool mModified;
|
|
QString mFileName;
|
|
QFileSystemWatcher mFileWatcher;
|
|
|
|
lcArray<lcModel*> mModels;
|
|
lcModel* mActiveModel;
|
|
|
|
Q_DECLARE_TR_FUNCTIONS(Project);
|
|
};
|
|
|
|
inline lcModel* lcGetActiveModel()
|
|
{
|
|
Project* Project = lcGetActiveProject();
|
|
return Project ? Project->GetActiveModel() : nullptr;
|
|
}
|
|
|