Salome HOME
Update comments
[modules/gui.git] / src / SUIT / SUIT_ActionOperation.h
index 8fc3139f57f0cf4c6d9323d95315fa33135a10d9..90ee853378245ce7da3a3118f44249b07116eca9 100644 (file)
@@ -5,6 +5,7 @@
 
 class QtxAction;
 
+/*!Provide support QtxAction*/
 class SUIT_EXPORT SUIT_ActionOperation : public SUIT_Operation
 {
        Q_OBJECT
@@ -15,19 +16,21 @@ public:
 
        QtxAction*   action() const;
 
-       /** @name GUI management*/ //@{
-  virtual void setAction( const QString& text, const QIconSet& icon, const QString& menuText,
-                          QKeySequence accel, QObject* parent, const char* name = 0, bool toggle = false );
+       /** @name GUI management*/
+       //@{
+       virtual void setAction( const QString& text, const QIconSet& icon, const QString& menuText,
+                               QKeySequence accel, QObject* parent, const char* name = 0, bool toggle = false );
 
-  virtual void setAction( const QString& text, const QString& menuText, QKeySequence accel,
-                          QObject* parent, const char* name = 0, bool toggle = false );
+       virtual void setAction( const QString& text, const QString& menuText, QKeySequence accel,
+                               QObject* parent, const char* name = 0, bool toggle = false );
        virtual void setAction( QtxAction* theAction );
        
-  bool         addTo( QWidget* theWidget );
-  bool         addTo( QWidget* theWidget, int thePos );
-
-  void         setStatusTip( const QString& theTip );//@}
-
+       bool         addTo( QWidget* theWidget );
+       bool         addTo( QWidget* theWidget, int thePos );
+       
+       void         setStatusTip( const QString& theTip );
+       //@}
+       
 private:
        QtxAction*   myAction;