leocad/common/lc_basewindow.h

48 lines
871 B
C
Raw Normal View History

#pragma once
2011-09-07 23:06:51 +02:00
2013-08-09 06:57:18 +02:00
#include "lc_math.h"
2013-08-16 01:43:18 +02:00
#include "lc_array.h"
#include "lc_application.h"
#include "lc_model.h"
2013-08-09 06:57:18 +02:00
#include "lc_category.h"
#include "lc_shortcuts.h"
#include "image.h"
2011-09-07 23:06:51 +02:00
2013-08-09 06:57:18 +02:00
struct lcPropertiesDialogOptions
{
lcModelProperties Properties;
2013-08-09 06:57:18 +02:00
bool SetDefault;
lcPartsList PartsList;
2013-08-09 06:57:18 +02:00
};
2011-09-07 23:06:51 +02:00
2013-08-09 06:57:18 +02:00
struct lcPreferencesDialogOptions
{
lcPreferences Preferences;
2015-01-31 22:44:57 +01:00
QString LibraryPath;
QString ColorConfigPath;
QString MinifigSettingsPath;
2015-01-31 22:44:57 +01:00
QString POVRayPath;
QString LGEOPath;
QString DefaultAuthor;
2019-11-28 22:52:06 +01:00
QString Language;
2013-08-09 06:57:18 +02:00
int CheckForUpdates;
int AASamples;
int StudLogo;
2013-08-09 06:57:18 +02:00
2020-01-11 02:40:14 +01:00
std::vector<lcLibraryCategory> Categories;
2013-08-09 06:57:18 +02:00
bool CategoriesModified;
bool CategoriesDefault;
lcKeyboardShortcuts KeyboardShortcuts;
2016-04-25 07:26:34 +02:00
bool KeyboardShortcutsModified;
bool KeyboardShortcutsDefault;
lcMouseShortcuts MouseShortcuts;
bool MouseShortcutsModified;
bool MouseShortcutsDefault;
2013-08-09 06:57:18 +02:00
};