Fix markup in fr_FR translation causing missing text in disk writer (#2492).
[dcpomatic.git] / src / wx / dcpomatic_button.h
index 682fa5fe67e91ae783f0e714f4742322917d0d4e..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
 {
 public:
        Button (wxWindow* parent, wxString label, wxPoint pos = wxDefaultPosition, wxSize = wxDefaultSize, long style = 0);
 
-       void set_text (wxString text);
-       wxString get_text () const;
+       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