summaryrefslogtreecommitdiff
path: root/ui/exec_finished_box.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:17:51 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:17:51 +0200
commit237aedc590b58c0e69d7dfcac92b5f767b7c004a (patch)
tree83f361a82ba483f2daf83b677e8685cd953812d9 /ui/exec_finished_box.h
parent4.5 (diff)
downloadFreeFileSync-237aedc590b58c0e69d7dfcac92b5f767b7c004a.tar.gz
FreeFileSync-237aedc590b58c0e69d7dfcac92b5f767b7c004a.tar.bz2
FreeFileSync-237aedc590b58c0e69d7dfcac92b5f767b7c004a.zip
4.6
Diffstat (limited to 'ui/exec_finished_box.h')
-rw-r--r--ui/exec_finished_box.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/ui/exec_finished_box.h b/ui/exec_finished_box.h
new file mode 100644
index 00000000..c179f5c0
--- /dev/null
+++ b/ui/exec_finished_box.h
@@ -0,0 +1,61 @@
+// **************************************************************************
+// * 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) *
+// **************************************************************************
+
+#ifndef EXEC_FINISHED_BOX_18947773210473214
+#define EXEC_FINISHED_BOX_18947773210473214
+
+#include <vector>
+#include <string>
+#include <map>
+#include <wx/combobox.h>
+#include <zen/string_tools.h>
+
+
+//combobox with history function + functionality to delete items (DEL)
+
+//special command
+bool isCloseProgressDlgCommand(const std::wstring& value);
+
+void addValueToHistory(const std::wstring& value, std::vector<std::wstring>& history, size_t historyMax);
+
+
+class ExecFinishedBox : public wxComboBox
+{
+public:
+ ExecFinishedBox(wxWindow* parent,
+ wxWindowID id,
+ const wxString& value = wxEmptyString,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ int n = 0,
+ const wxString choices[] = NULL,
+ long style = 0,
+ const wxValidator& validator = wxDefaultValidator,
+ const wxString& name = wxComboBoxNameStr);
+
+ void setHistoryRef(std::vector<std::wstring>& history) { history_ = &history; }
+
+ // use these two accessors instead of GetValue()/SetValue():
+ std::wstring getValue() const;
+ void setValue(const std::wstring& value);
+ //required for setting value correctly + Linux to ensure the dropdown is shown as being populated
+
+private:
+ void OnKeyEvent(wxKeyEvent& event);
+ void OnMouseWheel(wxMouseEvent& event) {} //swallow! this gives confusing UI feedback anyway
+ void OnSelection(wxCommandEvent& event);
+ void OnReplaceBuiltInCmds(wxCommandEvent& event);
+ void OnUpdateList(wxEvent& event);
+
+ void setValueAndUpdateList(const std::wstring& value);
+
+ std::vector<std::wstring>* history_;
+
+ const std::vector<std::pair<std::wstring, std::wstring>> defaultCommands;
+};
+
+
+#endif //EXEC_FINISHED_BOX_18947773210473214
bgstack15