]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/ButtonPolicies.h
try this for distinguishing inner and outer tabs
[lyx.git] / src / frontends / ButtonPolicies.h
index bc416a5287f05c066caa3c2fb57b040ee68bc65c..2bbcbb4cd4bd23252f1b671095842e9246bce447 100644 (file)
@@ -23,6 +23,8 @@
 #include <vector>
 #include <boost/utility.hpp>
 
+#include "support/LOstream.h"
+
 /** An abstract base class for button policies.
     A state machine implementation of the various button policies used by the
     dialogs. Only the policy is implemented here.  Separate ButtonController
@@ -158,6 +160,22 @@ public:
 };
 
 
+inline
+std::ostream & operator<<(std::ostream & os, ButtonPolicy::State st)
+{
+       os << int(st);
+       return os;
+}
+
+
+inline
+std::ostream & operator<<(std::ostream & os, ButtonPolicy::SMInput smi)
+{
+       os << int(smi);
+       return os;
+}
+
+
 //--------------------- Actual Policy Classes -----------------------------
 
 /** Ok and Cancel buttons for dialogs with read-only operation.
@@ -171,7 +189,7 @@ public:
        ///
        OkCancelPolicy();
        ///
-       virtual ~OkCancelPolicy() {}
+       //virtual ~OkCancelPolicy() {}
        
        /// Trigger a transition with this input.
        virtual void input(SMInput);
@@ -198,13 +216,14 @@ private:
        StateMachine state_machine_;
 };
 
-
 /** Ok and Cancel buttons for dialogs where read-only operation is blocked.
     The state machine design for this policy allows changes to occur within
     the dialog while a file is read-only -- the okay button is disabled until
     a read-write input is given.  When the file is made read-write the dialog
-    will then be in the correct state (as if the file had always been read-write).
-    Note: This scheme supports the relabelling of Cancel to Close and vice versa.
+    will then be in the correct state (as if the file had always been
+    read-write).
+    Note: This scheme supports the relabelling of Cancel to Close
+    and vice versa.
     This is based on the value of the bool state of the Button::CANCEL.
     true == Cancel, false == Close
  */
@@ -213,7 +232,7 @@ public:
        ///
        OkCancelReadOnlyPolicy();
        ///
-       virtual ~OkCancelReadOnlyPolicy() {}
+       //virtual ~OkCancelReadOnlyPolicy() {}
        
        /// Trigger a transition with this input.
        virtual void input(SMInput);
@@ -238,16 +257,18 @@ private:
 };
 
 
-/** Ok, Apply and Cancel buttons for dialogs where read-only operation is blocked.
+/** Ok, Apply and Cancel buttons for dialogs where read-only operation
+    is blocked.
     Repeated Apply are not allowed.  Likewise,  Ok cannot follow Apply without
-    some valid input. That is, the dialog contents must change between each Apply
-    or Apply and Ok.
+    some valid input. That is, the dialog contents must change between
+    each Apply or Apply and Ok.
     The state machine design for this policy allows changes to occur within
     the dialog while a file is read-only -- the Ok+Apply buttons are disabled
     until a read-write input is given.  When the file is made read-write the
     dialog will then be in the correct state (as if the file had always been
     read-write).
-    Note: This scheme supports the relabelling of Cancel to Close and vice versa.
+    Note: This scheme supports the relabelling of Cancel to Close
+    and vice versa.
     This is based on the value of the bool state of the Button::CANCEL.
     true == Cancel, false == Close
  */
@@ -257,7 +278,7 @@ public:
        ///
        NoRepeatedApplyReadOnlyPolicy();
        ///
-       virtual ~NoRepeatedApplyReadOnlyPolicy() {}
+       //virtual ~NoRepeatedApplyReadOnlyPolicy() {}
        
        /// Trigger a transition with this input.
        virtual void input(SMInput);
@@ -282,14 +303,16 @@ private:
 };
 
 
-/** Ok, Apply and Cancel buttons for dialogs where read-only operation is blocked.
+/** Ok, Apply and Cancel buttons for dialogs where read-only
+    operation is blocked.
     Repeated Apply is allowed.  Likewise,  Ok can follow Apply.
     The state machine design for this policy allows changes to occur within
     the dialog while a file is read-only -- the Ok+Apply buttons are disabled
     until a read-write input is given.  When the file is made read-write the
     dialog will then be in the correct state (as if the file had always been
     read-write).
-    Note: This scheme supports the relabelling of Cancel to Close and vice versa.
+    Note: This scheme supports the relabelling of Cancel to Close
+    and vice versa.
     This is based on the value of the bool state of the Button::CANCEL.
     true == Cancel, false == Close
  */
@@ -298,7 +321,7 @@ public:
        ///
        OkApplyCancelReadOnlyPolicy();
        ///
-       virtual ~OkApplyCancelReadOnlyPolicy() {}
+       //virtual ~OkApplyCancelReadOnlyPolicy() {}
        
        /// Trigger a transition with this input.
        virtual void input(SMInput);
@@ -324,7 +347,8 @@ private:
 
 
 /** Ok, Apply and Cancel buttons for dialogs where repeated Apply is allowed.
-    Note: This scheme supports the relabelling of Cancel to Close and vice versa.
+    Note: This scheme supports the relabelling of Cancel to Close
+    and vice versa.
     This is based on the value of the bool state of the Button::CANCEL.
     true == Cancel, false == Close
  */
@@ -333,7 +357,7 @@ public:
        ///
        OkApplyCancelPolicy();
        ///
-       virtual ~OkApplyCancelPolicy() {}
+       //virtual ~OkApplyCancelPolicy() {}
        
        /// Trigger a transition with this input.
        virtual void input(SMInput);
@@ -356,7 +380,8 @@ private:
 
 
 /** Ok, Apply and Cancel buttons for dialogs with no repeated Apply.
-    Note: This scheme supports the relabelling of Cancel to Close and vice versa.
+    Note: This scheme supports the relabelling of Cancel to Close
+    and vice versa.
     This is based on the value of the bool state of the Button::CANCEL.
     true == Cancel, false == Close
  */
@@ -365,7 +390,7 @@ public:
        ///
        NoRepeatedApplyPolicy();
        ///
-       virtual ~NoRepeatedApplyPolicy() {}
+       //virtual ~NoRepeatedApplyPolicy() {}
        
        /// Trigger a transition with this input.
        virtual void input(SMInput);
@@ -389,7 +414,8 @@ private:
 
 /** Defines the policy used by the Preferences dialog.
     Four buttons: Ok (Save), Apply, Cancel/Close, Restore.
-    Note: This scheme supports the relabelling of Cancel to Close and vice versa.
+    Note: This scheme supports the relabelling of Cancel to Close
+    and vice versa.
     This is based on the value of the bool state of the Button::CANCEL.
     true == Cancel, false == Close
  */
@@ -398,7 +424,7 @@ public:
        ///
        PreferencesPolicy();
        ///
-       virtual ~PreferencesPolicy() {}
+       //virtual ~PreferencesPolicy() {}
        
        /// Trigger a transition with this input.
        virtual void input(SMInput);
@@ -428,7 +454,7 @@ private:
  */
 class IgnorantPolicy : public ButtonPolicy {
 public:
-       virtual ~IgnorantPolicy() {}
+       //virtual ~IgnorantPolicy() {}
        
        /// Trigger a transition with this input.
        virtual void input(SMInput) {}