Salome HOME
Fix for a bug: a command with id 8001 is the same as 800 (create group) but called...
[modules/geom.git] / src / GroupGUI / GroupGUI.cxx
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : GroupGUI.cxx
25 //  Author : Sergey ANIKIN
26 //  Module : GEOM
27 //  $Header$
28
29 #include "GroupGUI.h"
30 #include "GroupGUI_GroupDlg.h" 
31
32 #include "GEOMImpl_Types.hxx"
33
34 #include "SUIT_Session.h"
35 #include "SUIT_Desktop.h"
36 #include "SUIT_MessageBox.h"
37 #include "SalomeApp_Application.h"
38 #include "SalomeApp_Study.h"
39 #include "SalomeApp_SelectionMgr.h"
40
41 GroupGUI* GroupGUI::myGUIObject = 0;
42
43 //=======================================================================
44 // function : GetGroupGUI()
45 // purpose  : Get the only GroupGUI object [ static ]
46 //=======================================================================
47 GroupGUI* GroupGUI::GetGroupGUI(GeometryGUI* parent)
48 {
49   if ( myGUIObject == 0 ) 
50     myGUIObject = new GroupGUI(parent);
51
52   return myGUIObject;
53 }
54
55 //=======================================================================
56 // function : GroupGUI()
57 // purpose  : Constructor
58 //=======================================================================
59 GroupGUI::GroupGUI(GeometryGUI* parent)
60 : GEOMGUI(parent)
61 {
62 }
63
64
65 //=======================================================================
66 // function : ~GroupGUI()
67 // purpose  : Destructor
68 //=======================================================================
69 GroupGUI::~GroupGUI()
70 {
71 }
72
73
74 //=======================================================================
75 // function : OnGUIEvent()
76 // purpose  : 
77 //=======================================================================
78 bool GroupGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
79 {
80   getGeometryGUI()->EmitSignalDeactivateDialog();
81   
82   QDialog* aDlg = NULL;
83
84   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( SUIT_Session::session()->activeApplication()->activeStudy() );
85   if ( !appStudy ) return false;
86   _PTR(Study) aStudy = appStudy->studyDS();
87   
88   if ( aStudy->GetProperties()->IsLocked() ) {
89     SUIT_MessageBox::warn1 ( parent,
90                              QObject::tr("WRN_WARNING"), 
91                              QObject::tr("WRN_STUDY_LOCKED"),
92                              QObject::tr("BUT_OK") );
93     return false;
94   }
95
96   switch ( theCommandID ) {
97   case 800: 
98   case 8001:
99     aDlg = new GroupGUI_GroupDlg( GroupGUI_GroupDlg::CreateGroup, parent, ""); 
100     break;
101   case 801: 
102     {
103       SALOME_ListIO aList;
104       aList.Clear();
105   
106       SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
107       if ( app ) {
108         SalomeApp_SelectionMgr* aSelMgr = app->selectionMgr();
109         if ( aSelMgr )
110           aSelMgr->selectedObjects( aList );
111       }
112
113       if ( aList.Extent() == 1 ) {
114         Standard_Boolean aResult = Standard_False;
115         GEOM::GEOM_Object_var anObj =
116           GEOMBase::ConvertIOinGEOMObject( aList.First(), aResult );
117
118         if ( aResult && !CORBA::is_nil( anObj ) && anObj->GetType() == GEOM_GROUP ) {
119           aDlg = new GroupGUI_GroupDlg( GroupGUI_GroupDlg::EditGroup,   parent, "" ); 
120           break;
121         }
122       }
123       SUIT_MessageBox::warn1 ( parent,
124                                tr("WRN_WARNING"), 
125                                tr("NO_GROUP"),
126                                tr("BUT_OK") );
127       break;
128     }
129   default: 
130     SUIT_Session::session()->activeApplication()->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); 
131     break;
132   }
133   
134   if ( aDlg != NULL )
135     aDlg->show();
136   
137   return true;
138 }
139
140 //=====================================================================================
141 // EXPORTED METHODS
142 //=====================================================================================
143 extern "C"
144 {
145   GEOMGUI* GetLibGUI(GeometryGUI* p)
146   {
147     return GroupGUI::GetGroupGUI(p);
148   }
149 }