2013-08-09 06:57:18 +02:00
|
|
|
#include "lc_global.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "lc_application.h"
|
|
|
|
#include "lc_colors.h"
|
|
|
|
#include "lc_library.h"
|
|
|
|
#include "lc_profile.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "opengl.h"
|
|
|
|
#include "project.h"
|
|
|
|
#include "image.h"
|
2013-08-16 03:25:51 +02:00
|
|
|
#include "lc_mainwindow.h"
|
2013-08-09 06:57:18 +02:00
|
|
|
#include "lc_shortcuts.h"
|
|
|
|
|
|
|
|
lcApplication* g_App;
|
|
|
|
|
2014-02-10 01:13:41 +01:00
|
|
|
void lcPreferences::LoadDefaults()
|
|
|
|
{
|
|
|
|
mMouseSensitivity = lcGetProfileInt(LC_PROFILE_MOUSE_SENSITIVITY);
|
|
|
|
mLightingMode = (lcLightingMode)lcGetProfileInt(LC_PROFILE_LIGHTING_MODE);
|
|
|
|
mDrawAxes = lcGetProfileInt(LC_PROFILE_DRAW_AXES);
|
|
|
|
mDrawEdgeLines = lcGetProfileInt(LC_PROFILE_DRAW_EDGE_LINES);
|
|
|
|
mLineWidth = lcGetProfileFloat(LC_PROFILE_LINE_WIDTH);
|
|
|
|
mDrawGridStuds = lcGetProfileInt(LC_PROFILE_GRID_STUDS);
|
|
|
|
mGridStudColor = lcGetProfileInt(LC_PROFILE_GRID_STUD_COLOR);
|
|
|
|
mDrawGridLines = lcGetProfileInt(LC_PROFILE_GRID_LINES);
|
|
|
|
mGridLineSpacing = lcGetProfileInt(LC_PROFILE_GRID_LINE_SPACING);
|
|
|
|
mGridLineColor = lcGetProfileInt(LC_PROFILE_GRID_LINE_COLOR);
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcPreferences::SaveDefaults()
|
|
|
|
{
|
|
|
|
lcSetProfileInt(LC_PROFILE_MOUSE_SENSITIVITY, mMouseSensitivity);
|
|
|
|
lcSetProfileInt(LC_PROFILE_LIGHTING_MODE, mLightingMode);
|
|
|
|
lcSetProfileInt(LC_PROFILE_DRAW_AXES, mDrawAxes);
|
|
|
|
lcSetProfileInt(LC_PROFILE_DRAW_EDGE_LINES, mDrawEdgeLines);
|
|
|
|
lcSetProfileFloat(LC_PROFILE_LINE_WIDTH, mLineWidth);
|
|
|
|
lcSetProfileInt(LC_PROFILE_GRID_STUDS, mDrawGridStuds);
|
|
|
|
lcSetProfileInt(LC_PROFILE_GRID_STUD_COLOR, mGridStudColor);
|
|
|
|
lcSetProfileInt(LC_PROFILE_GRID_LINES, mDrawGridLines);
|
|
|
|
lcSetProfileInt(LC_PROFILE_GRID_LINE_SPACING, mGridLineSpacing);
|
|
|
|
lcSetProfileInt(LC_PROFILE_GRID_LINE_COLOR, mGridLineColor);
|
|
|
|
}
|
|
|
|
|
2013-08-09 06:57:18 +02:00
|
|
|
lcApplication::lcApplication()
|
|
|
|
{
|
|
|
|
mProject = NULL;
|
2014-02-10 01:13:41 +01:00
|
|
|
mLibrary = NULL;
|
2013-08-09 06:57:18 +02:00
|
|
|
mClipboard = NULL;
|
2014-02-10 01:13:41 +01:00
|
|
|
|
|
|
|
mPreferences.LoadDefaults();
|
2013-08-09 06:57:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
lcApplication::~lcApplication()
|
|
|
|
{
|
|
|
|
delete mClipboard;
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcApplication::SetClipboard(lcFile* Clipboard)
|
|
|
|
{
|
|
|
|
delete mClipboard;
|
|
|
|
mClipboard = Clipboard;
|
|
|
|
|
|
|
|
gMainWindow->UpdatePaste(mClipboard != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool lcApplication::LoadPiecesLibrary(const char* LibPath, const char* LibraryInstallPath, const char* LibraryCachePath)
|
|
|
|
{
|
2014-02-10 01:13:41 +01:00
|
|
|
if (mLibrary == NULL)
|
|
|
|
mLibrary = new lcPiecesLibrary();
|
2013-08-09 06:57:18 +02:00
|
|
|
|
|
|
|
if (LibPath && LibPath[0])
|
|
|
|
{
|
2014-02-10 01:13:41 +01:00
|
|
|
if (mLibrary->Load(LibPath, LibraryCachePath))
|
2013-08-09 06:57:18 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char* EnvPath = getenv("LEOCAD_LIB");
|
|
|
|
|
|
|
|
if (EnvPath && EnvPath[0])
|
|
|
|
{
|
2014-02-10 01:13:41 +01:00
|
|
|
if (mLibrary->Load(EnvPath, LibraryCachePath))
|
2013-08-09 06:57:18 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char CustomPath[LC_MAXPATH];
|
|
|
|
|
|
|
|
strcpy(CustomPath, lcGetProfileString(LC_PROFILE_PARTS_LIBRARY));
|
|
|
|
|
|
|
|
if (CustomPath[0])
|
|
|
|
{
|
2014-02-10 01:13:41 +01:00
|
|
|
if (mLibrary->Load(CustomPath, LibraryCachePath))
|
2013-08-09 06:57:18 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (LibraryInstallPath && LibraryInstallPath[0])
|
|
|
|
{
|
|
|
|
char LibraryPath[LC_MAXPATH];
|
|
|
|
|
|
|
|
strcpy(LibraryPath, LibraryInstallPath);
|
|
|
|
|
|
|
|
int i = strlen(LibraryPath) - 1;
|
|
|
|
if ((LibraryPath[i] != '\\') && (LibraryPath[i] != '/'))
|
|
|
|
strcat(LibraryPath, "/");
|
|
|
|
|
|
|
|
strcat(LibraryPath, "library.bin");
|
|
|
|
|
2014-02-10 01:13:41 +01:00
|
|
|
if (mLibrary->Load(LibraryPath, LibraryCachePath))
|
2013-08-09 06:57:18 +02:00
|
|
|
{
|
2014-03-07 03:39:28 +01:00
|
|
|
mLibrary->SetOfficialPieces();
|
2013-08-09 06:57:18 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcApplication::ParseIntegerArgument(int* CurArg, int argc, char* argv[], int* Value)
|
|
|
|
{
|
|
|
|
if (argc > (*CurArg + 1))
|
|
|
|
{
|
|
|
|
(*CurArg)++;
|
|
|
|
int val;
|
|
|
|
|
|
|
|
if ((sscanf(argv[(*CurArg)], "%d", &val) == 1) && (val > 0))
|
|
|
|
*Value = val;
|
|
|
|
else
|
2013-08-16 03:31:30 +02:00
|
|
|
printf("Invalid value specified for the %s argument.", argv[(*CurArg) - 1]);
|
2013-08-09 06:57:18 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-08-16 03:31:30 +02:00
|
|
|
printf("Not enough parameters for the %s argument.", argv[(*CurArg) - 1]);
|
2013-08-09 06:57:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcApplication::ParseStringArgument(int* CurArg, int argc, char* argv[], char** Value)
|
|
|
|
{
|
|
|
|
if (argc > (*CurArg + 1))
|
|
|
|
{
|
|
|
|
(*CurArg)++;
|
|
|
|
*Value = argv[(*CurArg)];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-08-16 03:31:30 +02:00
|
|
|
printf("No path specified after the %s argument.", argv[(*CurArg) - 1]);
|
2013-08-09 06:57:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool lcApplication::Initialize(int argc, char* argv[], const char* LibraryInstallPath, const char* LibraryCachePath)
|
|
|
|
{
|
|
|
|
char* LibPath = NULL;
|
|
|
|
|
|
|
|
// Image output options.
|
|
|
|
bool SaveImage = false;
|
|
|
|
bool ImageHighlight = false;
|
|
|
|
int ImageWidth = lcGetProfileInt(LC_PROFILE_IMAGE_WIDTH);
|
|
|
|
int ImageHeight = lcGetProfileInt(LC_PROFILE_IMAGE_HEIGHT);
|
|
|
|
int ImageStart = 0;
|
|
|
|
int ImageEnd = 0;
|
|
|
|
char* ImageName = NULL;
|
|
|
|
|
|
|
|
// File to open.
|
|
|
|
char* ProjectName = NULL;
|
|
|
|
|
|
|
|
// Parse the command line arguments.
|
|
|
|
for (int i = 1; i < argc; i++)
|
|
|
|
{
|
|
|
|
char* Param = argv[i];
|
|
|
|
|
|
|
|
if (Param[0] == '-')
|
|
|
|
{
|
2013-08-11 22:35:04 +02:00
|
|
|
if ((strcmp(Param, "-l") == 0) || (strcmp(Param, "--libpath") == 0))
|
2013-08-09 06:57:18 +02:00
|
|
|
{
|
|
|
|
ParseStringArgument(&i, argc, argv, &LibPath);
|
|
|
|
}
|
|
|
|
else if ((strcmp(Param, "-i") == 0) || (strcmp(Param, "--image") == 0))
|
|
|
|
{
|
|
|
|
SaveImage = true;
|
|
|
|
|
|
|
|
if ((argc > (i+1)) && (argv[i+1][0] != '-'))
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
ImageName = argv[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ((strcmp(Param, "-w") == 0) || (strcmp(Param, "--width") == 0))
|
|
|
|
{
|
|
|
|
ParseIntegerArgument(&i, argc, argv, &ImageWidth);
|
|
|
|
}
|
|
|
|
else if ((strcmp(Param, "-h") == 0) || (strcmp(Param, "--height") == 0))
|
|
|
|
{
|
|
|
|
ParseIntegerArgument(&i, argc, argv, &ImageHeight);
|
|
|
|
}
|
|
|
|
else if ((strcmp(Param, "-f") == 0) || (strcmp(Param, "--from") == 0))
|
|
|
|
{
|
|
|
|
ParseIntegerArgument(&i, argc, argv, &ImageStart);
|
|
|
|
}
|
|
|
|
else if ((strcmp(Param, "-t") == 0) || (strcmp(Param, "--to") == 0))
|
|
|
|
{
|
|
|
|
ParseIntegerArgument(&i, argc, argv, &ImageEnd);
|
|
|
|
}
|
|
|
|
else if (strcmp(Param, "--highlight") == 0)
|
|
|
|
ImageHighlight = true;
|
|
|
|
else if ((strcmp(Param, "-v") == 0) || (strcmp(Param, "--version") == 0))
|
|
|
|
{
|
|
|
|
printf("LeoCAD Version " LC_VERSION_TEXT "\n");
|
|
|
|
printf("Compiled "__DATE__"\n");
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if ((strcmp(Param, "-?") == 0) || (strcmp(Param, "--help") == 0))
|
|
|
|
{
|
|
|
|
printf("Usage: leocad [options] [file]\n");
|
|
|
|
printf(" [options] can be:\n");
|
|
|
|
printf(" -l, --libpath <path>: Loads the Pieces Library from path.\n");
|
|
|
|
printf(" -i, --image <outfile.ext>: Saves a picture in the format specified by ext.\n");
|
|
|
|
printf(" -w, --width <width>: Sets the picture width.\n");
|
|
|
|
printf(" -h, --height <height>: Sets the picture height.\n");
|
|
|
|
printf(" -f, --from <time>: Sets the first frame or step to save pictures.\n");
|
|
|
|
printf(" -t, --to <time>: Sets the last frame or step to save pictures.\n");
|
|
|
|
printf(" --highlight: Highlight pieces in the steps they appear.\n");
|
|
|
|
printf(" \n");
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
2013-08-11 22:35:04 +02:00
|
|
|
printf("Unknown parameter: %s\n", Param);
|
2013-08-09 06:57:18 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ProjectName = Param;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!LoadPiecesLibrary(LibPath, LibraryInstallPath, LibraryCachePath))
|
|
|
|
{
|
|
|
|
if (SaveImage)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "ERROR: Cannot load pieces library.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-02-10 01:13:41 +01:00
|
|
|
mLibrary->CreateBuiltinPieces();
|
2013-08-09 06:57:18 +02:00
|
|
|
|
|
|
|
gMainWindow->DoMessageBox("LeoCAD could not find a compatible Pieces Library so only a small number of pieces will be available.\n\n"
|
|
|
|
"Please visit http://www.leocad.org for information on how to download and install a library.", LC_MB_OK | LC_MB_ICONERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new project.
|
|
|
|
mProject = new Project();
|
|
|
|
|
|
|
|
GL_DisableVertexBufferObject();
|
|
|
|
|
|
|
|
// Load project.
|
|
|
|
if (ProjectName && mProject->OpenProject(ProjectName))
|
|
|
|
{
|
|
|
|
if (!SaveImage)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Check if there's a file name and it has an extension.
|
|
|
|
bool NeedExt = true;
|
|
|
|
String FileName;
|
|
|
|
|
|
|
|
if (!ImageName)
|
|
|
|
{
|
|
|
|
FileName = ProjectName;
|
|
|
|
|
|
|
|
int i = FileName.ReverseFind('.');
|
|
|
|
if (i != -1)
|
|
|
|
FileName[i] = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FileName = ImageName;
|
|
|
|
|
|
|
|
int i = FileName.ReverseFind('.');
|
|
|
|
String Ext;
|
|
|
|
|
|
|
|
if (i != -1)
|
|
|
|
{
|
|
|
|
Ext = FileName.Right(FileName.GetLength() - i);
|
|
|
|
Ext.MakeLower();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Ext == "bmp")
|
|
|
|
NeedExt = false;
|
|
|
|
else if ((Ext == "jpg") || (Ext == "jpeg"))
|
|
|
|
NeedExt = false;
|
|
|
|
else if (Ext == "png")
|
|
|
|
NeedExt = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup default options.
|
|
|
|
int ImageOptions = lcGetProfileInt(LC_PROFILE_IMAGE_OPTIONS);
|
|
|
|
bool ImageTransparent = (ImageOptions & LC_IMAGE_TRANSPARENT) != 0;
|
|
|
|
LC_IMAGE_FORMAT ImageFormat = (LC_IMAGE_FORMAT)(ImageOptions & ~(LC_IMAGE_MASK));
|
|
|
|
|
|
|
|
// Append file extension if needed.
|
|
|
|
if (NeedExt)
|
|
|
|
{
|
|
|
|
switch (ImageFormat)
|
|
|
|
{
|
|
|
|
case LC_IMAGE_BMP:
|
|
|
|
FileName += ".bmp";
|
|
|
|
break;
|
|
|
|
case LC_IMAGE_JPG:
|
|
|
|
FileName += ".jpg";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case LC_IMAGE_PNG:
|
|
|
|
FileName += ".png";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ImageEnd < ImageStart)
|
|
|
|
ImageEnd = ImageStart;
|
|
|
|
else if (ImageStart > ImageEnd)
|
|
|
|
ImageStart = ImageEnd;
|
|
|
|
|
|
|
|
if ((ImageStart == 0) && (ImageEnd == 0))
|
|
|
|
{
|
|
|
|
ImageStart = ImageEnd = mProject->GetCurrentTime();
|
|
|
|
}
|
|
|
|
else if ((ImageStart == 0) && (ImageEnd != 0))
|
|
|
|
{
|
|
|
|
ImageStart = ImageEnd;
|
|
|
|
}
|
|
|
|
else if ((ImageStart != 0) && (ImageEnd == 0))
|
|
|
|
{
|
|
|
|
ImageEnd = ImageStart;
|
|
|
|
}
|
|
|
|
|
2014-01-30 04:13:34 +01:00
|
|
|
if (ImageStart > 255)
|
|
|
|
ImageStart = 255;
|
2013-08-09 06:57:18 +02:00
|
|
|
|
2014-01-30 04:13:34 +01:00
|
|
|
if (ImageEnd > 255)
|
|
|
|
ImageEnd = 255;
|
2013-08-09 06:57:18 +02:00
|
|
|
|
|
|
|
Image* images = new Image[ImageEnd - ImageStart + 1];
|
|
|
|
mProject->CreateImages(images, ImageWidth, ImageHeight, ImageStart, ImageEnd, ImageHighlight);
|
|
|
|
|
|
|
|
for (int i = 0; i <= ImageEnd - ImageStart; i++)
|
|
|
|
{
|
|
|
|
char idx[256];
|
|
|
|
String Frame;
|
|
|
|
|
|
|
|
if (ImageStart != ImageEnd)
|
|
|
|
{
|
|
|
|
sprintf(idx, "%02d", i+1);
|
|
|
|
int Ext = FileName.ReverseFind('.');
|
|
|
|
|
|
|
|
Frame = FileName.Left(Ext) + idx + FileName.Right(FileName.GetLength() - Ext);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Frame = FileName;
|
|
|
|
|
|
|
|
images[i].FileSave(Frame, ImageFormat, ImageTransparent);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete []images;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (SaveImage)
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
mProject->OnNewDocument();
|
|
|
|
}
|
|
|
|
|
|
|
|
lcLoadDefaultKeyboardShortcuts();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcApplication::Shutdown()
|
|
|
|
{
|
2014-02-10 01:13:41 +01:00
|
|
|
delete mLibrary;
|
|
|
|
mLibrary = NULL;
|
2013-08-09 06:57:18 +02:00
|
|
|
}
|
2014-02-10 01:13:41 +01:00
|
|
|
|
|
|
|
void lcApplication::ShowPreferencesDialog()
|
|
|
|
{
|
|
|
|
lcPreferencesDialogOptions Options;
|
|
|
|
int CurrentAASamples = lcGetProfileInt(LC_PROFILE_ANTIALIASING_SAMPLES);
|
|
|
|
|
|
|
|
Options.Preferences = mPreferences;
|
|
|
|
|
|
|
|
strcpy(Options.DefaultAuthor, lcGetProfileString(LC_PROFILE_DEFAULT_AUTHOR_NAME));
|
|
|
|
strcpy(Options.ProjectsPath, lcGetProfileString(LC_PROFILE_PROJECTS_PATH));
|
|
|
|
strcpy(Options.LibraryPath, lcGetProfileString(LC_PROFILE_PARTS_LIBRARY));
|
|
|
|
strcpy(Options.POVRayPath, lcGetProfileString(LC_PROFILE_POVRAY_PATH));
|
|
|
|
strcpy(Options.LGEOPath, lcGetProfileString(LC_PROFILE_POVRAY_LGEO_PATH));
|
|
|
|
Options.CheckForUpdates = lcGetProfileInt(LC_PROFILE_CHECK_UPDATES);
|
|
|
|
|
|
|
|
Options.Snap = lcGetActiveProject()->m_nSnap;
|
|
|
|
Options.AASamples = CurrentAASamples;
|
|
|
|
|
|
|
|
Options.Categories = gCategories;
|
|
|
|
Options.CategoriesModified = false;
|
|
|
|
Options.CategoriesDefault = false;
|
|
|
|
|
|
|
|
Options.KeyboardShortcuts = gKeyboardShortcuts;
|
|
|
|
Options.ShortcutsModified = false;
|
|
|
|
Options.ShortcutsDefault = false;
|
|
|
|
|
|
|
|
if (!gMainWindow->DoDialog(LC_DIALOG_PREFERENCES, &Options))
|
|
|
|
return;
|
|
|
|
|
|
|
|
bool LibraryChanged = strcmp(Options.LibraryPath, lcGetProfileString(LC_PROFILE_PARTS_LIBRARY));
|
|
|
|
bool AAChanged = CurrentAASamples != Options.AASamples;
|
|
|
|
|
|
|
|
mPreferences = Options.Preferences;
|
|
|
|
lcGetActiveProject()->m_nSnap = Options.Snap;
|
|
|
|
|
|
|
|
mPreferences.SaveDefaults();
|
|
|
|
|
|
|
|
lcSetProfileString(LC_PROFILE_DEFAULT_AUTHOR_NAME, Options.DefaultAuthor);
|
|
|
|
lcSetProfileString(LC_PROFILE_PROJECTS_PATH, Options.ProjectsPath);
|
|
|
|
lcSetProfileString(LC_PROFILE_PARTS_LIBRARY, Options.LibraryPath);
|
|
|
|
lcSetProfileString(LC_PROFILE_POVRAY_PATH, Options.POVRayPath);
|
|
|
|
lcSetProfileString(LC_PROFILE_POVRAY_LGEO_PATH, Options.LGEOPath);
|
|
|
|
lcSetProfileInt(LC_PROFILE_CHECK_UPDATES, Options.CheckForUpdates);
|
|
|
|
lcSetProfileInt(LC_PROFILE_SNAP, Options.Snap);
|
|
|
|
lcSetProfileInt(LC_PROFILE_ANTIALIASING_SAMPLES, Options.AASamples);
|
|
|
|
|
|
|
|
if (LibraryChanged && AAChanged)
|
|
|
|
gMainWindow->DoMessageBox("Parts library and Anti-aliasing changes will only take effect the next time you start LeoCAD.", LC_MB_OK);
|
|
|
|
else if (LibraryChanged)
|
|
|
|
gMainWindow->DoMessageBox("Parts library changes will only take effect the next time you start LeoCAD.", LC_MB_OK);
|
|
|
|
else if (AAChanged)
|
|
|
|
gMainWindow->DoMessageBox("Anti-aliasing changes will only take effect the next time you start LeoCAD.", LC_MB_OK);
|
|
|
|
|
|
|
|
if (Options.CategoriesModified)
|
|
|
|
{
|
|
|
|
if (Options.CategoriesDefault)
|
|
|
|
lcResetDefaultCategories();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gCategories = Options.Categories;
|
|
|
|
lcSaveDefaultCategories();
|
|
|
|
}
|
|
|
|
|
|
|
|
gMainWindow->UpdateCategories();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Options.ShortcutsModified)
|
|
|
|
{
|
|
|
|
if (Options.ShortcutsDefault)
|
|
|
|
lcResetDefaultKeyboardShortcuts();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gKeyboardShortcuts = Options.KeyboardShortcuts;
|
|
|
|
lcSaveDefaultKeyboardShortcuts();
|
|
|
|
}
|
|
|
|
|
|
|
|
gMainWindow->UpdateShortcuts();
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: printing preferences
|
|
|
|
/*
|
|
|
|
strcpy(opts.strFooter, m_strFooter);
|
|
|
|
strcpy(opts.strHeader, m_strHeader);
|
|
|
|
*/
|
|
|
|
|
|
|
|
lcGetActiveProject()->UpdateAllViews();
|
2014-03-07 03:39:28 +01:00
|
|
|
}
|