summaryrefslogtreecommitdiff
path: root/ui/folder_history_box.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:48 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:48 +0200
commitee1c8c5c25d25dfa42120125a8a45dc9831ee412 (patch)
tree67aa287157db954e0cadeee05b4aad331eb2ecf2 /ui/folder_history_box.h
parent5.13 (diff)
downloadFreeFileSync-ee1c8c5c25d25dfa42120125a8a45dc9831ee412.tar.gz
FreeFileSync-ee1c8c5c25d25dfa42120125a8a45dc9831ee412.tar.bz2
FreeFileSync-ee1c8c5c25d25dfa42120125a8a45dc9831ee412.zip
5.14
Diffstat (limited to 'ui/folder_history_box.h')
-rw-r--r--ui/folder_history_box.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/ui/folder_history_box.h b/ui/folder_history_box.h
index 695ee930..210f89c0 100644
--- a/ui/folder_history_box.h
+++ b/ui/folder_history_box.h
@@ -80,27 +80,16 @@ public:
void setValue(const wxString& dirname)
{
- setValueAndUpdateList(dirname); //required for setting value correctly + Linux to ensure the dropdown is shown as being populated
+ setValueAndUpdateList(dirname); //required for setting value correctly; Linux: ensure the dropdown is shown as being populated
}
// GetValue
private:
void OnKeyEvent(wxKeyEvent& event);
- void OnMouseWheel(wxMouseEvent& event);
- void OnSelection(wxCommandEvent& event);
- void OnValidateSelection(wxCommandEvent& event);
- void OnMouseClick(wxEvent& event) { setValueAndUpdateList(GetValue()); event.Skip(); }
-
+ void OnRequireHistoryUpdate(wxEvent& event);
void setValueAndUpdateList(const wxString& dirname);
-#if wxCHECK_VERSION(2, 9, 1)
- void OnShowDropDown(wxCommandEvent& event);
- void OnHideDropDown(wxCommandEvent& event);
-
- bool dropDownShown;
-#endif
-
std::shared_ptr<FolderHistory> sharedHistory_;
};
bgstack15