Salome HOME
Merge from BR_Dev_For_4_0 branch (from tag mergeto_BR_QT4_Dev_17Jan08)
[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   /* signals and slots connections */
104   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
105   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
106   connect( GroupShapes->PushButton1, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
107   connect( ( (SalomeApp_Application*)(SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
108            SIGNAL(currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
109
110   globalSelection( GEOM_ALLSHAPES );
111
112   initName( tr( "GEOM_COMPOUND" ) );
113 }
114
115
116 //=================================================================================
117 // function : ClickOnOk()
118 // purpose  :
119 //=================================================================================
120 void BuildGUI_CompoundDlg::ClickOnOk()
121 {
122   if ( ClickOnApply() )
123     ClickOnCancel();
124 }
125
126
127 //=================================================================================
128 // function : ClickOnApply()
129 // purpose  :
130 //=================================================================================
131 bool BuildGUI_CompoundDlg::ClickOnApply()
132 {
133   if ( !onAccept() )
134     return false;
135
136   initName();
137   return true;
138 }
139
140
141 //=================================================================================
142 // function : SelectionIntoArgument()
143 // purpose  : Called when selection as changed or other case
144 //=================================================================================
145 void BuildGUI_CompoundDlg::SelectionIntoArgument()
146 {
147   myEditCurrentArgument->setText( "" );
148   QString aString = ""; /* name of selection */
149
150   myOkShapes = false;
151   int nbSel = GEOMBase::GetNameOfSelectedIObjects( selectedIO(), aString, true );
152   if ( nbSel == 0 ) 
153     return;
154   if ( nbSel != 1 )
155     aString = QString( "%1_objects").arg( nbSel );
156   
157   GEOMBase::ConvertListOfIOInListOfGO( selectedIO(), myShapes, true );
158   myEditCurrentArgument->setText( aString );
159   myOkShapes = true;
160 }
161
162
163 //=================================================================================
164 // function : SetEditCurrentArgument()
165 // purpose  :
166 //=================================================================================
167 void BuildGUI_CompoundDlg::SetEditCurrentArgument()
168 {
169   QPushButton* send = (QPushButton*)sender();
170   if ( send != GroupShapes->PushButton1 )
171     return;
172   
173   myEditCurrentArgument = GroupShapes->LineEdit1;
174   
175   myEditCurrentArgument->setFocus();
176   SelectionIntoArgument();
177 }
178
179
180 //=================================================================================
181 // function : ActivateThisDialog()
182 // purpose  :
183 //=================================================================================
184 void BuildGUI_CompoundDlg::ActivateThisDialog()
185 {
186   GEOMBase_Skeleton::ActivateThisDialog();
187   globalSelection( GEOM_ALLSHAPES );
188   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
189            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
190 }
191
192
193 //=================================================================================
194 // function : enterEvent()
195 // purpose  :
196 //=================================================================================
197 void BuildGUI_CompoundDlg::enterEvent(QEvent* e)
198 {
199   if ( !mainFrame()->GroupConstructors->isEnabled() )
200     ActivateThisDialog(); 
201 }
202
203 //=================================================================================
204 // function : createOperation
205 // purpose  :
206 //=================================================================================
207 GEOM::GEOM_IOperations_ptr BuildGUI_CompoundDlg::createOperation()
208 {
209   return getGeomEngine()->GetIShapesOperations( getStudyId() );
210 }
211
212 //=================================================================================
213 // function : isValid
214 // purpose  :
215 //=================================================================================
216 bool BuildGUI_CompoundDlg::isValid( QString& )
217 {
218   return myOkShapes;
219 }
220
221 //=================================================================================
222 // function : execute
223 // purpose  :
224 //=================================================================================
225 bool BuildGUI_CompoundDlg::execute( ObjectList& objects )
226 {
227   GEOM::GEOM_Object_var anObj;
228
229   anObj = GEOM::GEOM_IShapesOperations::_narrow( getOperation() )->MakeCompound( myShapes );
230
231   if ( !anObj->_is_nil() )
232     objects.push_back( anObj._retn() );
233
234   return true;
235 }