summaryrefslogtreecommitdiff
path: root/RealtimeSync/mainDialog.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:03:20 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:03:20 +0200
commit528635604eea1d8c679a3d038e2f00030ef72444 (patch)
tree9c3cbec29aa7d3e209939662e040b9342c9e7400 /RealtimeSync/mainDialog.h
parent3.1 (diff)
downloadFreeFileSync-528635604eea1d8c679a3d038e2f00030ef72444.tar.gz
FreeFileSync-528635604eea1d8c679a3d038e2f00030ef72444.tar.bz2
FreeFileSync-528635604eea1d8c679a3d038e2f00030ef72444.zip
3.2
Diffstat (limited to 'RealtimeSync/mainDialog.h')
-rw-r--r--RealtimeSync/mainDialog.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/RealtimeSync/mainDialog.h b/RealtimeSync/mainDialog.h
index 9cf44a67..8447d269 100644
--- a/RealtimeSync/mainDialog.h
+++ b/RealtimeSync/mainDialog.h
@@ -12,6 +12,7 @@
#include <vector>
#include <memory>
#include "../shared/dragAndDrop.h"
+#include <wx/help.h>
namespace xmlAccess
{
@@ -36,7 +37,7 @@ private:
class MainDialog: public MainDlgGenerated
{
public:
- MainDialog(wxDialog *dlg, const wxString& cfgFilename);
+ MainDialog(wxDialog *dlg, const wxString& cfgFilename, wxHelpController& helpController);
~MainDialog();
void loadConfig(const wxString& filename);
@@ -44,6 +45,7 @@ public:
private:
virtual void OnClose( wxCloseEvent& event);
virtual void OnQuit( wxCommandEvent& event);
+ virtual void OnShowHelp( wxCommandEvent& event);
virtual void OnMenuAbout( wxCommandEvent& event);
virtual void OnAddFolder( wxCommandEvent& event);
virtual void OnRemoveFolder( wxCommandEvent& event);
@@ -68,6 +70,7 @@ private:
//additional folders
std::vector<FolderPanel*> additionalFolders; //additional pairs to the standard pair
+ wxHelpController& helpController_;
//support for drag and drop on main folder
std::auto_ptr<FreeFileSync::DragDropOnDlg> dragDropOnFolder;
};
bgstack15