// ************************************************************************** // * This file is part of the FreeFileSync project. It is distributed under * // * GNU General Public License: http://www.gnu.org/licenses/gpl.html * // * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) * // ************************************************************************** #include "main_dlg.h" #include "resources.h" #include #include "../lib/ffs_paths.h" #include #include #include "watcher.h" #include #include "xml_proc.h" #include "tray_menu.h" #include #include "xml_ffs.h" #include #include #include #include "../lib/help_provider.h" #include "../lib/process_xml.h" #include using namespace zen; MainDialog::MainDialog(wxDialog* dlg, const wxString& cfgFileName) : MainDlgGenerated(dlg) { wxWindowUpdateLocker dummy(this); //avoid display distortion m_bpButtonRemoveTopFolder->Hide(); m_panelMainFolder->Layout(); m_bpButtonAddFolder->SetBitmapLabel(GlobalResources::getImage(wxT("addFolderPair"))); m_bpButtonRemoveTopFolder->SetBitmapLabel(GlobalResources::getImage(wxT("removeFolderPair"))); m_buttonStart->setBitmapFront(GlobalResources::getImage(wxT("startRed"))); //register key event Connect(wxEVT_CHAR_HOOK, wxKeyEventHandler(MainDialog::OnKeyPressed), NULL, this); //prepare drag & drop dirNameFirst.reset(new DirectoryName(*m_panelMainFolder, *m_dirPickerMain, *m_txtCtrlDirectoryMain, sbSizerDirToWatch)); #ifdef FFS_WIN new MouseMoveWindow(*this); //ownership passed to "this" #endif //--------------------------- load config values ------------------------------------ xmlAccess::XmlRealConfig newConfig; const wxString currentConfigFile = cfgFileName.empty() ? lastConfigFileName() : cfgFileName; bool loadCfgSuccess = false; if (!cfgFileName.empty() || wxFileExists(lastConfigFileName())) try { rts::readRealOrBatchConfig(currentConfigFile, newConfig); loadCfgSuccess = true; } catch (const xmlAccess::FfsXmlError& error) { if (error.getSeverity() == xmlAccess::FfsXmlError::WARNING) wxMessageBox(error.msg(), _("Warning"), wxOK | wxICON_WARNING); else wxMessageBox(error.msg(), _("Error"), wxOK | wxICON_ERROR); } const bool startWatchingImmediately = loadCfgSuccess && !cfgFileName.empty(); setConfiguration(newConfig); setLastUsedConfig(currentConfigFile); //----------------------------------------------------------------------------------------- Fit(); Center(); if (startWatchingImmediately) //start watch mode directly { wxCommandEvent dummy2(wxEVT_COMMAND_BUTTON_CLICKED); this->OnStart(dummy2); } else m_buttonStart->SetFocus(); //don't "steal" focus if program is running from sys-tray" } MainDialog::~MainDialog() { //save current configuration const xmlAccess::XmlRealConfig currentCfg = getConfiguration(); try //write config to XML { writeRealConfig(currentCfg, lastConfigFileName()); } catch (const xmlAccess::FfsXmlError& error) { wxMessageBox(error.msg().c_str(), _("Error"), wxOK | wxICON_ERROR); } } void MainDialog::OnClose(wxCloseEvent& event) { Destroy(); } void MainDialog::OnQuit(wxCommandEvent& event) { Destroy(); } const wxString& MainDialog::lastConfigFileName() { static wxString instance = zen::getConfigDir() + wxT("LastRun.ffs_real"); return instance; } void MainDialog::OnShowHelp(wxCommandEvent& event) { #ifdef FFS_WIN zen::displayHelpEntry(wxT("html\\RealtimeSync.html")); #elif defined FFS_LINUX zen::displayHelpEntry(wxT("html/RealtimeSync.html")); #endif } void MainDialog::OnMenuAbout(wxCommandEvent& event) { //build information wxString build = __TDATE__; #if wxUSE_UNICODE build += wxT(" - Unicode"); #else build += wxT(" - ANSI"); #endif //wxUSE_UNICODE //compile time info about 32/64-bit build if (zen::is64BitBuild) build += wxT(" x64"); else build += wxT(" x86"); assert_static(zen::is32BitBuild || zen::is64BitBuild); wxString buildFormatted = _("(Build: %x)"); buildFormatted.Replace(wxT("%x"), build); wxMessageDialog* aboutDlg = new wxMessageDialog(this, wxString(wxT("RealtimeSync")) + wxT("\n\n") + buildFormatted, _("About"), wxOK); aboutDlg->ShowModal(); } void MainDialog::OnKeyPressed(wxKeyEvent& event) { const int keyCode = event.GetKeyCode(); if (keyCode == WXK_ESCAPE) Destroy(); event.Skip(); } void MainDialog::OnStart(wxCommandEvent& event) { xmlAccess::XmlRealConfig currentCfg = getConfiguration(); Hide(); switch (rts::startDirectoryMonitor(currentCfg, xmlAccess::extractJobName(currentConfigFileName))) { case rts::QUIT: { Destroy(); return; } break; case rts::RESUME: break; } Show(); } void MainDialog::OnSaveConfig(wxCommandEvent& event) { wxString defaultFileName = currentConfigFileName.empty() ? wxT("Realtime.ffs_real") : currentConfigFileName; //attention: currentConfigFileName may be an imported *.ffs_batch file! We don't want to overwrite it with a GUI config! if (defaultFileName.EndsWith(wxT(".ffs_batch"))) defaultFileName.Replace(wxT(".ffs_batch"), wxT(".ffs_real"), false); wxFileDialog* filePicker = new wxFileDialog(this, wxEmptyString, wxEmptyString, defaultFileName, wxString(_("RealtimeSync configuration")) + wxT(" (*.ffs_real)|*.ffs_real"), wxFD_SAVE); if (filePicker->ShowModal() == wxID_OK) { const wxString newFileName = filePicker->GetPath(); if (wxFileExists(newFileName)) { wxMessageDialog* messageDlg = new wxMessageDialog(this, wxString(_("File already exists. Overwrite?")) + wxT(" \"") + newFileName + wxT("\""), _("Warning") , wxOK | wxCANCEL); if (messageDlg->ShowModal() != wxID_OK) return OnSaveConfig(event); //retry } //write config to XML const xmlAccess::XmlRealConfig currentCfg = getConfiguration(); try { writeRealConfig(currentCfg, newFileName); setLastUsedConfig(newFileName); } catch (const zen::FileError& error) { wxMessageBox(error.msg().c_str(), _("Error"), wxOK | wxICON_ERROR); } } } void MainDialog::loadConfig(const wxString& filename) { xmlAccess::XmlRealConfig newConfig; try { rts::readRealOrBatchConfig(filename, newConfig); } catch (const xmlAccess::FfsXmlError& error) { if (error.getSeverity() == xmlAccess::FfsXmlError::WARNING) wxMessageBox(error.msg(), _("Warning"), wxOK | wxICON_WARNING); else { wxMessageBox(error.msg(), _("Error"), wxOK | wxICON_ERROR); return; } } setConfiguration(newConfig); setLastUsedConfig(filename); } void MainDialog::setLastUsedConfig(const wxString& filename) { //set title if (filename == lastConfigFileName()) { SetTitle(_("RealtimeSync - Automated Synchronization")); currentConfigFileName.clear(); } else { SetTitle(filename); currentConfigFileName = filename; } } void MainDialog::OnLoadConfig(wxCommandEvent& event) { wxFileDialog* filePicker = new wxFileDialog(this, wxEmptyString, wxEmptyString, wxEmptyString, wxString(_("RealtimeSync configuration")) + wxT(" (*.ffs_real;*.ffs_batch)|*.ffs_real;*.ffs_batch"), wxFD_OPEN); if (filePicker->ShowModal() == wxID_OK) loadConfig(filePicker->GetPath()); } void MainDialog::setConfiguration(const xmlAccess::XmlRealConfig& cfg) { //clear existing folders dirNameFirst->setName(wxString()); clearAddFolders(); if (!cfg.directories.empty()) { //fill top folder dirNameFirst->setName(*cfg.directories.begin()); //fill additional folders addFolder(std::vector(cfg.directories.begin() + 1, cfg.directories.end())); } //fill commandline m_textCtrlCommand->SetValue(cfg.commandline); //set delay m_spinCtrlDelay->SetValue(static_cast(cfg.delay)); } xmlAccess::XmlRealConfig MainDialog::getConfiguration() { xmlAccess::XmlRealConfig output; output.directories.push_back(dirNameFirst->getName()); for (std::vector::const_iterator i = dirNamesExtra.begin(); i != dirNamesExtra.end(); ++i) output.directories.push_back((*i)->getName()); output.commandline = m_textCtrlCommand->GetValue(); output.delay = m_spinCtrlDelay->GetValue();; return output; } void MainDialog::OnAddFolder(wxCommandEvent& event) { const wxString topFolder = dirNameFirst->getName(); //clear existing top folder first dirNameFirst->setName(wxString()); std::vector newFolders; newFolders.push_back(topFolder); addFolder(newFolders, true); //add pair in front of additonal pairs } void MainDialog::OnRemoveFolder(wxCommandEvent& event) { //find folder pair originating the event const wxObject* const eventObj = event.GetEventObject(); for (std::vector::const_iterator i = dirNamesExtra.begin(); i != dirNamesExtra.end(); ++i) { if (eventObj == static_cast((*i)->m_bpButtonRemoveFolder)) { removeAddFolder(i - dirNamesExtra.begin()); return; } } } void MainDialog::OnRemoveTopFolder(wxCommandEvent& event) { if (dirNamesExtra.size() > 0) { const wxString topDir = (*dirNamesExtra.begin())->getName(); dirNameFirst->setName(topDir); removeAddFolder(0); //remove first of additional folders } } #ifdef FFS_WIN static const size_t MAX_ADD_FOLDERS = 8; #elif defined FFS_LINUX static const size_t MAX_ADD_FOLDERS = 6; #endif void MainDialog::addFolder(const std::vector& newFolders, bool addFront) { if (newFolders.size() == 0) return; wxWindowUpdateLocker dummy(this); //avoid display distortion int folderHeight = 0; for (std::vector::const_iterator i = newFolders.begin(); i != newFolders.end(); ++i) { //add new folder pair DirectoryPanel* newFolder = new DirectoryPanel(m_scrolledWinFolders); newFolder->m_bpButtonRemoveFolder->SetBitmapLabel(GlobalResources::getImage(wxT("removeFolderPair"))); //get size of scrolled window folderHeight = newFolder->GetSize().GetHeight(); if (addFront) { bSizerFolders->Insert(0, newFolder, 0, wxEXPAND, 5); dirNamesExtra.insert(dirNamesExtra.begin(), newFolder); } else { bSizerFolders->Add(newFolder, 0, wxEXPAND, 5); dirNamesExtra.push_back(newFolder); } //register events newFolder->m_bpButtonRemoveFolder->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(MainDialog::OnRemoveFolder), NULL, this ); //insert directory name newFolder->setName(*i); } //set size of scrolled window const size_t additionalRows = std::min(dirNamesExtra.size(), MAX_ADD_FOLDERS); //up to MAX_ADD_FOLDERS additional folders shall be shown m_scrolledWinFolders->SetMinSize(wxSize( -1, folderHeight * static_cast(additionalRows))); //adapt delete top folder pair button m_bpButtonRemoveTopFolder->Show(); m_panelMainFolder->Layout(); //update controls m_scrolledWinFolders->Fit(); //adjust scrolled window size m_scrolledWinFolders->Layout(); //fix small layout problem m_panelMain->Layout(); //adjust stuff inside scrolled window Fit(); //adapt dialog size } void MainDialog::removeAddFolder(const int pos) { wxWindowUpdateLocker dummy(this); //avoid display distortion if (0 <= pos && pos < int(dirNamesExtra.size())) { //remove folder pairs from window DirectoryPanel* dirToDelete = dirNamesExtra[pos]; const int folderHeight = dirToDelete->GetSize().GetHeight(); bSizerFolders->Detach(dirToDelete); //Remove() does not work on Window*, so do it manually dirToDelete->Destroy(); // dirNamesExtra.erase(dirNamesExtra.begin() + pos); //remove last element in vector //set size of scrolled window const size_t additionalRows = std::min(dirNamesExtra.size(), MAX_ADD_FOLDERS); //up to MAX_ADD_FOLDERS additional folders shall be shown m_scrolledWinFolders->SetMinSize(wxSize( -1, folderHeight * static_cast(additionalRows))); //adapt delete top folder pair button if (dirNamesExtra.size() == 0) { m_bpButtonRemoveTopFolder->Hide(); m_panelMainFolder->Layout(); } //update controls m_scrolledWinFolders->Fit(); //adjust scrolled window size m_panelMain->Layout(); //adjust stuff inside scrolled window Fit(); //adapt dialog size } } void MainDialog::clearAddFolders() { wxWindowUpdateLocker dummy(this); //avoid display distortion dirNamesExtra.clear(); bSizerFolders->Clear(true); m_bpButtonRemoveTopFolder->Hide(); m_panelMainFolder->Layout(); m_scrolledWinFolders->SetMinSize(wxSize(-1, 0)); Fit(); //adapt dialog size }