mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
80 lines
1.5 KiB
C++
80 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include "lc_array.h"
|
|
|
|
class Project;
|
|
class lcPiecesLibrary;
|
|
|
|
enum lcShadingMode
|
|
{
|
|
LC_SHADING_WIREFRAME,
|
|
LC_SHADING_FLAT,
|
|
LC_SHADING_DEFAULT_LIGHTS,
|
|
LC_SHADING_FULL,
|
|
LC_NUM_SHADING_MODES
|
|
};
|
|
|
|
class lcPreferences
|
|
{
|
|
public:
|
|
void LoadDefaults();
|
|
void SaveDefaults();
|
|
|
|
int mMouseSensitivity;
|
|
lcShadingMode mShadingMode;
|
|
bool mDrawAxes;
|
|
bool mDrawEdgeLines;
|
|
float mLineWidth;
|
|
bool mDrawGridStuds;
|
|
quint32 mGridStudColor;
|
|
bool mDrawGridLines;
|
|
int mGridLineSpacing;
|
|
quint32 mGridLineColor;
|
|
bool mFixedAxes;
|
|
};
|
|
|
|
class lcApplication : public QApplication
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
lcApplication(int& Argc, char** Argv);
|
|
~lcApplication();
|
|
|
|
void SetProject(Project* Project);
|
|
bool Initialize(QList<QPair<QString, bool>>& LibraryPaths, bool& ShowWindow);
|
|
void Shutdown();
|
|
void ShowPreferencesDialog();
|
|
void SaveTabLayout() const;
|
|
|
|
bool LoadPartsLibrary(const QList<QPair<QString, bool>>& LibraryPaths, bool OnlyUsePaths, bool ShowProgress);
|
|
|
|
void SetClipboard(const QByteArray& Clipboard);
|
|
void ExportClipboard(const QByteArray& Clipboard);
|
|
|
|
Project* mProject;
|
|
lcPiecesLibrary* mLibrary;
|
|
lcPreferences mPreferences;
|
|
QByteArray mClipboard;
|
|
|
|
protected:
|
|
QString GetTabLayoutKey() const;
|
|
};
|
|
|
|
extern lcApplication* gApplication;
|
|
|
|
inline lcPiecesLibrary* lcGetPiecesLibrary()
|
|
{
|
|
return gApplication->mLibrary;
|
|
}
|
|
|
|
inline Project* lcGetActiveProject()
|
|
{
|
|
return gApplication->mProject;
|
|
}
|
|
|
|
inline lcPreferences& lcGetPreferences()
|
|
{
|
|
return gApplication->mPreferences;
|
|
}
|
|
|