Salome HOME
eecd87a8b0efb28b73871af24e4992ca81d003a1
[modules/geom.git] / src / BuildGUI / BuildGUI_CompoundDlg.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.com
21 //
22 // File   : BuildGUI_CompoundDlg.cxx
23 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
24 //
25
26 #include "BuildGUI_CompoundDlg.h"
27
28 #include <DlgRef.h>
29 #include <GeometryGUI.h>
30 #include <GEOMBase.h>
31
32 #include <GEOMImpl_Types.hxx>
33
34 #include <SUIT_ResourceMgr.h>
35 #include <SUIT_Session.h>
36 #include <SalomeApp_Application.h>
37 #include <LightApp_SelectionMgr.h>
38
39 //=================================================================================
40 // class    : BuildGUI_CompoundDlg()
41 // purpose  : Constructs a BuildGUI_CompoundDlg which is a child of 'parent', with the 
42 //            name 'name' and widget flags set to 'f'.
43 //            The dialog will by default be modeless, unless you set 'modal' to
44 //            TRUE to construct a modal dialog.
45 //=================================================================================
46 BuildGUI_CompoundDlg::BuildGUI_CompoundDlg( GeometryGUI* theGeometryGUI, QWidget* parent )
47   : GEOMBase_Skeleton( theGeometryGUI, parent )
48 {
49   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_BUILD_COMPOUND" ) ) );
50   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
51
52   setWindowTitle( tr( "GEOM_COMPOUND_TITLE" ) );
53
54   /***************************************************************/
55   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_COMPOUND" ) );
56   mainFrame()->RadioButton1->setIcon( image0 );
57   mainFrame()->RadioButton2->setAttribute( Qt::WA_DeleteOnClose );
58   mainFrame()->RadioButton2->close();
59   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
60   mainFrame()->RadioButton3->close();
61
62   GroupShapes = new DlgRef_1Sel( centralWidget() );
63
64   GroupShapes->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) );
65   GroupShapes->TextLabel1->setText( tr( "GEOM_OBJECTS" ) );
66   GroupShapes->PushButton1->setIcon( image1 );
67   GroupShapes->LineEdit1->setReadOnly( true );
68
69   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
70   layout->setMargin( 0 ); layout->setSpacing( 6 );
71   layout->addWidget( GroupShapes );
72   /***************************************************************/
73
74   setHelpFileName("create_compound_page.html");
75
76   /* Initialisations */
77   Init();
78 }
79
80
81 //=================================================================================
82 // function : ~BuildGUI_CompoundDlg()
83 // purpose  : Destroys the object and frees any allocated resources
84 //=================================================================================
85 BuildGUI_CompoundDlg::~BuildGUI_CompoundDlg()
86 {
87   // no need to delete child widgets, Qt does it all for us
88 }
89
90
91 //=================================================================================
92 // function : Init()
93 // purpose  :
94 //=================================================================================
95 void BuildGUI_CompoundDlg::Init()
96 {
97   /* init variables */
98   myEditCurrentArgument = GroupShapes->LineEdit1;
99   GroupShapes->LineEdit1->setReadOnly( true );
100   
101   myOkShapes = false;
102
103   mainFrame()->GroupBoxPublish->show();
104
105   /* signals and slots connections */
106   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
107   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
108   connect( GroupShapes->PushButton1, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
109   connect( ( (SalomeApp_Application*)(SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
110            SIGNAL(currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
111
112   globalSelection( GEOM_ALLSHAPES );
113
114   initName( tr( "GEOM_COMPOUND" ) );
115 }
116
117
118 //=================================================================================
119 // function : ClickOnOk()
120 // purpose  :
121 //=================================================================================
122 void BuildGUI_CompoundDlg::ClickOnOk()
123 {
124   if ( ClickOnApply() )
125     ClickOnCancel();
126 }
127
128
129 //=================================================================================
130 // function : ClickOnApply()
131 // purpose  :
132 //=================================================================================
133 bool BuildGUI_CompoundDlg::ClickOnApply()
134 {
135   if ( !onAccept() )
136     return false;
137
138   initName();
139   return true;
140 }
141
142
143 //=================================================================================
144 // function : SelectionIntoArgument()
145 // purpose  : Called when selection as changed or other case
146 //=================================================================================
147 void BuildGUI_CompoundDlg::SelectionIntoArgument()
148 {
149   myEditCurrentArgument->setText( "" );
150   QString aString = ""; /* name of selection */
151
152   myOkShapes = false;
153   int nbSel = GEOMBase::GetNameOfSelectedIObjects( selectedIO(), aString, true );
154   if ( nbSel == 0 ) 
155     return;
156   if ( nbSel != 1 )
157     aString = QString( "%1_objects").arg( nbSel );
158   
159   GEOMBase::ConvertListOfIOInListOfGO( selectedIO(), myShapes, true );
160   myEditCurrentArgument->setText( aString );
161   myOkShapes = true;
162 }
163
164
165 //=================================================================================
166 // function : SetEditCurrentArgument()
167 // purpose  :
168 //=================================================================================
169 void BuildGUI_CompoundDlg::SetEditCurrentArgument()
170 {
171   QPushButton* send = (QPushButton*)sender();
172   if ( send != GroupShapes->PushButton1 )
173     return;
174   
175   myEditCurrentArgument = GroupShapes->LineEdit1;
176   
177   myEditCurrentArgument->setFocus();
178   SelectionIntoArgument();
179 }
180
181
182 //=================================================================================
183 // function : ActivateThisDialog()
184 // purpose  :
185 //=================================================================================
186 void BuildGUI_CompoundDlg::ActivateThisDialog()
187 {
188   GEOMBase_Skeleton::ActivateThisDialog();
189   globalSelection( GEOM_ALLSHAPES );
190   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
191            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
192 }
193
194
195 //=================================================================================
196 // function : enterEvent()
197 // purpose  :
198 //=================================================================================
199 void BuildGUI_CompoundDlg::enterEvent(QEvent* e)
200 {
201   if ( !mainFrame()->GroupConstructors->isEnabled() )
202     ActivateThisDialog(); 
203 }
204
205 //=================================================================================
206 // function : createOperation
207 // purpose  :
208 //=================================================================================
209 GEOM::GEOM_IOperations_ptr BuildGUI_CompoundDlg::createOperation()
210 {
211   return getGeomEngine()->GetIShapesOperations( getStudyId() );
212 }
213
214 //=================================================================================
215 // function : isValid
216 // purpose  :
217 //=================================================================================
218 bool BuildGUI_CompoundDlg::isValid( QString& )
219 {
220   return myOkShapes;
221 }
222
223 //=================================================================================
224 // function : execute
225 // purpose  :
226 //=================================================================================
227 bool BuildGUI_CompoundDlg::execute( ObjectList& objects )
228 {
229   GEOM::GEOM_Object_var anObj;
230
231   anObj = GEOM::GEOM_IShapesOperations::_narrow( getOperation() )->MakeCompound( myShapes );
232
233   if ( !anObj->_is_nil() )
234     objects.push_back( anObj._retn() );
235
236   return true;
237 }
238
239 //=================================================================================
240 // function : restoreSubShapes
241 // purpose  :
242 //=================================================================================
243 void BuildGUI_CompoundDlg::restoreSubShapes( SALOMEDS::Study_ptr   theStudy,
244                                              SALOMEDS::SObject_ptr theSObject )
245 {
246   if ( mainFrame()->CheckBoxRestoreSS->isChecked() ) {
247     // empty list of arguments means that all arguments should be restored
248     getGeomEngine()->RestoreSubShapesSO( theStudy, theSObject, GEOM::ListOfGO(),
249                                          /*theFindMethod=*/GEOM::FSM_GetSame, // ? GEOM::FSM_GetInPlace
250                                          /*theInheritFirstArg=*/false );
251   }
252 }