]> SALOME platform Git repositories - modules/geom.git/blob - src/BlocksGUI/BlocksGUI_PropagateDlg.cxx
Salome HOME
Bug IPAL19270 : Qt4 porting. Control ?Result name? in ?Propagate? dialog box is empty...
[modules/geom.git] / src / BlocksGUI / BlocksGUI_PropagateDlg.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   : BlocksGUI_PropagateDlg.cxx
23 // Author : Vladimir KLYACHIN, Open CASCADE S.A.S. (vladimir.klyachin@opencascade.com)
24 //
25
26 #include "BlocksGUI_PropagateDlg.h"
27
28 #include <DlgRef.h>
29 #include <GeometryGUI.h>
30 #include <GEOMBase.h>
31 #include <GEOMImpl_Types.hxx>
32
33 #include <SUIT_Session.h>
34 #include <SUIT_ResourceMgr.h>
35 #include <SalomeApp_Application.h>
36 #include <LightApp_SelectionMgr.h>
37
38 #include <TColStd_MapOfInteger.hxx>
39
40 //=================================================================================
41 // class    : BlocksGUI_PropagateDlg()
42 // purpose  : Constructs a BlocksGUI_PropagateDlg  which is a child of 'parent', with the
43 //            name 'name' and widget flags set to 'f'.
44 //            The dialog will by default be modeless, unless you set 'modal' to
45 //            TRUE to construct a modal dialog.
46 //=================================================================================
47 BlocksGUI_PropagateDlg::BlocksGUI_PropagateDlg( GeometryGUI* theGeometryGUI, QWidget* parent )
48   : GEOMBase_Skeleton( theGeometryGUI, parent )
49 {
50   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_PROPAGATE" ) ) );
51   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
52
53   setWindowTitle( tr( "GEOM_PROPAGATE_TITLE" ) );
54
55   /***************************************************************/
56   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_PROPAGATE_TITLE" ) );
57   mainFrame()->RadioButton1->setIcon( image0 );
58   mainFrame()->RadioButton2->setAttribute( Qt::WA_DeleteOnClose );
59   mainFrame()->RadioButton2->close();
60   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
61   mainFrame()->RadioButton3->close();
62
63   myGrp = new DlgRef_1Sel( centralWidget() );
64   myGrp->GroupBox1->setTitle( tr( "GEOM_SELECTED_SHAPE" ) );
65   myGrp->TextLabel1->setText( tr( "GEOM_OBJECT" ) );
66   myGrp->PushButton1->setIcon( image1 );
67   myGrp->LineEdit1->setReadOnly( true );
68
69   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
70   layout->setMargin( 0 ); layout->setSpacing( 6 );
71   layout->addWidget( myGrp );
72
73   /***************************************************************/
74
75   setHelpFileName( "propagate_operation_page.html" );
76
77   Init();
78 }
79
80 //=================================================================================
81 // function : ~BlocksGUI_PropagateDlg()
82 // purpose  : Destroys the object and frees any allocated resources
83 //=================================================================================
84 BlocksGUI_PropagateDlg::~BlocksGUI_PropagateDlg()
85 {
86 }
87
88 //=================================================================================
89 // function : Init()
90 // purpose  :
91 //=================================================================================
92 void BlocksGUI_PropagateDlg::Init()
93 {
94   /* init variables */
95
96   myObject = GEOM::GEOM_Object::_nil();
97   mainFrame()->ResultName->setText( "" );
98   mainFrame()->GroupBoxName->hide();
99
100   //myGeomGUI->SetState( 0 );
101
102   /* signals and slots connections */
103   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
104   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
105
106   connect( myGrp->PushButton1, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
107   connect( myGrp->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
108
109   activateSelection();
110 }
111
112
113 //=================================================================================
114 // function : ClickOnOk()
115 // purpose  : Same than click on apply but close this dialog.
116 //=================================================================================
117 void BlocksGUI_PropagateDlg::ClickOnOk()
118 {
119   if ( ClickOnApply() )
120     ClickOnCancel();
121 }
122
123 //=================================================================================
124 // function : ClickOnApply()
125 // purpose  :
126 //=================================================================================
127 bool BlocksGUI_PropagateDlg::ClickOnApply()
128 {
129   if ( !onAccept() )
130     return false;
131
132   initName();
133
134   myGrp->LineEdit1->setText( "" );
135   myObject = GEOM::GEOM_Object::_nil();
136
137   activateSelection();
138
139   return true;
140 }
141
142
143 //=================================================================================
144 // function : SelectionIntoArgument()
145 // purpose  : Called when selection
146 //=================================================================================
147 void BlocksGUI_PropagateDlg::SelectionIntoArgument()
148 {
149   myGrp->LineEdit1->setText( "" );
150   myObject = GEOM::GEOM_Object::_nil();
151
152   if ( IObjectCount() == 1 ) {
153     Handle(SALOME_InteractiveObject) anIO = firstIObject();
154     Standard_Boolean aRes;
155     myObject = GEOMBase::ConvertIOinGEOMObject( anIO, aRes );
156     if ( aRes )
157       myGrp->LineEdit1->setText( GEOMBase::GetName( myObject ) );
158   }
159 }
160
161 //=================================================================================
162 // function : SetEditCurrentArgument()
163 // purpose  :
164 //=================================================================================
165 void BlocksGUI_PropagateDlg::SetEditCurrentArgument()
166 {
167   const QObject* send = sender();
168   if ( send == myGrp->PushButton1 )  {
169     myGrp->LineEdit1->setFocus();
170   }
171   activateSelection();
172 }
173
174
175 //=================================================================================
176 // function : LineEditReturnPressed()
177 // purpose  :
178 //=================================================================================
179 void BlocksGUI_PropagateDlg::LineEditReturnPressed()
180 {
181   const QObject* send = sender();
182   if ( send == myGrp->LineEdit1 ) {
183     GEOMBase_Skeleton::LineEditReturnPressed();
184   }
185 }
186
187
188 //=================================================================================
189 // function : ActivateThisDialog()
190 // purpose  :
191 //=================================================================================
192 void BlocksGUI_PropagateDlg::ActivateThisDialog()
193 {
194   GEOMBase_Skeleton::ActivateThisDialog();
195
196   myGrp->LineEdit1->setText( "" );
197   myObject = GEOM::GEOM_Object::_nil();
198
199   //myGeomGUI->SetState( 0 );
200   activateSelection();
201 }
202
203
204 //=================================================================================
205 // function : enterEvent()
206 // purpose  : Mouse enter onto the dialog to activate it
207 //=================================================================================
208 void BlocksGUI_PropagateDlg::enterEvent( QEvent* )
209 {
210   if ( !mainFrame()->GroupConstructors->isEnabled() )
211     ActivateThisDialog();
212 }
213
214 //=================================================================================
215 // function : createOperation
216 // purpose  :
217 //=================================================================================
218 GEOM::GEOM_IOperations_ptr BlocksGUI_PropagateDlg::createOperation()
219 {
220   return getGeomEngine()->GetIBlocksOperations( getStudyId() );
221 }
222
223 //=================================================================================
224 // function : isValid
225 // purpose  :
226 //=================================================================================
227 bool BlocksGUI_PropagateDlg::isValid( QString& )
228 {
229   return !myObject->_is_nil() ;
230 }
231
232 //=================================================================================
233 // function : execute
234 // purpose  :
235 //=================================================================================
236 bool BlocksGUI_PropagateDlg::execute( ObjectList& objects )
237 {
238   GEOM::ListOfGO_var aList = GEOM::GEOM_IBlocksOperations::_narrow( getOperation() )->Propagate( myObject );
239   mainFrame()->ResultName->setText( "" );
240
241   if ( !aList->length() )
242     return false;
243
244   for ( int i = 0, n = aList->length(); i < n; i++ ) {
245     objects.push_back( aList[i]._retn() );
246   }
247
248   return objects.size() > 0;
249 }
250
251 //=================================================================================
252 // function : activateSelection
253 // purpose  : Activate selection
254 //=================================================================================
255 void BlocksGUI_PropagateDlg::activateSelection()
256 {
257   TColStd_MapOfInteger aMap;
258   aMap.Add( GEOM_SOLID );
259   aMap.Add( GEOM_COMPOUND );
260   globalSelection( aMap );
261   if ( myObject->_is_nil() ) {
262     SelectionIntoArgument();
263   }
264   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
265            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
266 }
267
268 //================================================================
269 // Function : getFather
270 // Purpose  : Get father object for object to be added in study
271 //            ( called with addInStudy method )
272 //================================================================
273 GEOM::GEOM_Object_ptr BlocksGUI_PropagateDlg::getFather( GEOM::GEOM_Object_ptr )
274 {
275   return myObject;
276 }