Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / GroupGUI / GroupGUI.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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.com
21 //
22
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : GroupGUI.cxx
25 // Author : Sergey ANIKIN, Open CASCADE S.A.S. (sergey.anikin@opencascade.com)
26 //
27 #include "GroupGUI.h"
28 #include "GroupGUI_GroupDlg.h" 
29
30 #include <GeometryGUI.h>
31 #include "GeometryGUI_Operations.h"
32
33 #include <GEOMBase.h>
34 #include <GEOMImpl_Types.hxx>
35
36 #include <SUIT_Session.h>
37 #include <SUIT_Desktop.h>
38 #include <SUIT_MessageBox.h>
39 #include <SalomeApp_Application.h>
40 #include <SalomeApp_Study.h>
41 #include <LightApp_SelectionMgr.h>
42
43 //=======================================================================
44 // function : GroupGUI()
45 // purpose  : Constructor
46 //=======================================================================
47 GroupGUI::GroupGUI( GeometryGUI* parent )
48   : GEOMGUI( parent )
49 {
50 }
51
52 //=======================================================================
53 // function : ~GroupGUI()
54 // purpose  : Destructor
55 //=======================================================================
56 GroupGUI::~GroupGUI()
57 {
58 }
59
60
61 //=======================================================================
62 // function : OnGUIEvent()
63 // purpose  : 
64 //=======================================================================
65 bool GroupGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
66 {
67   SalomeApp_Application* app = getGeometryGUI()->getApp();
68   if ( !app ) return false;
69
70   getGeometryGUI()->EmitSignalDeactivateDialog();
71
72   QDialog* aDlg = 0;
73
74   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
75   if ( !appStudy ) return false;
76   _PTR(Study) aStudy = appStudy->studyDS();
77
78   if ( aStudy->GetProperties()->IsLocked() ) {
79     SUIT_MessageBox::warning( parent,
80                               tr( "WRN_WARNING" ), 
81                               tr( "WRN_STUDY_LOCKED" ) );
82     return false;
83   }
84
85   switch ( theCommandID ) {
86   case GEOMOp::OpGroupCreate: 
87   case GEOMOp::OpGroupCreatePopup: // CREATE GROUP
88     aDlg = new GroupGUI_GroupDlg( GroupGUI_GroupDlg::CreateGroup, getGeometryGUI(), parent ); 
89     break;
90   case GEOMOp::OpGroupEdit:  // EDIT GROUP
91     {
92       SALOME_ListIO aList;
93       aList.Clear();
94
95       LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
96       if ( aSelMgr )
97         aSelMgr->selectedObjects( aList );
98
99       if ( aList.Extent() == 1 ) {
100         GEOM::GEOM_Object_var anObj =
101           GEOMBase::ConvertIOinGEOMObject( aList.First() );
102
103         if ( !CORBA::is_nil( anObj ) && anObj->GetType() == GEOM_GROUP ) {
104           aDlg = new GroupGUI_GroupDlg( GroupGUI_GroupDlg::EditGroup, getGeometryGUI(), parent ); 
105           break;
106         }
107       }
108       SUIT_MessageBox::warning( parent, tr( "WRN_WARNING" ), tr( "NO_GROUP" ) );
109       break;
110     }
111   default: 
112     app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); 
113     break;
114   }
115
116   if ( aDlg ) {
117     aDlg->updateGeometry();
118     aDlg->resize( aDlg->minimumSizeHint() );
119     aDlg->show();
120   }
121
122   return true;
123 }
124
125 //=====================================================================================
126 // EXPORTED METHODS
127 //=====================================================================================
128 extern "C"
129 {
130 #ifdef WIN32
131   __declspec( dllexport )
132 #endif
133   GEOMGUI* GetLibGUI( GeometryGUI* p )
134   {
135     return new GroupGUI( p );
136   }
137 }