Salome HOME
Create LICENSE
[plugins/hexoticplugin.git] / src / GUI / HexoticPluginGUI_StdWidget.cxx
1 // Copyright (C) 2007-2024  CEA, EDF
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   myGeomApproxAngle->RangeStepAndValidator( 0, 180, 1, "angle_precision" );
58
59   myHexoticSdMode->setCurrentIndex(SD_MODE_4);
60
61   imageSdMode = SUIT_Session::session()->resourceMgr()->loadPixmap("HexoticPLUGIN", tr("Hexotic_SD_MODE_4_PIXMAP"));
62
63   connect( myPhySizeType,  SIGNAL( currentIndexChanged(int)), SLOT( onSizeTypeChange(int) ));
64   connect( myGeomSizeType, SIGNAL( currentIndexChanged(int)), SLOT( onSizeTypeChange(int) ));
65 }
66
67 HexoticPluginGUI_StdWidget::~HexoticPluginGUI_StdWidget()
68 {
69 }
70 void HexoticPluginGUI_StdWidget::onSdModeSelected(int sdMode) {
71   imageSdMode = SUIT_Session::session()->resourceMgr()->loadPixmap("HexoticPLUGIN", tr(QString("Hexotic_SD_MODE_%1_PIXMAP").arg(sdMode+1).toStdString().c_str()));
72   sdModeLabel->setPixmap(imageSdMode.scaled(sdModeLabel->size(),
73       Qt::KeepAspectRatio,
74       Qt::SmoothTransformation));
75 }
76
77 void HexoticPluginGUI_StdWidget::onSizeTypeChange(int index)
78 {
79   if ( sender() == myPhySizeType )
80   {
81     myMinSize->setEnabled( index );
82     myMaxSize->setEnabled( index );
83   }
84   else
85   {
86     myGeomApproxAngle->setEnabled( index );
87   }
88 }
89