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