summaryrefslogtreecommitdiff
path: root/src/wx/wx_signal_manager.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-05-13 22:28:50 +0100
committerCarl Hetherington <cth@carlh.net>2015-05-13 22:28:50 +0100
commit04bd447fd8960625bda5081cbac235b848d7631f (patch)
treead1eed1a49660218849bdc3faa1b0d14fb59be54 /src/wx/wx_signal_manager.h
parent05c37bfdb86be26497d5baa448a0cbda20e33bed (diff)
Rename UISignaller -> SignalManager.
Diffstat (limited to 'src/wx/wx_signal_manager.h')
-rw-r--r--src/wx/wx_signal_manager.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/wx/wx_signal_manager.h b/src/wx/wx_signal_manager.h
new file mode 100644
index 000000000..ad18e6880
--- /dev/null
+++ b/src/wx/wx_signal_manager.h
@@ -0,0 +1,36 @@
+/*
+ Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include "lib/signal_manager.h"
+
+class wxEvtHandler;
+
+/** @class wxSignalManager
+ * @brief SignalManager for the wxWidgets event loop
+ */
+
+class wxSignalManager : public SignalManager
+{
+public:
+ wxSignalManager (wxEvtHandler *);
+ void wake_ui ();
+
+private:
+ wxEvtHandler* _handler;
+};