Cleanup: use layout() wrapper.
[dcpomatic.git] / src / wx / dcpomatic_button.h
index aba41b12562908ecadc3bda3a283183e7ec1ddb8..6de8b60f40aa837590bbde420875897250eb6f2d 100644 (file)
 
 */
 
+
 #ifndef DCPOMATIC_BUTTON_H
 #define DCPOMATIC_BUTTON_H
 
+
 #include "i18n_hook.h"
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/button.h>
+LIBDCP_ENABLE_WARNINGS
+#include <boost/bind/bind.hpp>
+
 
 class Button : public wxButton, public I18NHook
 {
@@ -31,6 +38,12 @@ 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)...));
+       }
 };
 
+
 #endif