Merge branch '2384-playlist'
[dcpomatic.git] / src / wx / dcpomatic_button.h
index 902c856668ae2c1b900aafafa664c31a015855d7..6de8b60f40aa837590bbde420875897250eb6f2d 100644 (file)
@@ -28,6 +28,7 @@
 LIBDCP_DISABLE_WARNINGS
 #include <wx/button.h>
 LIBDCP_ENABLE_WARNINGS
+#include <boost/bind/bind.hpp>
 
 
 class Button : public wxButton, public I18NHook
@@ -37,6 +38,11 @@ public:
 
        void set_text (wxString text) override;
        wxString get_text () const override;
+
+       template <typename... Args>
+       void bind(Args... args) {
+               Bind(wxEVT_BUTTON, boost::bind(std::forward<Args>(args)...));
+       }
 };