Salome HOME
rnc: some code refactoring
[modules/geom.git] / src / EntityGUI / EntityGUI_PictureImportDlg.cxx
1 // Copyright (C) 2007-2011  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   : EntityGUI_PictureImportDlg.cxx
25 // Author : Renaud NEDELEC, Open CASCADE S.A.S.
26 //
27 #include "EntityGUI_PictureImportDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <SUIT_ResourceMgr.h>
34 #include <SUIT_Session.h>
35 #include <SalomeApp_Application.h>
36 #include <LightApp_SelectionMgr.h>
37
38 #include <TopoDS_Shape.hxx>
39 #include <TopoDS.hxx>
40
41 #include <GEOMImpl_Types.hxx>
42
43 #include <ShapeRec_FeatureDetector.hxx>
44
45 #include <QFileDialog>
46
47 //=================================================================================
48 // class    : EntityGUI_PictureImportDlg()
49 // purpose  : Constructs a EntityGUI_PictureImportDlg which is a child of 'parent', with the 
50 //            name 'name' and widget flags set to 'f'.
51 //            The dialog will by default be modeless, unless you set 'modal' to
52 //            TRUE to construct a modal dialog.
53 //=================================================================================
54 EntityGUI_PictureImportDlg::EntityGUI_PictureImportDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
55                                     bool modal, Qt::WindowFlags fl )
56   : GEOMBase_Skeleton( theGeometryGUI, parent, modal, fl )
57 {
58 //   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_LINE_2P" ) ) );
59   setWindowTitle( tr( "GEOM_IMPORT_PICT_TITLE" ) );
60   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_PICTURE" ) );
61 //   mainFrame()->RadioButton1->setIcon( image0 );
62 //   mainFrame()->RadioButton2->setIcon( image2 );
63
64   mainFrame()->RadioButton2->setAttribute(Qt::WA_DeleteOnClose);
65   mainFrame()->RadioButton2->close();
66   mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
67   mainFrame()->RadioButton3->close();
68
69   QGroupBox* GroupFileSel = new QGroupBox( centralWidget() );
70   GroupFileSel->setTitle( tr( "GEOM_FILE" ) );
71   QHBoxLayout* myFileSelGrpLayout = new QHBoxLayout(GroupFileSel );
72   myPushButton = new QPushButton( GroupFileSel );
73   myLineEdit = new QLineEdit( GroupFileSel );
74   myPushButton->setText("...");
75   
76   myFileSelGrpLayout->addWidget( myLineEdit, 1);
77   myFileSelGrpLayout->addWidget( myPushButton, 0);
78   
79   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
80   layout->setMargin( 0 ); layout->setSpacing( 6 );
81   layout->addWidget( GroupFileSel );
82
83 //   setHelpFileName( "import_picture_page.html" );
84
85   Init();
86 }
87
88
89 //=================================================================================
90 // function : ~EntityGUI_PictureImportDlg()
91 // purpose  : Destroys the object and frees any allocated resources
92 //=================================================================================
93 EntityGUI_PictureImportDlg::~EntityGUI_PictureImportDlg()
94 {  
95 }
96
97
98 //=================================================================================
99 // function : Init()
100 // purpose  :
101 //=================================================================================
102 void EntityGUI_PictureImportDlg::Init()
103 {
104   connect( buttonOk(),     SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
105   connect( buttonApply(),  SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
106   connect( myPushButton,   SIGNAL( clicked() ), this, SLOT( FileSelectionClicked() ) );
107   
108   resize(100,100);
109   
110   gp_Pnt aOrigin = gp_Pnt(0, 0, 0);
111   gp_Dir aDirZ = gp_Dir(0, 0, 1);
112   gp_Dir aDirX = gp_Dir(1, 0, 0);
113   
114   gp_Ax3 aGlobalCS = gp_Ax3(aOrigin, aDirZ, aDirX);
115   
116   myGeomGUI->SetWorkingPlane( aGlobalCS );
117   myGeomGUI->ActiveWorkingPlane();
118   
119   initName( tr( "GEOM_PICTURE" ) );
120 }
121
122 // =================================================================================
123 // function : FileSelectionClicked()
124 // purpose  : 
125 // =================================================================================
126 void EntityGUI_PictureImportDlg::FileSelectionClicked()
127 {
128   QString selFile = QFileDialog::getOpenFileName(this,tr( "SELECT_IMAGE"),"/home", tr("OCC_IMAGE_FILES"));
129   if ( ! selFile.isEmpty() )
130     myLineEdit->setText(selFile);
131 }
132
133 //=================================================================================
134 // function : ClickOnOk()
135 // purpose  :
136 //=================================================================================
137 void EntityGUI_PictureImportDlg::ClickOnOk()
138 {
139   MESSAGE("EntityGUI_PictureImportDlg::ClickOnOk()")
140   setIsApplyAndClose( true );
141   if ( ClickOnApply() )
142     ClickOnCancel();
143 }
144
145 //=================================================================================
146 // function : ClickOnApply()
147 // purpose  :
148 //=================================================================================
149 bool EntityGUI_PictureImportDlg::ClickOnApply()
150 {
151   MESSAGE("EntityGUI_PictureImportDlg::ClickOnApply()")
152   if ( !onAccept() )
153     return false;
154   
155   initName();
156   myLineEdit->setText( "" );
157
158   return true;
159 }
160
161 //=================================================================================
162 // function : createOperation
163 // purpose  :
164 //=================================================================================
165 GEOM::GEOM_IOperations_ptr EntityGUI_PictureImportDlg::createOperation()
166 {
167   return myGeomGUI->GetGeomGen()->GetIBlocksOperations( getStudyId() );
168 }
169
170 //=================================================================================
171 // function : execute
172 // purpose  :
173 //=================================================================================
174 bool EntityGUI_PictureImportDlg::execute( ObjectList& objects )
175 {
176   bool res = false;
177   
178   GEOM::GEOM_Object_var anObj;
179   GEOM::GEOM_IBasicOperations_var aBasicOperations = myGeomGUI->GetGeomGen()->GetIBasicOperations( getStudyId() );
180   GEOM::GEOM_IBlocksOperations_var aBlocksOperations = GEOM::GEOM_IBlocksOperations::_narrow( getOperation() );
181   QString theImgFileName = myLineEdit->text();
182   if ( theImgFileName.isEmpty() )
183     return res;
184   
185   ShapeRec_FeatureDetector* aDetector = new ShapeRec_FeatureDetector( theImgFileName.toStdString() );
186     
187   int height            =  aDetector->GetImgHeight();
188   int width             =  aDetector->GetImgWidth();
189   
190   
191   GEOM::GEOM_Object_var P1 = aBasicOperations->MakePointXYZ( -0.5*width, -0.5*height, 0 );
192   GEOM::GEOM_Object_var P2 = aBasicOperations->MakePointXYZ( -0.5*width,  0.5*height, 0 );
193   GEOM::GEOM_Object_var P3 = aBasicOperations->MakePointXYZ(  0.5*width,  0.5*height, 0 );
194   GEOM::GEOM_Object_var P4 = aBasicOperations->MakePointXYZ(  0.5*width, -0.5*height, 0 );
195   
196   GEOM::GEOM_Object_var aFace = aBlocksOperations->MakeQuad4Vertices(P1,P2,P3,P4);
197   getDisplayer()->SetTexture(theImgFileName.toStdString());
198   
199   if ( !aFace->_is_nil() )
200   {
201     objects.push_back( aFace._retn() );
202   }
203   
204   res=true;
205  
206
207   return res;
208 }
209