]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfunc.h
remove more forms.h cruft
[lyx.git] / src / lyxfunc.h
index e9ad1d6b7d1cbcdd692623d481bacd51c4604751..0572daf6bbf69ccbe00b510d52564979b26c1a29 100644 (file)
@@ -8,10 +8,10 @@
 #pragma interface
 #endif
 
-#include FORMS_H_LOCATION
 #include "commandtags.h"
+#include "func_status.h"
 #include "kbsequence.h"
-#include "insets/lyxinset.h"
+#include "insets/inset.h"
 #include "LString.h"
 
 class LyXView;
@@ -25,19 +25,6 @@ class LyXView;
 */
 class LyXFunc : public SigC::Object {
 public:
-       /// The status of a function.
-       enum func_status {
-               /// No problem
-               OK = 0,
-               ///
-               Unknown = 1,
-               /// Command cannot be executed
-               Disabled = 2,
-               ///
-               ToggleOn = 4,
-               ///
-               ToggleOff = 8
-       };
        ///
        explicit
        LyXFunc(LyXView *);
@@ -59,9 +46,10 @@ public:
 
        /// we need one internall which is called from inside LyXAction and
        /// can contain the string argument.
-       func_status getStatus(int ac) const;
+       func_status::value_type getStatus(int ac) const;
        ///
-       func_status getStatus(int ac, string const & not_to_use_arg) const;
+       func_status::value_type getStatus(int ac, 
+                                         string const & not_to_use_arg) const;
        
        /// The last key was meta
        bool wasMetaKey() const;
@@ -185,11 +173,4 @@ void LyXFunc::setHintMessage(bool hm)
        show_sc = hm;
 }
 
-///
-inline
-void operator|=(LyXFunc::func_status & fs, LyXFunc::func_status f)
-{
-       fs = static_cast<LyXFunc::func_status>(fs | f);
-}
-
 #endif