]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/xformsBC.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / xformsBC.h
index b129bb53fcb93a7e6477dead10e820dd60866479..e7bbceee5b8a8c16c8ef672c6a3b9ddd2b023108 100644 (file)
 
 #include "forms_fwd.h"
 
-
-#include "ButtonController.h"
+#include "BCView.h"
+#include "gettext.h"
 
 class xformsBC : public GuiBC<FL_OBJECT, FL_OBJECT> {
 public:
        ///
-       xformsBC(string const &, string const &);
+       xformsBC(ButtonController const &,
+                string const & = _("Cancel"), string const & = _("Close"));
 
 private:
        /// Updates the button sensitivity (enabled/disabled)
-       void setButtonEnabled(FL_OBJECT *, bool enabled);
+       void setButtonEnabled(FL_OBJECT *, bool enabled) const;
 
        /// Updates the widget sensitivity (enabled/disabled)
-       void setWidgetEnabled(FL_OBJECT *, bool enabled);
+       void setWidgetEnabled(FL_OBJECT *, bool enabled) const;
 
        /// Set the label on the button
-       void setButtonLabel(FL_OBJECT *, string const & label);
+       void setButtonLabel(FL_OBJECT *, string const & label) const;
 };
 
 #endif // XFORMSBC_H