summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-11-12 21:41:23 +0100
committerCarl Hetherington <cth@carlh.net>2022-11-13 00:12:26 +0100
commit703f4a3346bb1da33bb5ef7348e70507cd189458 (patch)
tree0347abd408659f4cb8692487b55fe6dd38cb9c9a
parent67283dca3c2c7e34ea1e84a7c48e3bc9e01630cd (diff)
Add bind() to Choice.
-rw-r--r--src/wx/dcpomatic_choice.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/dcpomatic_choice.h b/src/wx/dcpomatic_choice.h
index 3a5987ead..7c9042de9 100644
--- a/src/wx/dcpomatic_choice.h
+++ b/src/wx/dcpomatic_choice.h
@@ -23,6 +23,7 @@
LIBDCP_DISABLE_WARNINGS
#include <wx/wx.h>
LIBDCP_ENABLE_WARNINGS
+#include <boost/bind.hpp>
#include <boost/optional.hpp>
@@ -37,6 +38,11 @@ public:
void set(int index);
boost::optional<int> get() const;
+ template <typename... Args>
+ void bind(Args... args) {
+ Bind(wxEVT_CHOICE, boost::bind(std::forward<Args>(args)...));
+ }
+
private:
bool _needs_clearing = true;
};