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