mirror of
https://github.com/leozide/leocad
synced 2024-12-28 22:23:35 +01:00
5adcfb4027
* Add stud logo preference and command line option * Support add stud logo when using disk library
46 lines
848 B
C
46 lines
848 B
C
#pragma once
|
|
|
|
#include "lc_math.h"
|
|
#include "lc_array.h"
|
|
#include "lc_application.h"
|
|
#include "lc_model.h"
|
|
#include "lc_category.h"
|
|
#include "lc_shortcuts.h"
|
|
#include "image.h"
|
|
|
|
struct lcPropertiesDialogOptions
|
|
{
|
|
lcModelProperties Properties;
|
|
bool SetDefault;
|
|
|
|
lcPartsList PartsList;
|
|
};
|
|
|
|
struct lcPreferencesDialogOptions
|
|
{
|
|
lcPreferences Preferences;
|
|
|
|
QString LibraryPath;
|
|
QString ColorConfigPath;
|
|
QString MinifigSettingsPath;
|
|
QString POVRayPath;
|
|
QString LGEOPath;
|
|
QString DefaultAuthor;
|
|
int CheckForUpdates;
|
|
|
|
int AASamples;
|
|
int StudLogo;
|
|
|
|
lcArray<lcLibraryCategory> Categories;
|
|
bool CategoriesModified;
|
|
bool CategoriesDefault;
|
|
|
|
lcKeyboardShortcuts KeyboardShortcuts;
|
|
bool KeyboardShortcutsModified;
|
|
bool KeyboardShortcutsDefault;
|
|
|
|
lcMouseShortcuts MouseShortcuts;
|
|
bool MouseShortcutsModified;
|
|
bool MouseShortcutsDefault;
|
|
};
|
|
|