#ifndef SYNCDIALOG_H_INCLUDED #define SYNCDIALOG_H_INCLUDED #include "mainDialog.h" class MainDialog; class SyncDialog: public SyncDialogGenerated { public: SyncDialog(MainDialog* window); ~SyncDialog(); static const int StartSynchronizationProcess = 15; private: //temporal copy of maindialog->syncConfiguration SyncConfiguration localSyncConfiguration; void updateConfigIcons(); void OnSyncLeftToRight( wxCommandEvent& event ); void OnSyncBothSides( wxCommandEvent& event ); void OnExLeftSideOnly( wxCommandEvent& event ); void OnExRightSideOnly( wxCommandEvent& event ); void OnLeftNewer( wxCommandEvent& event ); void OnRightNewer( wxCommandEvent& event ); void OnDifferent( wxCommandEvent& event ); void OnStartSync(wxCommandEvent& event); void OnClose(wxCloseEvent& event); void OnBack(wxCommandEvent& event); void OnCancel(wxCommandEvent& event); void OnSelectRecycleBin(wxCommandEvent& event); MainDialog* mainDialog; }; #endif // SYNCDIALOG_H_INCLUDED