2003-07-10 19:18:22 +06:00
|
|
|
// SMESH SMESHGUI : GUI for SMESH component
|
|
|
|
//
|
|
|
|
// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
2005-06-07 19:22:20 +06:00
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
|
|
|
// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
|
2003-07-10 19:18:22 +06:00
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// File : SMESHGUI_Preferences_ScalarBarDlg.cxx
|
|
|
|
// Author : Nicolas REJNERI
|
|
|
|
// Module : SMESH
|
2003-05-19 20:07:00 +06:00
|
|
|
// $Header$
|
|
|
|
|
|
|
|
#include "SMESHGUI_Preferences_ScalarBarDlg.h"
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
#include "SMESHGUI.h"
|
2004-12-01 15:48:31 +05:00
|
|
|
#include "SMESHGUI_VTKUtils.h"
|
2005-06-08 16:45:19 +06:00
|
|
|
#include "SMESHGUI_Utils.h"
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SMESH_Actor.h"
|
|
|
|
|
2005-06-08 16:45:19 +06:00
|
|
|
#include "SUIT_Desktop.h"
|
2005-06-07 19:22:20 +06:00
|
|
|
#include "SUIT_ResourceMgr.h"
|
|
|
|
|
|
|
|
#include "SalomeApp_SelectionMgr.h"
|
|
|
|
#include "SALOME_ListIO.hxx"
|
|
|
|
|
|
|
|
#include <QtxDblSpinBox.h>
|
|
|
|
|
2003-05-19 20:07:00 +06:00
|
|
|
#include <qbuttongroup.h>
|
|
|
|
#include <qcheckbox.h>
|
|
|
|
#include <qcombobox.h>
|
|
|
|
#include <qgroupbox.h>
|
|
|
|
#include <qlabel.h>
|
|
|
|
#include <qlineedit.h>
|
|
|
|
#include <qpushbutton.h>
|
2004-06-18 14:34:31 +06:00
|
|
|
#include <qtoolbutton.h>
|
2003-05-19 20:07:00 +06:00
|
|
|
#include <qradiobutton.h>
|
|
|
|
#include <qspinbox.h>
|
|
|
|
#include <qlayout.h>
|
2004-06-18 14:34:31 +06:00
|
|
|
#include <qvalidator.h>
|
|
|
|
#include <qcolordialog.h>
|
2003-05-19 20:07:00 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
#include <vtkTextProperty.h>
|
|
|
|
#include <vtkScalarBarActor.h>
|
2004-12-01 15:48:31 +05:00
|
|
|
#include <vtkScalarsToColors.h>
|
2004-06-18 14:34:31 +06:00
|
|
|
|
|
|
|
#define MINIMUM_WIDTH 70
|
|
|
|
#define MARGIN_SIZE 11
|
|
|
|
#define SPACING_SIZE 6
|
|
|
|
|
|
|
|
#define DEF_VER_X 0.01
|
|
|
|
#define DEF_VER_Y 0.10
|
|
|
|
#define DEF_VER_H 0.80
|
|
|
|
#define DEF_VER_W 0.10
|
|
|
|
#define DEF_HOR_X 0.20
|
|
|
|
#define DEF_HOR_Y 0.01
|
|
|
|
#define DEF_HOR_H 0.12
|
|
|
|
#define DEF_HOR_W 0.60
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
using namespace std;
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
// Only one instance is allowed
|
|
|
|
SMESHGUI_Preferences_ScalarBarDlg* SMESHGUI_Preferences_ScalarBarDlg::myDlg = 0;
|
|
|
|
|
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::ScalarBarProperties
|
|
|
|
*
|
|
|
|
* Gets the only instance of "Scalar Bar Properties" dialog box
|
|
|
|
*/
|
|
|
|
//=================================================================================================
|
2005-06-08 16:45:19 +06:00
|
|
|
void SMESHGUI_Preferences_ScalarBarDlg::ScalarBarProperties( SMESHGUI* theModule )
|
2004-06-18 14:34:31 +06:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!myDlg) {
|
2005-07-27 17:15:55 +06:00
|
|
|
myDlg = new SMESHGUI_Preferences_ScalarBarDlg( theModule, true);
|
2004-06-18 14:34:31 +06:00
|
|
|
myDlg->show();
|
2005-06-07 19:22:20 +06:00
|
|
|
} else {
|
2004-06-18 14:34:31 +06:00
|
|
|
myDlg->show();
|
|
|
|
myDlg->setActiveWindow();
|
|
|
|
myDlg->raise();
|
|
|
|
myDlg->setFocus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::ScalarBarPreferences
|
|
|
|
*
|
|
|
|
* Opens "Scalar Bar Preferences" dialog box
|
|
|
|
*/
|
|
|
|
//=================================================================================================
|
2005-06-08 16:45:19 +06:00
|
|
|
void SMESHGUI_Preferences_ScalarBarDlg::ScalarBarPreferences( SMESHGUI* theModule )
|
2004-06-18 14:34:31 +06:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESHGUI_Preferences_ScalarBarDlg* aDlg =
|
2005-07-27 17:15:55 +06:00
|
|
|
new SMESHGUI_Preferences_ScalarBarDlg( theModule, false);
|
2004-06-18 14:34:31 +06:00
|
|
|
aDlg->exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::SMESHGUI_Preferences_ScalarBarDlg
|
2003-05-19 20:07:00 +06:00
|
|
|
*
|
2004-06-18 14:34:31 +06:00
|
|
|
* Constructor
|
2003-05-19 20:07:00 +06:00
|
|
|
*/
|
2004-06-18 14:34:31 +06:00
|
|
|
//=================================================================================================
|
2005-06-08 16:45:19 +06:00
|
|
|
SMESHGUI_Preferences_ScalarBarDlg::SMESHGUI_Preferences_ScalarBarDlg( SMESHGUI* theModule, bool property, bool modal )
|
|
|
|
: QDialog( SMESH::GetDesktop( theModule ), 0, modal, WStyle_Customize | WStyle_NormalBorder |
|
|
|
|
WStyle_Title | WStyle_SysMenu | WDestructiveClose ),
|
|
|
|
mySMESHGUI( theModule ),
|
|
|
|
mySelectionMgr( property ? SMESH::GetSelectionMgr( theModule ) : 0 )
|
2003-05-19 20:07:00 +06:00
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
setName("SMESHGUI_Preferences_ScalarBarDlg");
|
2005-06-08 16:45:19 +06:00
|
|
|
setCaption( property ? tr("SMESH_PROPERTIES_SCALARBAR") : tr("SMESH_PREFERENCES_SCALARBAR"));
|
2005-06-07 19:22:20 +06:00
|
|
|
setSizeGripEnabled(TRUE);
|
2004-06-18 14:34:31 +06:00
|
|
|
|
|
|
|
myActor = 0;
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
// Top layout
|
|
|
|
QGridLayout* aTopLayout = new QGridLayout( this );
|
|
|
|
aTopLayout->setSpacing( SPACING_SIZE ); aTopLayout->setMargin( MARGIN_SIZE );
|
|
|
|
int aRow = 0;
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
// Scalar range
|
2005-06-07 19:22:20 +06:00
|
|
|
if ( mySelectionMgr ) {
|
2004-06-18 14:34:31 +06:00
|
|
|
myRangeGrp = new QGroupBox ( tr( "SMESH_RANGE_SCALARBAR" ), this, "myRangeGrp" );
|
|
|
|
myRangeGrp->setColumnLayout( 0, Qt::Vertical );
|
|
|
|
myRangeGrp->layout()->setSpacing( 0 ); myRangeGrp->layout()->setMargin( 0 );
|
|
|
|
QGridLayout* myRangeGrpLayout = new QGridLayout( myRangeGrp->layout() );
|
|
|
|
myRangeGrpLayout->setAlignment( Qt::AlignTop );
|
|
|
|
myRangeGrpLayout->setSpacing( SPACING_SIZE ); myRangeGrpLayout->setMargin( MARGIN_SIZE );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
myMinEdit = new QLineEdit( myRangeGrp, "myMinEdit" );
|
|
|
|
myMinEdit->setMinimumWidth( MINIMUM_WIDTH );
|
|
|
|
myMinEdit->setValidator( new QDoubleValidator( this ) );
|
|
|
|
|
|
|
|
myMaxEdit = new QLineEdit( myRangeGrp, "myMaxEdit" );
|
|
|
|
myMaxEdit->setMinimumWidth( MINIMUM_WIDTH );
|
|
|
|
myMaxEdit->setValidator( new QDoubleValidator( this ) );
|
|
|
|
|
|
|
|
myRangeGrpLayout->addWidget( new QLabel( tr( "SMESH_RANGE_MIN" ), myRangeGrp, "myMinLab" ), 0, 0 );
|
|
|
|
myRangeGrpLayout->addWidget( myMinEdit, 0, 1 );
|
|
|
|
myRangeGrpLayout->addWidget( new QLabel( tr( "SMESH_RANGE_MAX" ), myRangeGrp, "myMaxLab" ), 0, 2 );
|
|
|
|
myRangeGrpLayout->addWidget( myMaxEdit, 0, 3 );
|
|
|
|
|
|
|
|
aTopLayout->addWidget( myRangeGrp, aRow, 0 );
|
|
|
|
aRow++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
// Text properties
|
|
|
|
myFontGrp = new QGroupBox ( tr( "SMESH_FONT_SCALARBAR" ), this, "myFontGrp" );
|
|
|
|
myFontGrp->setColumnLayout( 0, Qt::Vertical );
|
|
|
|
myFontGrp->layout()->setSpacing( 0 ); myFontGrp->layout()->setMargin( 0 );
|
|
|
|
QGridLayout* myFontGrpLayout = new QGridLayout( myFontGrp->layout() );
|
|
|
|
myFontGrpLayout->setAlignment( Qt::AlignTop );
|
|
|
|
myFontGrpLayout->setSpacing( SPACING_SIZE ); myFontGrpLayout->setMargin( MARGIN_SIZE );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
myTitleColorBtn = new QToolButton( myFontGrp, "myTitleColorBtn" );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
myTitleFontCombo = new QComboBox( false, myFontGrp, "myTitleFontCombo" );
|
|
|
|
myTitleFontCombo->setMinimumWidth( MINIMUM_WIDTH );
|
|
|
|
myTitleFontCombo->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
|
|
|
myTitleFontCombo->insertItem( tr( "SMESH_FONT_ARIAL" ) );
|
|
|
|
myTitleFontCombo->insertItem( tr( "SMESH_FONT_COURIER" ) );
|
|
|
|
myTitleFontCombo->insertItem( tr( "SMESH_FONT_TIMES" ) );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
myTitleBoldCheck = new QCheckBox( tr( "SMESH_FONT_BOLD" ), myFontGrp, "myTitleBoldCheck" );
|
|
|
|
myTitleItalicCheck = new QCheckBox( tr( "SMESH_FONT_ITALIC" ), myFontGrp, "myTitleItalicCheck" );
|
|
|
|
myTitleShadowCheck = new QCheckBox( tr( "SMESH_FONT_SHADOW" ), myFontGrp, "myTitleShadowCheck" );
|
|
|
|
|
|
|
|
myLabelsColorBtn = new QToolButton( myFontGrp, "myLabelsColorBtn" );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
myLabelsFontCombo = new QComboBox( false, myFontGrp, "myLabelsFontCombo" );
|
|
|
|
myLabelsFontCombo->setMinimumWidth( MINIMUM_WIDTH );
|
|
|
|
myLabelsFontCombo->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
|
|
|
myLabelsFontCombo->insertItem( tr( "SMESH_FONT_ARIAL" ) );
|
|
|
|
myLabelsFontCombo->insertItem( tr( "SMESH_FONT_COURIER" ) );
|
|
|
|
myLabelsFontCombo->insertItem( tr( "SMESH_FONT_TIMES" ) );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
myLabelsBoldCheck = new QCheckBox( tr( "SMESH_FONT_BOLD" ), myFontGrp, "myLabelsBoldCheck" );
|
|
|
|
myLabelsItalicCheck = new QCheckBox( tr( "SMESH_FONT_ITALIC" ), myFontGrp, "myLabelsItalicCheck" );
|
|
|
|
myLabelsShadowCheck = new QCheckBox( tr( "SMESH_FONT_SHADOW" ), myFontGrp, "myLabelsShadowCheck" );
|
|
|
|
|
|
|
|
myFontGrpLayout->addWidget( new QLabel( tr( "SMESH_TITLE" ), myFontGrp, "myFontTitleLab" ), 0, 0 );
|
|
|
|
myFontGrpLayout->addWidget( myTitleColorBtn, 0, 1 );
|
|
|
|
myFontGrpLayout->addWidget( myTitleFontCombo, 0, 2 );
|
|
|
|
myFontGrpLayout->addWidget( myTitleBoldCheck, 0, 3 );
|
|
|
|
myFontGrpLayout->addWidget( myTitleItalicCheck, 0, 4 );
|
|
|
|
myFontGrpLayout->addWidget( myTitleShadowCheck, 0, 5 );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
myFontGrpLayout->addWidget( new QLabel( tr( "SMESH_LABELS" ), myFontGrp, "myFontLabelsLab" ), 1, 0 );
|
|
|
|
myFontGrpLayout->addWidget( myLabelsColorBtn, 1, 1 );
|
|
|
|
myFontGrpLayout->addWidget( myLabelsFontCombo, 1, 2 );
|
|
|
|
myFontGrpLayout->addWidget( myLabelsBoldCheck, 1, 3 );
|
|
|
|
myFontGrpLayout->addWidget( myLabelsItalicCheck, 1, 4 );
|
|
|
|
myFontGrpLayout->addWidget( myLabelsShadowCheck, 1, 5 );
|
|
|
|
|
|
|
|
aTopLayout->addWidget( myFontGrp, aRow, 0 );
|
|
|
|
aRow++;
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
// Labels & Colors
|
|
|
|
myLabColorGrp = new QGroupBox ( tr( "SMESH_LABELS_COLORS_SCALARBAR" ), this, "myLabColorGrp" );
|
|
|
|
myLabColorGrp->setColumnLayout( 0, Qt::Vertical );
|
|
|
|
myLabColorGrp->layout()->setSpacing( 0 ); myLabColorGrp->layout()->setMargin( 0 );
|
|
|
|
QGridLayout* myLabColorGrpLayout = new QGridLayout( myLabColorGrp->layout() );
|
|
|
|
myLabColorGrpLayout->setAlignment( Qt::AlignTop );
|
|
|
|
myLabColorGrpLayout->setSpacing( SPACING_SIZE ); myLabColorGrpLayout->setMargin( MARGIN_SIZE );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
myColorsSpin = new QSpinBox( 2, 256, 1, myLabColorGrp, "myColorsSpin" );
|
|
|
|
myColorsSpin->setMinimumWidth( MINIMUM_WIDTH );
|
|
|
|
myColorsSpin->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
|
|
|
|
|
|
|
myLabelsSpin = new QSpinBox( 2, 65, 1, myLabColorGrp, "myLabelsSpin" );
|
|
|
|
myLabelsSpin->setMinimumWidth( MINIMUM_WIDTH );
|
|
|
|
myLabelsSpin->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
|
|
|
|
|
|
|
myLabColorGrpLayout->addWidget( new QLabel( tr( "SMESH_NUMBEROFCOLORS" ), myLabColorGrp, "myNbColorLab" ), 0, 0 );
|
|
|
|
myLabColorGrpLayout->addWidget( myColorsSpin, 0, 1 );
|
|
|
|
myLabColorGrpLayout->addWidget( new QLabel( tr( "SMESH_NUMBEROFLABELS" ), myLabColorGrp, "myNbLabsLab" ), 0, 2 );
|
|
|
|
myLabColorGrpLayout->addWidget( myLabelsSpin, 0, 3 );
|
|
|
|
|
|
|
|
aTopLayout->addWidget( myLabColorGrp, aRow, 0 );
|
|
|
|
aRow++;
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
// Orientation
|
|
|
|
myOrientationGrp = new QButtonGroup ( tr( "SMESH_ORIENTATION" ), this, "myOrientationGrp" );
|
|
|
|
myOrientationGrp->setColumnLayout( 0, Qt::Vertical );
|
|
|
|
myOrientationGrp->layout()->setSpacing( 0 ); myOrientationGrp->layout()->setMargin( 0 );
|
|
|
|
QGridLayout* myOrientationGrpLayout = new QGridLayout( myOrientationGrp->layout() );
|
|
|
|
myOrientationGrpLayout->setAlignment( Qt::AlignTop );
|
|
|
|
myOrientationGrpLayout->setSpacing( SPACING_SIZE ); myOrientationGrpLayout->setMargin( MARGIN_SIZE );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
myVertRadioBtn = new QRadioButton( tr( "SMESH_VERTICAL" ), myOrientationGrp, "myVertRadioBtn" );
|
|
|
|
myHorizRadioBtn = new QRadioButton( tr( "SMESH_HORIZONTAL" ), myOrientationGrp, "myHorizRadioBtn" );
|
|
|
|
myVertRadioBtn->setChecked( true );
|
|
|
|
|
|
|
|
myOrientationGrpLayout->addWidget( myVertRadioBtn, 0, 0 );
|
|
|
|
myOrientationGrpLayout->addWidget( myHorizRadioBtn, 0, 1 );
|
|
|
|
|
|
|
|
aTopLayout->addWidget( myOrientationGrp, aRow, 0 );
|
|
|
|
aRow++;
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
// Position & Size
|
2005-06-07 19:22:20 +06:00
|
|
|
myOriginDimGrp = new QGroupBox (tr("SMESH_POSITION_SIZE_SCALARBAR"), this, "myOriginDimGrp");
|
|
|
|
myOriginDimGrp->setColumnLayout(0, Qt::Vertical);
|
2004-06-18 14:34:31 +06:00
|
|
|
myOriginDimGrp->layout()->setSpacing( 0 ); myOriginDimGrp->layout()->setMargin( 0 );
|
|
|
|
QGridLayout* myOriginDimGrpLayout = new QGridLayout( myOriginDimGrp->layout() );
|
|
|
|
myOriginDimGrpLayout->setAlignment( Qt::AlignTop );
|
|
|
|
myOriginDimGrpLayout->setSpacing( SPACING_SIZE ); myOriginDimGrpLayout->setMargin( MARGIN_SIZE );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
myXSpin = new QtxDblSpinBox (0.0, 1.0, 0.1, myOriginDimGrp);
|
2004-06-18 14:34:31 +06:00
|
|
|
myXSpin->setMinimumWidth( MINIMUM_WIDTH );
|
|
|
|
myXSpin->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myYSpin = new QtxDblSpinBox(0.0, 1.0, 0.1, myOriginDimGrp);
|
2004-06-18 14:34:31 +06:00
|
|
|
myYSpin->setMinimumWidth( MINIMUM_WIDTH );
|
|
|
|
myYSpin->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myWidthSpin = new QtxDblSpinBox(0.0, 1.0, 0.1, myOriginDimGrp);
|
2004-06-18 14:34:31 +06:00
|
|
|
myWidthSpin->setMinimumWidth( MINIMUM_WIDTH );
|
|
|
|
myWidthSpin->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
myHeightSpin = new QtxDblSpinBox(0.0, 1.0, 0.1, myOriginDimGrp);
|
2004-06-18 14:34:31 +06:00
|
|
|
myHeightSpin->setMinimumWidth( MINIMUM_WIDTH );
|
|
|
|
myHeightSpin->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
|
|
|
|
|
|
|
myOriginDimGrpLayout->addWidget( new QLabel( tr( "SMESH_X_SCALARBAR" ), myOriginDimGrp, "myXLab" ), 0, 0 );
|
|
|
|
myOriginDimGrpLayout->addWidget( myXSpin, 0, 1 );
|
|
|
|
myOriginDimGrpLayout->addWidget( new QLabel( tr( "SMESH_Y_SCALARBAR" ), myOriginDimGrp, "myYLab" ), 0, 2 );
|
|
|
|
myOriginDimGrpLayout->addWidget( myYSpin, 0, 3 );
|
|
|
|
myOriginDimGrpLayout->addWidget( new QLabel( tr( "SMESH_WIDTH" ), myOriginDimGrp, "myWidthLab" ), 1, 0 );
|
|
|
|
myOriginDimGrpLayout->addWidget( myWidthSpin, 1, 1 );
|
|
|
|
myOriginDimGrpLayout->addWidget( new QLabel( tr( "SMESH_HEIGHT" ), myOriginDimGrp, "myHeightLab" ), 1, 2 );
|
|
|
|
myOriginDimGrpLayout->addWidget( myHeightSpin, 1, 3 );
|
|
|
|
|
|
|
|
aTopLayout->addWidget( myOriginDimGrp, aRow, 0 );
|
|
|
|
aRow++;
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
// Common buttons
|
|
|
|
myButtonGrp = new QGroupBox( this, "myButtonGrp" );
|
|
|
|
myButtonGrp->setColumnLayout(0, Qt::Vertical );
|
|
|
|
myButtonGrp->layout()->setSpacing( 0 ); myButtonGrp->layout()->setMargin( 0 );
|
|
|
|
QHBoxLayout* myButtonGrpLayout = new QHBoxLayout( myButtonGrp->layout() );
|
|
|
|
myButtonGrpLayout->setAlignment( Qt::AlignTop );
|
|
|
|
myButtonGrpLayout->setSpacing( SPACING_SIZE ); myButtonGrpLayout->setMargin( MARGIN_SIZE );
|
|
|
|
|
|
|
|
myOkBtn = new QPushButton( tr( "SMESH_BUT_OK" ), myButtonGrp, "myOkBtn" );
|
|
|
|
myOkBtn->setAutoDefault( TRUE ); myOkBtn->setDefault( TRUE );
|
|
|
|
myButtonGrpLayout->addWidget( myOkBtn );
|
2005-06-07 19:22:20 +06:00
|
|
|
if ( mySelectionMgr ) {
|
2004-06-18 14:34:31 +06:00
|
|
|
myApplyBtn = new QPushButton( tr( "SMESH_BUT_APPLY" ), myButtonGrp, "myApplyBtn" );
|
|
|
|
myApplyBtn->setAutoDefault( TRUE );
|
|
|
|
myButtonGrpLayout->addWidget( myApplyBtn );
|
|
|
|
}
|
|
|
|
myButtonGrpLayout->addStretch();
|
|
|
|
myCancelBtn = new QPushButton( tr( "SMESH_BUT_CANCEL" ), myButtonGrp, "myCancelBtn" );
|
2005-06-07 19:22:20 +06:00
|
|
|
if ( mySelectionMgr )
|
2004-06-18 14:34:31 +06:00
|
|
|
myCancelBtn->setText( tr( "SMESH_BUT_CLOSE" ) );
|
|
|
|
myCancelBtn->setAutoDefault( TRUE );
|
|
|
|
myButtonGrpLayout->addWidget( myCancelBtn );
|
|
|
|
|
|
|
|
aTopLayout->addWidget( myButtonGrp, aRow, 0 );
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
// Init
|
|
|
|
// --> first init from preferences
|
2005-06-08 16:45:19 +06:00
|
|
|
SUIT_ResourceMgr* mgr = SMESH::GetResourceMgr( mySMESHGUI );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
QColor titleColor (255, 255, 255);
|
2005-07-25 12:50:07 +06:00
|
|
|
if (mgr && mgr->hasValue("SMESH", "scalar_bar_title_color")) {
|
2005-06-07 19:22:20 +06:00
|
|
|
QStringList aTColor =
|
2005-07-25 12:50:07 +06:00
|
|
|
QStringList::split(":", mgr->stringValue("SMESH", "scalar_bar_title_color"), false);
|
2005-06-07 19:22:20 +06:00
|
|
|
titleColor = QColor((aTColor.count() > 0 ? aTColor[0].toInt() : 255),
|
|
|
|
(aTColor.count() > 1 ? aTColor[1].toInt() : 255),
|
|
|
|
(aTColor.count() > 2 ? aTColor[2].toInt() : 255));
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
myTitleColorBtn->setPaletteBackgroundColor(titleColor);
|
|
|
|
myTitleFontCombo->setCurrentItem(0);
|
2005-07-25 12:50:07 +06:00
|
|
|
if (mgr && mgr->hasValue("SMESH", "scalar_bar_title_font")) {
|
|
|
|
QFont f = mgr->fontValue( "SMESH", "scalar_bar_title_font" );
|
|
|
|
if( f.family()=="Arial" )
|
2005-06-07 19:22:20 +06:00
|
|
|
myTitleFontCombo->setCurrentItem(0);
|
2005-07-25 12:50:07 +06:00
|
|
|
if( f.family()=="Courier" )
|
2005-06-07 19:22:20 +06:00
|
|
|
myTitleFontCombo->setCurrentItem(1);
|
2005-07-25 12:50:07 +06:00
|
|
|
if( f.family()=="Times")
|
2005-06-07 19:22:20 +06:00
|
|
|
myTitleFontCombo->setCurrentItem(2);
|
2005-07-25 12:50:07 +06:00
|
|
|
|
|
|
|
myTitleBoldCheck->setChecked ( f.bold() );
|
|
|
|
myTitleItalicCheck->setChecked( f.italic() );
|
|
|
|
myTitleShadowCheck->setChecked( f.underline() );
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
QColor labelColor (255, 255, 255);
|
2005-07-25 12:50:07 +06:00
|
|
|
if (mgr && mgr->hasValue("SMESH", "scalar_bar_label_color")) {
|
2005-06-07 19:22:20 +06:00
|
|
|
QStringList aLColor =
|
2005-07-25 12:50:07 +06:00
|
|
|
QStringList::split(":", mgr->stringValue("SMESH", "scalar_bar_label_color"), false);
|
2005-06-07 19:22:20 +06:00
|
|
|
labelColor = QColor((aLColor.count() > 0 ? aLColor[0].toInt() : 255),
|
|
|
|
(aLColor.count() > 1 ? aLColor[1].toInt() : 255),
|
|
|
|
(aLColor.count() > 2 ? aLColor[2].toInt() : 255));
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
myLabelsColorBtn->setPaletteBackgroundColor(labelColor);
|
|
|
|
myLabelsFontCombo->setCurrentItem(0);
|
2005-07-25 12:50:07 +06:00
|
|
|
if (mgr && mgr->hasValue("SMESH", "scalar_bar_label_font")) {
|
|
|
|
QFont f = mgr->fontValue( "SMESH", "scalar_bar_label_font" );
|
|
|
|
if (f.family() == "Arial")
|
2005-06-07 19:22:20 +06:00
|
|
|
myLabelsFontCombo->setCurrentItem(0);
|
2005-07-25 12:50:07 +06:00
|
|
|
if (f.family() == "Courier")
|
2005-06-07 19:22:20 +06:00
|
|
|
myLabelsFontCombo->setCurrentItem(1);
|
2005-07-25 12:50:07 +06:00
|
|
|
if (f.family() == "Times")
|
2005-06-07 19:22:20 +06:00
|
|
|
myLabelsFontCombo->setCurrentItem(2);
|
2005-07-25 12:50:07 +06:00
|
|
|
|
|
|
|
myLabelsBoldCheck ->setChecked( f.bold() );
|
|
|
|
myLabelsItalicCheck->setChecked( f.italic() );
|
|
|
|
myLabelsShadowCheck->setChecked( f.underline() );
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
int aNbColors = 64;
|
2005-07-25 12:50:07 +06:00
|
|
|
if (mgr && mgr->hasValue("SMESH", "scalar_bar_num_colors"))
|
|
|
|
aNbColors = mgr->integerValue("SMESH", "scalar_bar_num_colors");
|
2005-06-07 19:22:20 +06:00
|
|
|
myColorsSpin->setValue(aNbColors);
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
int aNbLabels = 5;
|
2005-07-25 12:50:07 +06:00
|
|
|
if (mgr && mgr->hasValue("SMESH", "scalar_bar_num_labels"))
|
|
|
|
aNbLabels = mgr->integerValue("SMESH", "scalar_bar_num_labels");
|
2005-06-07 19:22:20 +06:00
|
|
|
myLabelsSpin->setValue(aNbLabels);
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-07-25 12:50:07 +06:00
|
|
|
int aOrientation = ( mgr ? mgr->integerValue( "SMESH", "scalar_bar_orientation", 1 ) : 1 );
|
|
|
|
bool isHoriz = ( aOrientation==1 );
|
|
|
|
if (aOrientation == 1)
|
2005-06-07 19:22:20 +06:00
|
|
|
myHorizRadioBtn->setChecked(true);
|
2004-06-18 14:34:31 +06:00
|
|
|
else
|
2005-06-07 19:22:20 +06:00
|
|
|
myVertRadioBtn->setChecked(true);
|
2004-06-18 14:34:31 +06:00
|
|
|
myIniOrientation = myVertRadioBtn->isChecked();
|
|
|
|
|
2005-07-25 12:50:07 +06:00
|
|
|
QString name = isHoriz ? "scalar_bar_horizontal_%1" : "scalar_bar_vertical_%1";
|
|
|
|
if (mgr && mgr->hasValue("SMESH", name.arg( "x" )))
|
|
|
|
myIniX = mgr->doubleValue("SMESH", name.arg( "x" ));
|
2004-06-18 14:34:31 +06:00
|
|
|
else
|
|
|
|
myIniX = myHorizRadioBtn->isChecked() ? DEF_HOR_X : DEF_VER_X;
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-07-25 12:50:07 +06:00
|
|
|
if (mgr && mgr->hasValue("SMESH", name.arg( "y" )))
|
|
|
|
myIniY = mgr->doubleValue("SMESH", name.arg( "y" ));
|
2004-06-18 14:34:31 +06:00
|
|
|
else
|
|
|
|
myIniY = myHorizRadioBtn->isChecked() ? DEF_HOR_Y : DEF_VER_Y;
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-07-25 12:50:07 +06:00
|
|
|
if (mgr && mgr->hasValue("SMESH", name.arg( "width" )))
|
|
|
|
myIniW = mgr->doubleValue("SMESH", name.arg( "width" ));
|
2004-06-18 14:34:31 +06:00
|
|
|
else
|
|
|
|
myIniW = myHorizRadioBtn->isChecked() ? DEF_HOR_W : DEF_VER_W;
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-07-25 12:50:07 +06:00
|
|
|
if (mgr && mgr->hasValue("SMESH", name.arg( "height" )))
|
|
|
|
myIniH = mgr->doubleValue("SMESH", name.arg( "height" ));
|
2004-06-18 14:34:31 +06:00
|
|
|
else
|
|
|
|
myIniH = myHorizRadioBtn->isChecked() ? DEF_HOR_H : DEF_VER_H;
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
setOriginAndSize(myIniX, myIniY, myIniW, myIniH);
|
|
|
|
|
|
|
|
if (mySelectionMgr) {
|
2004-06-18 14:34:31 +06:00
|
|
|
// --> then init from selection if necessary
|
|
|
|
onSelectionChanged();
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
/***************************************************************/
|
|
|
|
// Connect section
|
|
|
|
connect( myTitleColorBtn, SIGNAL( clicked() ), this, SLOT( onTitleColor() ) );
|
|
|
|
connect( myLabelsColorBtn, SIGNAL( clicked() ), this, SLOT( onLabelsColor() ) );
|
|
|
|
connect( myOkBtn, SIGNAL( clicked() ), this, SLOT( onOk() ) );
|
|
|
|
connect( myCancelBtn, SIGNAL( clicked() ), this, SLOT( onCancel() ) );
|
|
|
|
connect( myXSpin, SIGNAL( valueChanged( double ) ), this, SLOT( onXYChanged() ) );
|
|
|
|
connect( myYSpin, SIGNAL( valueChanged( double ) ), this, SLOT( onXYChanged() ) );
|
|
|
|
connect( myOrientationGrp, SIGNAL( clicked( int ) ), this, SLOT( onOrientationChanged() ) );
|
2005-06-07 19:22:20 +06:00
|
|
|
if ( mySelectionMgr ) {
|
2004-06-18 14:34:31 +06:00
|
|
|
connect( myApplyBtn, SIGNAL( clicked() ), this, SLOT( onApply() ) );
|
2005-06-07 19:22:20 +06:00
|
|
|
connect( mySelectionMgr, SIGNAL( currentSelectionChanged() ), this, SLOT( onSelectionChanged() ) );
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
2005-06-08 16:45:19 +06:00
|
|
|
connect( mySMESHGUI, SIGNAL( SignalCloseAllDialogs() ), this, SLOT( onCancel() ) ) ;
|
2003-05-19 20:07:00 +06:00
|
|
|
}
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::~SMESHGUI_Preferences_ScalarBarDlg
|
|
|
|
*
|
|
|
|
* Destructor
|
2003-05-19 20:07:00 +06:00
|
|
|
*/
|
2004-06-18 14:34:31 +06:00
|
|
|
//=================================================================================================
|
2003-05-19 20:07:00 +06:00
|
|
|
SMESHGUI_Preferences_ScalarBarDlg::~SMESHGUI_Preferences_ScalarBarDlg()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::onOk
|
|
|
|
*
|
|
|
|
* OK button slot
|
|
|
|
*/
|
|
|
|
//=================================================================================================
|
|
|
|
void SMESHGUI_Preferences_ScalarBarDlg::onOk()
|
|
|
|
{
|
|
|
|
if ( onApply() )
|
|
|
|
onCancel();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::onApply
|
|
|
|
*
|
|
|
|
* Apply button slot
|
|
|
|
*/
|
|
|
|
//=================================================================================================
|
|
|
|
bool SMESHGUI_Preferences_ScalarBarDlg::onApply()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (mySelectionMgr) {
|
2004-06-18 14:34:31 +06:00
|
|
|
// Scalar Bar properties
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!myActor)
|
2004-06-18 14:34:31 +06:00
|
|
|
return false;
|
|
|
|
vtkScalarBarActor* myScalarBarActor = myActor->GetScalarBarActor();
|
|
|
|
|
|
|
|
vtkTextProperty* aTitleTextPrp = myScalarBarActor->GetTitleTextProperty();
|
|
|
|
QColor aTColor = myTitleColorBtn->paletteBackgroundColor();
|
|
|
|
aTitleTextPrp->SetColor( aTColor.red()/255., aTColor.green()/255., aTColor.blue()/255. );
|
|
|
|
if ( myTitleFontCombo->currentItem() == 0 )
|
|
|
|
aTitleTextPrp->SetFontFamilyToArial();
|
|
|
|
else if ( myTitleFontCombo->currentItem() == 1 )
|
|
|
|
aTitleTextPrp->SetFontFamilyToCourier();
|
|
|
|
else
|
|
|
|
aTitleTextPrp->SetFontFamilyToTimes();
|
|
|
|
aTitleTextPrp->SetBold( myTitleBoldCheck->isChecked() );
|
|
|
|
aTitleTextPrp->SetItalic( myTitleItalicCheck->isChecked() );
|
|
|
|
aTitleTextPrp->SetShadow( myTitleShadowCheck->isChecked() );
|
|
|
|
myScalarBarActor->SetTitleTextProperty( aTitleTextPrp );
|
|
|
|
|
|
|
|
vtkTextProperty* aLabelsTextPrp = myScalarBarActor->GetLabelTextProperty();
|
|
|
|
QColor aLColor = myLabelsColorBtn->paletteBackgroundColor();
|
|
|
|
aLabelsTextPrp->SetColor( aLColor.red()/255., aLColor.green()/255., aLColor.blue()/255. );
|
|
|
|
if ( myLabelsFontCombo->currentItem() == 0 )
|
|
|
|
aLabelsTextPrp->SetFontFamilyToArial();
|
|
|
|
else if ( myLabelsFontCombo->currentItem() == 1 )
|
|
|
|
aLabelsTextPrp->SetFontFamilyToCourier();
|
|
|
|
else
|
|
|
|
aLabelsTextPrp->SetFontFamilyToTimes();
|
|
|
|
aLabelsTextPrp->SetBold( myLabelsBoldCheck->isChecked() );
|
|
|
|
aLabelsTextPrp->SetItalic( myLabelsItalicCheck->isChecked() );
|
|
|
|
aLabelsTextPrp->SetShadow( myLabelsShadowCheck->isChecked() );
|
|
|
|
myScalarBarActor->SetLabelTextProperty( aLabelsTextPrp );
|
|
|
|
|
|
|
|
myScalarBarActor->SetNumberOfLabels( myLabelsSpin->value() );
|
|
|
|
myScalarBarActor->SetMaximumNumberOfColors( myColorsSpin->value() );
|
|
|
|
|
|
|
|
if ( myHorizRadioBtn->isChecked() )
|
|
|
|
myScalarBarActor->SetOrientationToHorizontal();
|
|
|
|
else
|
|
|
|
myScalarBarActor->SetOrientationToVertical();
|
|
|
|
|
|
|
|
myScalarBarActor->SetPosition( myXSpin->value(), myYSpin->value() );
|
|
|
|
myScalarBarActor->SetWidth( myWidthSpin->value() );
|
|
|
|
myScalarBarActor->SetHeight( myHeightSpin->value() );
|
|
|
|
|
|
|
|
double aMin = myMinEdit->text().toDouble();
|
|
|
|
double aMax = myMaxEdit->text().toDouble();
|
|
|
|
myScalarBarActor->GetLookupTable()->SetRange( aMin, aMax );
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH::RepaintCurrentView();
|
2005-06-07 19:22:20 +06:00
|
|
|
} else {
|
2004-06-18 14:34:31 +06:00
|
|
|
// Scalar Bar preferences
|
2005-06-08 16:45:19 +06:00
|
|
|
SUIT_ResourceMgr* mgr = SMESH::GetResourceMgr( mySMESHGUI );
|
2005-06-07 19:22:20 +06:00
|
|
|
if (!mgr) return false;
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
QColor titleColor = myTitleColorBtn->paletteBackgroundColor();
|
2005-07-25 12:50:07 +06:00
|
|
|
mgr->setValue("SMESH", "scalar_bar_title_color", titleColor );
|
|
|
|
|
|
|
|
QFont f;
|
2005-06-07 19:22:20 +06:00
|
|
|
if (myTitleFontCombo->currentItem() == 0)
|
2005-07-25 12:50:07 +06:00
|
|
|
f.setFamily( "Arial" );
|
2005-06-07 19:22:20 +06:00
|
|
|
else if (myTitleFontCombo->currentItem() == 1)
|
2005-07-25 12:50:07 +06:00
|
|
|
f.setFamily( "Courier" );
|
2004-06-18 14:34:31 +06:00
|
|
|
else
|
2005-07-25 12:50:07 +06:00
|
|
|
f.setFamily( "Times");
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-07-25 12:50:07 +06:00
|
|
|
f.setBold( myTitleBoldCheck ->isChecked() );
|
|
|
|
f.setItalic( myTitleItalicCheck->isChecked() );
|
|
|
|
f.setUnderline( myTitleShadowCheck->isChecked() );
|
|
|
|
mgr->setValue( "SMESH", "scalar_bar_title_font", f );
|
2004-06-18 14:34:31 +06:00
|
|
|
|
|
|
|
QColor labelColor = myLabelsColorBtn->paletteBackgroundColor();
|
2005-07-25 12:50:07 +06:00
|
|
|
mgr->setValue("SMESH", "scalar_bar_label_color", labelColor );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
if (myLabelsFontCombo->currentItem() == 0)
|
2005-07-25 12:50:07 +06:00
|
|
|
f.setFamily( "Arial" );
|
2004-06-18 14:34:31 +06:00
|
|
|
else if ( myLabelsFontCombo->currentItem() == 1 )
|
2005-07-25 12:50:07 +06:00
|
|
|
f.setFamily( "Courier");
|
2004-06-18 14:34:31 +06:00
|
|
|
else
|
2005-07-25 12:50:07 +06:00
|
|
|
f.setFamily( "Times");
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-07-25 12:50:07 +06:00
|
|
|
f.setBold( myLabelsBoldCheck ->isChecked() );
|
|
|
|
f.setItalic( myLabelsItalicCheck->isChecked() );
|
|
|
|
f.setUnderline( myLabelsShadowCheck->isChecked() );
|
|
|
|
mgr->setValue( "SMESH", "scalar_bar_label_font", f );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-07-25 12:50:07 +06:00
|
|
|
mgr->setValue("SMESH", "scalar_bar_num_colors", myColorsSpin->value());
|
|
|
|
mgr->setValue("SMESH", "scalar_bar_num_labels", myLabelsSpin->value());
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-07-25 12:50:07 +06:00
|
|
|
mgr->setValue("SMESH", "scalar_bar_orientation", myHorizRadioBtn->isChecked() ? 1 : 0 );
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-07-25 12:50:07 +06:00
|
|
|
QString name = myHorizRadioBtn->isChecked() ? "scalar_bar_horizontal_%1" : "scalar_bar_vertical_%1";
|
|
|
|
mgr->setValue("SMESH", name.arg( "x" ), myXSpin->value());
|
|
|
|
mgr->setValue("SMESH", name.arg( "y" ), myYSpin->value());
|
|
|
|
mgr->setValue("SMESH", name.arg( "width" ), myWidthSpin->value());
|
|
|
|
mgr->setValue("SMESH", name.arg( "height" ), myHeightSpin->value());
|
2004-06-18 14:34:31 +06:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::onCancel
|
|
|
|
*
|
|
|
|
* Cancel button slot
|
|
|
|
*/
|
|
|
|
//=================================================================================================
|
|
|
|
void SMESHGUI_Preferences_ScalarBarDlg::onCancel()
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::onTitleColor
|
|
|
|
*
|
|
|
|
* Change Title color button slot
|
|
|
|
*/
|
|
|
|
//=================================================================================================
|
|
|
|
void SMESHGUI_Preferences_ScalarBarDlg::onTitleColor()
|
|
|
|
{
|
|
|
|
QColor aColor = myTitleColorBtn->paletteBackgroundColor();
|
|
|
|
aColor = QColorDialog::getColor( aColor, this );
|
2005-06-07 19:22:20 +06:00
|
|
|
if ( aColor.isValid() )
|
2004-06-18 14:34:31 +06:00
|
|
|
myTitleColorBtn->setPaletteBackgroundColor( aColor );
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::onLabelsColor
|
|
|
|
*
|
|
|
|
* Change Labels color button slot
|
|
|
|
*/
|
|
|
|
//=================================================================================================
|
|
|
|
void SMESHGUI_Preferences_ScalarBarDlg::onLabelsColor()
|
|
|
|
{
|
|
|
|
QColor aColor = myLabelsColorBtn->paletteBackgroundColor();
|
|
|
|
aColor = QColorDialog::getColor( aColor, this );
|
2005-06-07 19:22:20 +06:00
|
|
|
if ( aColor.isValid() )
|
2004-06-18 14:34:31 +06:00
|
|
|
myLabelsColorBtn->setPaletteBackgroundColor( aColor );
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::onSelectionChanged
|
|
|
|
*
|
|
|
|
* Called when selection changed
|
|
|
|
*/
|
|
|
|
//=================================================================================================
|
|
|
|
void SMESHGUI_Preferences_ScalarBarDlg::onSelectionChanged()
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if (mySelectionMgr) {
|
|
|
|
SALOME_ListIO aList;
|
|
|
|
mySelectionMgr->selectedObjects(aList);
|
|
|
|
|
|
|
|
if (aList.Extent() == 1) {
|
|
|
|
Handle(SALOME_InteractiveObject) anIO = aList.First();
|
2004-06-18 14:34:31 +06:00
|
|
|
if( anIO->hasEntry() ) {
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH_Actor* anActor = SMESH::FindActorByEntry(anIO->getEntry());
|
|
|
|
if ( anActor && anActor->GetScalarBarActor() && anActor->GetControlMode() != SMESH_Actor::eNone ) {
|
2004-06-18 14:34:31 +06:00
|
|
|
myActor = anActor;
|
|
|
|
vtkScalarBarActor* myScalarBarActor = myActor->GetScalarBarActor();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
if ( myScalarBarActor->GetLookupTable() ) {
|
|
|
|
float *range = myScalarBarActor->GetLookupTable()->GetRange();
|
|
|
|
myMinEdit->setText( QString::number( range[0] ) );
|
|
|
|
myMaxEdit->setText( QString::number( range[1] ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
vtkTextProperty* aTitleTextPrp = myScalarBarActor->GetTitleTextProperty();
|
|
|
|
float aTColor[3];
|
|
|
|
aTitleTextPrp->GetColor( aTColor );
|
|
|
|
myTitleColorBtn->setPaletteBackgroundColor( QColor( (int)( aTColor[0]*255 ), (int)( aTColor[1]*255 ), (int)( aTColor[2]*255 ) ) );
|
|
|
|
myTitleFontCombo->setCurrentItem( aTitleTextPrp->GetFontFamily() );
|
|
|
|
myTitleBoldCheck->setChecked( aTitleTextPrp->GetBold() );
|
|
|
|
myTitleItalicCheck->setChecked( aTitleTextPrp->GetItalic() );
|
|
|
|
myTitleShadowCheck->setChecked( aTitleTextPrp->GetShadow() );
|
|
|
|
|
|
|
|
vtkTextProperty* aLabelsTextPrp = myScalarBarActor->GetLabelTextProperty();
|
|
|
|
float aLColor[3];
|
|
|
|
aLabelsTextPrp->GetColor( aLColor );
|
|
|
|
myLabelsColorBtn->setPaletteBackgroundColor( QColor( (int)( aLColor[0]*255 ), (int)( aLColor[1]*255 ), (int)( aLColor[2]*255 ) ) );
|
|
|
|
myLabelsFontCombo->setCurrentItem( aLabelsTextPrp->GetFontFamily() );
|
|
|
|
myLabelsBoldCheck->setChecked( aLabelsTextPrp->GetBold() );
|
|
|
|
myLabelsItalicCheck->setChecked( aLabelsTextPrp->GetItalic() );
|
|
|
|
myLabelsShadowCheck->setChecked( aLabelsTextPrp->GetShadow() );
|
|
|
|
|
|
|
|
myLabelsSpin->setValue( myScalarBarActor->GetNumberOfLabels() );
|
|
|
|
myColorsSpin->setValue( myScalarBarActor->GetMaximumNumberOfColors() );
|
|
|
|
|
|
|
|
if ( myScalarBarActor->GetOrientation() == VTK_ORIENT_VERTICAL )
|
|
|
|
myVertRadioBtn->setChecked( true );
|
|
|
|
else
|
|
|
|
myHorizRadioBtn->setChecked( true );
|
|
|
|
myIniOrientation = myVertRadioBtn->isChecked();
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
myIniX = myScalarBarActor->GetPosition()[0];
|
|
|
|
myIniY = myScalarBarActor->GetPosition()[1];
|
|
|
|
myIniW = myScalarBarActor->GetWidth();
|
|
|
|
myIniH = myScalarBarActor->GetHeight();
|
|
|
|
setOriginAndSize( myIniX, myIniY, myIniW, myIniH );
|
|
|
|
|
|
|
|
myRangeGrp->setEnabled( true );
|
|
|
|
myFontGrp->setEnabled( true );
|
|
|
|
myLabColorGrp->setEnabled( true );
|
|
|
|
myOrientationGrp->setEnabled( true );
|
|
|
|
myOriginDimGrp->setEnabled( true );
|
|
|
|
myOkBtn->setEnabled( true );
|
|
|
|
myApplyBtn->setEnabled( true );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
myActor = 0;
|
|
|
|
myRangeGrp->setEnabled( false );
|
|
|
|
myFontGrp->setEnabled( false );
|
|
|
|
myLabColorGrp->setEnabled( false );
|
|
|
|
myOrientationGrp->setEnabled( false );
|
|
|
|
myOriginDimGrp->setEnabled( false );
|
|
|
|
myOkBtn->setEnabled( false );
|
|
|
|
myApplyBtn->setEnabled( false );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::closeEvent
|
|
|
|
*
|
|
|
|
* Close event handler
|
|
|
|
*/
|
|
|
|
//=================================================================================================
|
|
|
|
void SMESHGUI_Preferences_ScalarBarDlg::closeEvent( QCloseEvent* e )
|
|
|
|
{
|
2005-06-07 19:22:20 +06:00
|
|
|
if ( mySelectionMgr ) // "Properties" dialog box
|
2004-06-18 14:34:31 +06:00
|
|
|
myDlg = 0;
|
|
|
|
QDialog::closeEvent( e );
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::onXYChanged
|
|
|
|
*
|
|
|
|
* Called when X, Y values are changed
|
|
|
|
*/
|
|
|
|
//=================================================================================================
|
|
|
|
void SMESHGUI_Preferences_ScalarBarDlg::onXYChanged()
|
|
|
|
{
|
|
|
|
myWidthSpin->setMaxValue( 1.0 - myXSpin->value() );
|
|
|
|
myHeightSpin->setMaxValue( 1.0 - myYSpin->value() );
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::setOriginAndSize
|
|
|
|
*
|
|
|
|
* Called when X, Y values are changed
|
|
|
|
*/
|
|
|
|
//=================================================================================================
|
|
|
|
void SMESHGUI_Preferences_ScalarBarDlg::setOriginAndSize( const double x,
|
|
|
|
const double y,
|
|
|
|
const double w,
|
|
|
|
const double h )
|
|
|
|
{
|
|
|
|
blockSignals( true );
|
|
|
|
myXSpin->setValue( x );
|
|
|
|
myYSpin->setValue( y );
|
|
|
|
myWidthSpin->setMaxValue( 1.0 );
|
|
|
|
myWidthSpin->setValue( w );
|
|
|
|
myHeightSpin->setMaxValue( 1.0 );
|
|
|
|
myHeightSpin->setValue( h );
|
|
|
|
blockSignals( false );
|
|
|
|
onXYChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=================================================================================================
|
|
|
|
/*!
|
|
|
|
* SMESHGUI_Preferences_ScalarBarDlg::onOrientationChanged
|
|
|
|
*
|
|
|
|
* Called when orientation is changed
|
|
|
|
*/
|
|
|
|
//=================================================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
void SMESHGUI_Preferences_ScalarBarDlg::onOrientationChanged()
|
2004-06-18 14:34:31 +06:00
|
|
|
{
|
|
|
|
int aOrientation = myVertRadioBtn->isChecked();
|
|
|
|
if ( aOrientation == myIniOrientation )
|
|
|
|
setOriginAndSize( myIniX, myIniY, myIniW, myIniH );
|
|
|
|
else
|
2005-06-07 19:22:20 +06:00
|
|
|
setOriginAndSize( aOrientation ? DEF_VER_X : DEF_HOR_X,
|
|
|
|
aOrientation ? DEF_VER_Y : DEF_HOR_Y,
|
|
|
|
aOrientation ? DEF_VER_W : DEF_HOR_W,
|
2004-06-18 14:34:31 +06:00
|
|
|
aOrientation ? DEF_VER_H : DEF_HOR_H );
|
|
|
|
}
|