]> SALOME platform Git repositories - modules/geom.git/blob - src/BuildGUI/BuildGUI_ShellDlg.cxx
Salome HOME
DCQ : Merge with Ecole_Ete_a6.
[modules/geom.git] / src / BuildGUI / BuildGUI_ShellDlg.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_ShellDlg.cxx
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header: 
28
29 using namespace std;
30 #include "BuildGUI_ShellDlg.h"
31
32 #include "BuildGUI.h"
33 #include "QAD_Desktop.h"
34
35 //=================================================================================
36 // class    : BuildGUI_ShellDlg()
37 // purpose  : Constructs a BuildGUI_ShellDlg 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_ShellDlg::BuildGUI_ShellDlg(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_SHELL")));
46   QPixmap image1(QAD_Desktop::getResourceManager()->loadPixmap("GEOM", tr("ICON_SELECT")));
47
48   setCaption(tr("GEOM_SHELL_TITLE"));
49     
50   /***************************************************************/
51   GroupConstructors->setTitle(tr("GEOM_SHELL"));
52   RadioButton1->setPixmap(image0);
53   RadioButton2->close(TRUE);
54   RadioButton3->close(TRUE);
55
56   GroupShell = new DlgRef_1Sel_QTD(this, "GroupShell");
57   GroupShell->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
58   GroupShell->TextLabel1->setText(tr("GEOM_OBJECTS"));
59   GroupShell->PushButton1->setPixmap(image1);
60   
61   Layout1->addWidget(GroupShell, 1, 0);
62   /***************************************************************/
63
64   /* Initialisations */
65   myBuildGUI = theBuildGUI;
66   Init();
67 }
68
69
70 //=================================================================================
71 // function : ~BuildGUI_ShellDlg()
72 // purpose  : Destroys the object and frees any allocated resources
73 //=================================================================================
74 BuildGUI_ShellDlg::~BuildGUI_ShellDlg()
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_ShellDlg::Init()
85 {
86   /* init variables */
87   myEditCurrentArgument = GroupShell->LineEdit1;
88   myOkListShapes = false;
89
90   myFaceFilter = new GEOM_ShapeTypeFilter(TopAbs_FACE, myGeom);
91   /* Filter for the next selection */
92   mySelection->AddFilter(myFaceFilter) ;
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(GroupShell->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
99
100   connect(mySelection, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
101
102   /* displays Dialog */
103   GroupShell->show();
104   this->show();
105
106   return;
107 }
108
109
110 //=================================================================================
111 // function : ClickOnOk()
112 // purpose  :
113 //=================================================================================
114 void BuildGUI_ShellDlg::ClickOnOk()
115 {
116   this->ClickOnApply();
117   ClickOnCancel();
118   return ;
119 }
120
121
122 //=================================================================================
123 // function : ClickOnApply()
124 // purpose  :
125 //=================================================================================
126 void BuildGUI_ShellDlg::ClickOnApply()
127 {
128   QAD_Application::getDesktop()->putInfo(tr(""));
129
130   if(myOkListShapes) 
131     myBuildGUI->MakeShellAndDisplay(myListShapes);
132   return;
133 }
134
135
136 //=================================================================================
137 // function : SelectionIntoArgument()
138 // purpose  : Called when selection as changed or other case
139 //=================================================================================
140 void BuildGUI_ShellDlg::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 //=================================================================================
161 // function : SetEditCurrentArgument()
162 // purpose  :
163 //=================================================================================
164 void BuildGUI_ShellDlg::SetEditCurrentArgument()
165 {
166   mySelection->ClearFilters();
167   GroupShell->LineEdit1->setFocus();
168   mySelection->AddFilter(myFaceFilter);
169   this->SelectionIntoArgument();
170   return;
171 }
172
173
174 //=================================================================================
175 // function : ActivateThisDialog()
176 // purpose  :
177 //=================================================================================
178 void BuildGUI_ShellDlg::ActivateThisDialog()
179 {
180   GEOMBase_Skeleton::ActivateThisDialog();
181   connect(mySelection, SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
182   mySelection->AddFilter(myFaceFilter);
183   return;
184 }
185
186
187 //=================================================================================
188 // function : enterEvent()
189 // purpose  :
190 //=================================================================================
191 void BuildGUI_ShellDlg::enterEvent(QEvent* e)
192 {
193   if(GroupConstructors->isEnabled())
194     return;  
195   this->ActivateThisDialog();
196   return;
197 }