]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/xformsBC.h
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / frontends / xforms / xformsBC.h
index 4121f7bb3bad858e6f85ed1d58fce4f55a68a357..085ca7174a378aeac3034b84374a4b7ede80761b 100644 (file)
@@ -5,10 +5,10 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Allan Rae
- * \author Angus Leeming 
+ * \author Angus Leeming
  * \author Baruch Even
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef XFORMSBC_H
 
 #include "forms_fwd.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "BCView.h"
+#include "gettext.h"
 
-#include "ButtonController.h"
+namespace lyx {
+namespace frontend {
 
 class xformsBC : public GuiBC<FL_OBJECT, FL_OBJECT> {
 public:
        ///
-       xformsBC(string const &, string const &);
+       xformsBC(ButtonController const &,
+                std::string const & = _("Cancel"), std::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 *, std::string const & label) const;
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif // XFORMSBC_H