Salome HOME
Update copyrights
[plugins/hexoticplugin.git] / src / GUI / HexoticPluginGUI_StdWidget.cxx
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // ---
21 // File    : BLSURFPluginGUI_StdWidget.cxx
22 // Authors : Gilles DAVID (OCC)
23 // ---
24 //
25
26 #include "HexoticPluginGUI_Dlg.h"
27
28 #include <SUIT_Session.h>
29 #include <SUIT_ResourceMgr.h>
30 #include <SUIT_FileDlg.h>
31 #include <SalomeApp_Tools.h>
32
33 //using namespace std;
34
35 //////////////////////////////////////////
36 // HexoticPluginGUI_StdWidget
37 //////////////////////////////////////////
38
39 HexoticPluginGUI_StdWidget::HexoticPluginGUI_StdWidget( QWidget* parent, Qt::WindowFlags f )
40 : QWidget( parent, f )
41 {
42   setupUi( this );
43
44   // Obtain precision from preferences
45   int precision = SUIT_Session::session()->resourceMgr()->integerValue( "SMESH", "length_precision", -3 );
46
47   myMinSize->setMinimum(0);
48   myMinSize->setMaximum(1e15);
49   myMinSize->setPrecision(precision);
50 //  myMinSize->setSpecialValueText(" ");
51
52   myMaxSize->setMinimum(0);
53   myMaxSize->setMaximum(1e15);
54   myMaxSize->setPrecision(precision);
55 //  myMaxSize->setSpecialValueText(" ");
56
57   myHexesMinLevel->setMinimum(0);
58   myHexesMinLevel->setMaximum(10);
59 //  myHexesMinLevel->setSpecialValueText(" ");
60
61   myHexesMaxLevel->setMinimum(0);
62   myHexesMaxLevel->setMaximum(10);
63 //  myHexesMaxLevel->setSpecialValueText(" ");
64
65   myHexoticSharpAngleThreshold->setMinimum(0);
66   myHexoticSharpAngleThreshold->setMaximum(90);
67   myHexoticSharpAngleThreshold->setPrecision(precision);
68 //  myHexoticSharpAngleThreshold->setSpecialValueText(" ");
69
70   myHexoticNbProc->setMinimum( 1 );
71   myHexoticNbProc->setMaximum( 256 );
72 //  myHexoticNbProc->setSingleStep( 1 );
73
74   myHexoticSdMode->setCurrentIndex(SD_MODE_4);
75
76   imageSdMode = SUIT_Session::session()->resourceMgr()->loadPixmap("HexoticPLUGIN", tr("Hexotic_SD_MODE_4_PIXMAP"));
77 }
78
79 HexoticPluginGUI_StdWidget::~HexoticPluginGUI_StdWidget()
80 {
81 }
82
83 void HexoticPluginGUI_StdWidget::onDirBtnClicked()
84 {
85   QString dir = SUIT_FileDlg::getExistingDirectory( this, myHexoticWorkingDir->text(), QString() );
86   if ( !dir.isEmpty() )
87           myHexoticWorkingDir->setText( dir );
88 }
89
90 void HexoticPluginGUI_StdWidget::onSdModeSelected(int sdMode) {
91   imageSdMode = SUIT_Session::session()->resourceMgr()->loadPixmap("HexoticPLUGIN", tr(QString("Hexotic_SD_MODE_%1_PIXMAP").arg(sdMode+1).toStdString().c_str()));
92   sdModeLabel->setPixmap(imageSdMode.scaled(sdModeLabel->size(),
93       Qt::KeepAspectRatio,
94       Qt::SmoothTransformation));
95 }