diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 16:52:08 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 16:52:08 +0200 |
commit | a81ead8928b6e0b880a7d889d8312e140f42dd39 (patch) | |
tree | ed43bbb7bda24efded7545ed0f7b7447e2683414 /Application.cpp | |
parent | 1.8 (diff) | |
download | FreeFileSync-a81ead8928b6e0b880a7d889d8312e140f42dd39.tar.gz FreeFileSync-a81ead8928b6e0b880a7d889d8312e140f42dd39.tar.bz2 FreeFileSync-a81ead8928b6e0b880a7d889d8312e140f42dd39.zip |
1.9
Diffstat (limited to 'Application.cpp')
-rw-r--r-- | Application.cpp | 54 |
1 files changed, 31 insertions, 23 deletions
diff --git a/Application.cpp b/Application.cpp index 7a4f2831..260a5943 100644 --- a/Application.cpp +++ b/Application.cpp @@ -57,29 +57,28 @@ void Application::initialize() //test if ffs is to be started on UI with config file passed as commandline parameter wxString configFileForUI = FreeFileSync::FfsLastConfigFile; - if (argc > 1 && wxFileExists(argv[1]) && FreeFileSync::isFFS_ConfigFile(argv[1])) - configFileForUI = argv[1]; - - //should it start in commandline mode? - else if (argc > 1) + if (argc > 1) { - parseCommandline(); - - if (applicationRunsOnCommandLineWithoutWindows) + if (FreeFileSync::isFFS_ConfigFile(argv[1])) + configFileForUI = argv[1]; + else //start in commandline mode? { - ExitMainLoop(); //exit programm on next main loop iteration - return; + parseCommandline(); + + if (applicationRunsOnCommandLineWithoutWindows) + { + ExitMainLoop(); //exit programm on next main loop iteration + return; + } + else + return; //wait for the user to close the status window } - else - return; //wait for the user to close the status window - } - else //no parameters passed: continue with UI - { - //show UI dialog - MainDialog* frame = new MainDialog(NULL, configFileForUI, &programLanguage); - frame->SetIcon(*GlobalResources::programIcon); //set application icon - frame->Show(); } + + //start om GUI mode + MainDialog* frame = new MainDialog(NULL, configFileForUI, &programLanguage); + frame->SetIcon(*GlobalResources::programIcon); //set application icon + frame->Show(); } @@ -142,7 +141,7 @@ void Application::logInit() logWrite(_("Start")); logFile.Write(wxChar('\n')); -totalTime.Start(); //measure total time + totalTime.Start(); //measure total time } @@ -194,7 +193,13 @@ void Application::parseCommandline() wxCMD_LINE_OPTION, GlobalResources::paramCfg, NULL, - _("Specify the sync-direction used for each type of file by a string of five chars:\n\n\t\tChar 1: Folders/files that exist on left side only\n\t\tChar 2: Folders/files that exist on right side only\n\t\tChar 3: Files that exist on both sides, left one is newer\n\t\tChar 4: Files that exist on both sides, right one is newer\n\t\tChar 5: Files that exist on both sides and are different\n\n\t\tSync-direction: L: left, R: right, N: none\n"), + wxString(_("Specify the sync-direction used for each type of file by a string of five chars:\n\n")) + + _("\t\tChar 1: Folders/files that exist on left side only\n") + + _("\t\tChar 2: Folders/files that exist on right side only\n") + + _("\t\tChar 3: Files that exist on both sides, left one is newer\n") + + _("\t\tChar 4: Files that exist on both sides, right one is newer\n") + + _("\t\tChar 5: Files that exist on both sides and are different\n") + + _("\n\t\tSync-direction: L: left, R: right, N: none\n"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_OPTION_MANDATORY }, @@ -235,7 +240,7 @@ void Application::parseCommandline() wxCMD_LINE_SWITCH, GlobalResources::paramContinueError, NULL, - _("If errors occur during folder comparison or synchronization they are ignored and the process continues\n") + _("If errors occur during folder comparison or synchronization they are ignored and the process continues.\n") }, { @@ -249,7 +254,10 @@ void Application::parseCommandline() wxCMD_LINE_SWITCH, GlobalResources::paramSilent, NULL, - wxString(_("Do not show graphical status and error messages but write to a logfile instead")) + _(".\n\nExamples:\n\n1.) FreeFileSync -cmp SIZEDATE -cfg RRRRR C:\\Source C:\\Target\n2.) FreeFileSync -cmp sizedate -cfg rlrln c:\\dir1 c:\\dir2 -incl *.doc\n\n1: Creates a mirror backup of the left directory\n2: Synchronizes all *.doc files from both directories simultaneously\n\n") + wxString(_("Do not show graphical status and error messages but write to a logfile instead.\n\n")) + + _("\tExamples:\n\n\t1.) FreeFileSync -cmp SIZEDATE -cfg RRRRR C:\\Source C:\\Target\n\t2.) FreeFileSync -cmp sizedate -cfg rlrln c:\\dir1 c:\\dir2 -incl *.doc\n\n") + + _("\t1: Creates a mirror backup of the left directory\n\t2: Synchronizes all *.doc files from both directories simultaneously\n\n") + + _("\tHint: You can easily generate a batch file by chosing \"Create batch job\" from the GUI menubar.\n") }, { |