1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File : EntityGUI_PictureImportDlg.cxx
25 // Author : Renaud NEDELEC, Open CASCADE S.A.S.
27 #include "EntityGUI_PictureImportDlg.h"
30 #include <GeometryGUI.h>
33 #include <SUIT_ResourceMgr.h>
34 #include <SUIT_Session.h>
35 #include <SalomeApp_Application.h>
36 #include <LightApp_SelectionMgr.h>
38 #include <TopoDS_Shape.hxx>
41 #include <GEOMImpl_Types.hxx>
42 // #include <ShapeRec_FeatureDetector.hxx>
44 #include <QFileDialog>
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 )
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" ) );
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();
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("...");
74 myFileSelGrpLayout->addWidget( myLineEdit, 1);
75 myFileSelGrpLayout->addWidget( myPushButton, 0);
77 QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
78 layout->setMargin( 0 ); layout->setSpacing( 6 );
79 layout->addWidget( GroupFileSel );
81 setHelpFileName( "import_picture_page.html" );
87 //=================================================================================
88 // function : ~EntityGUI_PictureImportDlg()
89 // purpose : Destroys the object and frees any allocated resources
90 //=================================================================================
91 EntityGUI_PictureImportDlg::~EntityGUI_PictureImportDlg()
96 //=================================================================================
99 //=================================================================================
100 void EntityGUI_PictureImportDlg::Init()
102 connect( buttonOk(), SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
103 connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
104 connect( myPushButton, SIGNAL( clicked() ), this, SLOT( FileSelectionClicked() ) );
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);
112 gp_Ax3 aGlobalCS = gp_Ax3(aOrigin, aDirZ, aDirX);
114 myGeomGUI->SetWorkingPlane( aGlobalCS );
115 myGeomGUI->ActiveWorkingPlane();
117 initName( tr( "GEOM_PICTURE" ) );
120 // =================================================================================
121 // function : FileSelectionClicked()
123 // =================================================================================
124 void EntityGUI_PictureImportDlg::FileSelectionClicked()
126 QString selFile = QFileDialog::getOpenFileName(this,tr( "GEOM_SELECT_IMAGE"),QString(), tr("OCC_TEXTURE_FILES"));
127 if ( ! selFile.isEmpty() )
128 myLineEdit->setText(selFile);
131 //=================================================================================
132 // function : ClickOnOk()
134 //=================================================================================
135 void EntityGUI_PictureImportDlg::ClickOnOk()
137 MESSAGE("EntityGUI_PictureImportDlg::ClickOnOk()")
138 setIsApplyAndClose( true );
139 if ( ClickOnApply() )
143 //=================================================================================
144 // function : ClickOnApply()
146 //=================================================================================
147 bool EntityGUI_PictureImportDlg::ClickOnApply()
149 MESSAGE("EntityGUI_PictureImportDlg::ClickOnApply()")
154 myLineEdit->setText( "" );
159 //=================================================================================
160 // function : createOperation
162 //=================================================================================
163 GEOM::GEOM_IOperations_ptr EntityGUI_PictureImportDlg::createOperation()
165 return myGeomGUI->GetGeomGen()->GetIBlocksOperations( getStudyId() );
168 //=================================================================================
169 // function : execute
171 //=================================================================================
172 bool EntityGUI_PictureImportDlg::execute( ObjectList& objects )
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() )
183 QPixmap* pixmap = new QPixmap(theImgFileName);
184 int height = pixmap->height();
185 int width = pixmap->width();
187 GEOM::GEOM_Object_var P1 = aBasicOperations->MakePointXYZ( -0.5*width, -0.5*height, 0 );
188 GEOM::GEOM_Object_var P2 = aBasicOperations->MakePointXYZ( -0.5*width, 0.5*height, 0 );
189 GEOM::GEOM_Object_var P3 = aBasicOperations->MakePointXYZ( 0.5*width, 0.5*height, 0 );
190 GEOM::GEOM_Object_var P4 = aBasicOperations->MakePointXYZ( 0.5*width, -0.5*height, 0 );
192 GEOM::GEOM_Object_var aFace = aBlocksOperations->MakeQuad4Vertices(P1,P2,P3,P4);
193 getDisplayer()->SetTexture(theImgFileName.toStdString());
195 if ( !aFace->_is_nil() )
197 objects.push_back( aFace._retn() );