]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Roolback last changes
authorabd <abd@opencascade.com>
Thu, 9 Nov 2006 06:35:23 +0000 (06:35 +0000)
committerabd <abd@opencascade.com>
Thu, 9 Nov 2006 06:35:23 +0000 (06:35 +0000)
src/LightApp/LightApp_Dialog.cxx
src/LightApp/LightApp_Dialog.h

index 14d674a107c9e1c19148f6dd25c115a003ac6b81..27219f5f1d8f7a7c7159c3e1d183e47640428986 100644 (file)
@@ -807,39 +807,6 @@ void LightApp_Dialog::deactivateAll()
   }
 }
 
-
-//! Return toggle buttons on/off state
-LightApp_SimpleGuiStateMap LightApp_Dialog::getActiveState() const {
-
-    LightApp_SimpleGuiStateMap state;
-       ObjectMap::const_iterator anIt = myObjects.begin(),
-                                               aLast = myObjects.end();
-       for( ; anIt!=aLast; anIt++ )
-       {
-               QToolButton* btn = ( QToolButton* )anIt.data().myBtn;
-               const bool isOn = btn->isOn();
-               const int id = anIt.key();
-               state[id] = isOn;
-       }
-
-    return state;
-}
-
-/*! Restores the state of toggle buttons - 
-to activate the buttons, deactivated by deactivateAll()
-*/
-void LightApp_Dialog::restoreState(const LightApp_SimpleGuiStateMap& stateMap) {
-       LightApp_SimpleGuiStateMap::const_iterator it = stateMap.begin(),
-               aLast = stateMap.end();
-       for (; it != aLast; it++) {
-               int btnId = it.key();
-               bool btnOn = (bool) it.data();
-           if (btnOn) activateObject(btnId);
-       }
-}
-
-
-
 /*!
   Passes to widget name, type and id of selected object
   \param id - identificator of object selection widget
index 22cfa718874448337db09e475b8c5154acbca9ca..6e3b3b8a027f200e108857851c6116fb3d60b18d 100644 (file)
@@ -39,10 +39,6 @@ class SUIT_ResourceMgr;
 #pragma warning ( disable:4251 )
 #endif
 
-
-
-  typedef QMap<int, int>         LightApp_SimpleGuiStateMap;
-
 /*!
   \class LightApp_Dialog
   Base class for all LightApp dialogs.
@@ -59,7 +55,6 @@ public:
   typedef QValueList<int>        TypesList;
   typedef QMap<int,QStringList>  SelectedObjects;
 
-
   enum ObjectWg
   {
     Label   = 0x00000001,
@@ -159,15 +154,6 @@ public:
   //! Set all object selection buttons to inactive state
   void deactivateAll();
 
-  
-
-  //! Return toggle buttons on/off state
-  LightApp_SimpleGuiStateMap getActiveState() const;
-
-  //! Restores the state of toggle buttons - 
-  // to activate the buttons, deactivated by deactivateAll()
-  void restoreState(const LightApp_SimpleGuiStateMap&);
-  
 signals:
   //! selection in certain widget is changed
   void selectionChanged ( int );