X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFuncStatus.h;h=4a632dc870fa2345717a5deeac67d5807a4d77c1;hb=c999e35e54eca6e0b736a034d415b6a90a866bc0;hp=054b7db81849ff565dbb36f1d237984aea58b4fa;hpb=a2f413c0356dcd54ca3eb7141f073312918fdc60;p=lyx.git diff --git a/src/FuncStatus.h b/src/FuncStatus.h index 054b7db818..4a632dc870 100644 --- a/src/FuncStatus.h +++ b/src/FuncStatus.h @@ -12,7 +12,10 @@ #ifndef FUNC_STATUS_H #define FUNC_STATUS_H -#include +#include "support/docstring.h" + + +namespace lyx { /// The status of a function. @@ -41,7 +44,7 @@ private: unsigned int v_; - std::string message_; + docstring message_; public: /// @@ -49,14 +52,12 @@ public: /// void clear(); /// - void operator|=(FuncStatus const & f); - /// - void unknown(bool b); + void setUnknown(bool b); /// bool unknown() const; /// - void enabled(bool b); + void setEnabled(bool b); /// tells whether it can be invoked (otherwise it will be grayed-out). bool enabled() const; @@ -64,12 +65,15 @@ public: void setOnOff(bool b); /// tells whether the menu item should have a check mark /// (or the toolbar icon should be pushed). - bool onoff(bool b) const; + bool onOff(bool b) const; /// - void message(std::string const & m); + void message(docstring const & m); /// - std::string const & message() const; + docstring const & message() const; }; + +} // namespace lyx + #endif