]> SALOME platform Git repositories - modules/geom.git/blob - src/BuildGUI/BuildGUI_SolidDlg.cxx
Salome HOME
d47526194c2cb3188e29b85345a0f36a7e0d1ff7
[modules/geom.git] / src / BuildGUI / BuildGUI_SolidDlg.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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : BuildGUI_SolidDlg.cxx
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header: 
28
29 using namespace std;
30 #include "BuildGUI_SolidDlg.h"
31
32 #include "BuildGUI.h"
33 #include "QAD_Desktop.h"
34
35 //=================================================================================
36 // class    : BuildGUI_SolidDlg()
37 // purpose  : Constructs a BuildGUI_SolidDlg which is a child of 'parent', with the 
38 //            name 'name' and widget flags set to 'f'.
39 //            The dialog will by default be modeless, unless you set 'modal' to
40 //            TRUE to construct a modal dialog.
41 //=================================================================================
42 BuildGUI_SolidDlg::BuildGUI_SolidDlg(QWidget* parent, const char* name, BuildGUI* theBuildGUI, SALOME_Selection* Sel, bool modal, WFlags fl)
43   :GEOMBase_Skeleton(parent, name, Sel, modal, WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
44 {
45   QPixmap image0(QAD_Desktop::getResourceManager()->loadPixmap("GEOM", tr("ICON_DLG_BUILD_SOLID")));
46   QPixmap image1(QAD_Desktop::getResourceManager()->loadPixmap("GEOM", tr("ICON_SELECT")));
47
48   setCaption(tr("GEOM_SOLID_TITLE"));
49     
50   /***************************************************************/
51   GroupConstructors->setTitle(tr("GEOM_SOLID"));
52   RadioButton1->setPixmap(image0);
53   RadioButton2->close(TRUE);
54   RadioButton3->close(TRUE);
55
56   GroupSolid = new DlgRef_1Sel_QTD(this, "GroupSolid");
57   GroupSolid->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
58   GroupSolid->TextLabel1->setText(tr("GEOM_OBJECTS"));
59   GroupSolid->PushButton1->setPixmap(image1);
60   
61   Layout1->addWidget(GroupSolid, 1, 0);
62   /***************************************************************/
63
64   /* Initialisations */
65   myBuildGUI = theBuildGUI;
66   Init();
67 }
68
69
70 //=================================================================================
71 // function : ~BuildGUI_SolidDlg()
72 // purpose  : Destroys the object and frees any allocated resources
73 //=================================================================================
74 BuildGUI_SolidDlg::~BuildGUI_SolidDlg()
75 {
76     // no need to delete child widgets, Qt does it all for us
77 }
78
79
80 //=================================================================================
81 // function : Init()
82 // purpose  :
83 //=================================================================================
84 void BuildGUI_SolidDlg::Init()
85 {
86   /* init variables */
87   myEditCurrentArgument = GroupSolid->LineEdit1;
88   myOkListShapes = false;
89
90   myShellFilter = new GEOM_ShapeTypeFilter(TopAbs_SHELL, myGeom);
91   /* filter for next selection */
92   mySelection->AddFilter(myShellFilter);
93
94   /* signals and slots connections */
95   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
96   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
97
98   connect(GroupSolid->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
99
100   connect(mySelection, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
101  
102   /* displays Dialog */
103   GroupSolid->show();
104   this->show();
105
106   return;
107 }
108
109
110 //=================================================================================
111 // function : ClickOnOk()
112 // purpose  :
113 //=================================================================================
114 void BuildGUI_SolidDlg::ClickOnOk()
115 {
116   this->ClickOnApply();
117   ClickOnCancel();
118   return ;
119 }
120
121 //=================================================================================
122 // function : ClickOnApply()
123 // purpose  :
124 //=================================================================================
125 void BuildGUI_SolidDlg::ClickOnApply()
126 {
127   QAD_Application::getDesktop()->putInfo(tr("")); 
128
129   if(myOkListShapes)  
130     myBuildGUI->MakeSolidAndDisplay(myListShapes);
131
132   return;
133 }
134
135
136 //=================================================================================
137 // function : SelectionIntoArgument()
138 // purpose  : Called when selection as changed or other case
139 //=================================================================================
140 void BuildGUI_SolidDlg::SelectionIntoArgument()
141 {
142   myEditCurrentArgument->setText("");
143   QString aString = "";
144
145   myOkListShapes = false;
146   int nbSel = mySelection->IObjectCount();
147   if (nbSel == 0) 
148     return;
149
150   aString = tr("%1_objects").arg(nbSel);
151   
152   myGeomBase->ConvertListOfIOInListOfIOR(mySelection->StoredIObjects(), myListShapes);
153   myEditCurrentArgument->setText(aString);
154   myOkListShapes = true;
155
156   return ;
157 }
158
159 //=================================================================================
160 // function : SetEditCurrentArgument()
161 // purpose  :
162 //=================================================================================
163 void BuildGUI_SolidDlg::SetEditCurrentArgument()
164 {
165   QPushButton* send = (QPushButton*)sender();
166   mySelection->ClearFilters() ;
167   GroupSolid->LineEdit1->setFocus();
168   myEditCurrentArgument = GroupSolid->LineEdit1;
169   mySelection->AddFilter(myShellFilter);
170   SelectionIntoArgument();
171   return;
172 }
173
174
175 //=================================================================================
176 // function : ActivateThisDialog()
177 // purpose  :
178 //=================================================================================
179 void BuildGUI_SolidDlg::ActivateThisDialog()
180 {
181   GEOMBase_Skeleton::ActivateThisDialog();
182   connect(mySelection, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
183   mySelection->AddFilter(myShellFilter);
184   return;
185 }
186
187
188 //=================================================================================
189 // function : enterEvent()
190 // purpose  :
191 //=================================================================================
192 void BuildGUI_SolidDlg::enterEvent(QEvent* e)
193 {
194   if (GroupConstructors->isEnabled())
195     return;  
196   this->ActivateThisDialog();
197   return;
198 }