1 // Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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, or (at your option) any later version.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File : GroupGUI.cxx
25 // Author : Sergey ANIKIN, Open CASCADE S.A.S. (sergey.anikin@opencascade.com)
28 #include "GroupGUI_GroupDlg.h"
29 #include "GroupGUI_BooleanDlg.h"
31 #include <GeometryGUI.h>
32 #include "GeometryGUI_Operations.h"
35 #include <GEOMImpl_Types.hxx>
37 #include <SUIT_Session.h>
38 #include <SUIT_Desktop.h>
39 #include <SUIT_MessageBox.h>
40 #include <SalomeApp_Application.h>
41 #include <SalomeApp_Study.h>
42 #include <LightApp_SelectionMgr.h>
44 //=======================================================================
45 // function : GroupGUI()
46 // purpose : Constructor
47 //=======================================================================
48 GroupGUI::GroupGUI (GeometryGUI* parent)
53 //=======================================================================
54 // function : ~GroupGUI()
55 // purpose : Destructor
56 //=======================================================================
62 //=======================================================================
63 // function : OnGUIEvent()
65 //=======================================================================
66 bool GroupGUI::OnGUIEvent (int theCommandID, SUIT_Desktop* parent)
68 SalomeApp_Application* app = getGeometryGUI()->getApp();
69 if (!app) return false;
71 getGeometryGUI()->EmitSignalDeactivateDialog();
75 SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(app->activeStudy());
76 if (!appStudy) return false;
77 _PTR(Study) aStudy = appStudy->studyDS();
79 if (aStudy->GetProperties()->IsLocked()) {
80 SUIT_MessageBox::warning(parent, tr("WRN_WARNING"), tr("WRN_STUDY_LOCKED"));
84 switch (theCommandID) {
85 case GEOMOp::OpGroupCreate:
86 case GEOMOp::OpGroupCreatePopup: // CREATE GROUP
87 aDlg = new GroupGUI_GroupDlg (GroupGUI_GroupDlg::CreateGroup, getGeometryGUI(), parent);
89 case GEOMOp::OpGroupEdit: // EDIT GROUP
94 LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
96 aSelMgr->selectedObjects(aList);
98 if (aList.Extent() == 1) {
99 GEOM::GEOM_Object_var anObj =
100 GEOMBase::ConvertIOinGEOMObject(aList.First());
102 if (!CORBA::is_nil(anObj) && anObj->GetType() == GEOM_GROUP) {
103 aDlg = new GroupGUI_GroupDlg (GroupGUI_GroupDlg::EditGroup, getGeometryGUI(), parent);
107 SUIT_MessageBox::warning(parent, tr("WRN_WARNING"), tr("NO_GROUP"));
110 case GEOMOp::OpGroupUnion: // UNION GROUPS
111 aDlg = new GroupGUI_BooleanDlg (GroupGUI_BooleanDlg::UNION, getGeometryGUI(), parent);
113 case GEOMOp::OpGroupIntersect: // INTERSECT GROUPS
114 aDlg = new GroupGUI_BooleanDlg (GroupGUI_BooleanDlg::INTERSECT, getGeometryGUI(), parent);
116 case GEOMOp::OpGroupCut: // CUT GROUPS
117 aDlg = new GroupGUI_BooleanDlg (GroupGUI_BooleanDlg::CUT, getGeometryGUI(), parent);
120 app->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
125 aDlg->updateGeometry();
126 aDlg->resize(aDlg->minimumSizeHint());
133 //=====================================================================================
135 //=====================================================================================
139 __declspec( dllexport )
141 GEOMGUI* GetLibGUI( GeometryGUI* p )
143 return new GroupGUI( p );