From 05b8052315efd82c231deb003d21c2ba438d594b Mon Sep 17 00:00:00 2001 From: ouv Date: Tue, 25 Mar 2014 12:00:49 +0400 Subject: [PATCH] Removed obsolete files. --- src/SVTK/SVTK_FitDataDlg.cxx | 287 ----------------------------------- src/SVTK/SVTK_FitDataDlg.h | 75 --------- 2 files changed, 362 deletions(-) delete mode 100644 src/SVTK/SVTK_FitDataDlg.cxx delete mode 100644 src/SVTK/SVTK_FitDataDlg.h diff --git a/src/SVTK/SVTK_FitDataDlg.cxx b/src/SVTK/SVTK_FitDataDlg.cxx deleted file mode 100644 index 5f5cf1850..000000000 --- a/src/SVTK/SVTK_FitDataDlg.cxx +++ /dev/null @@ -1,287 +0,0 @@ -// Copyright (C) 2005 OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D -// -// 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.salome-platform.org/ or email : webmaster.salome@opencascade.com -// -// File : Plot2d_FitDataDlg.cxx -// Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com) -// - -#include "Plot2d_FitDataDlg.h" -#include -#include -#include -#include -#include -#include -#include - -#define SPACING_SIZE 6 -#define MARGIN_SIZE 11 -#define MIN_EDIT_SIZE 100 - -/*! - Constructor -*/ -Plot2d_FitDataDlg::Plot2d_FitDataDlg( QWidget* parent, bool secondAxisY ) - : QDialog( parent ? parent : 0, - Qt::WindowTitleHint | Qt::WindowSystemMenuHint ), - myY2MinEdit( 0 ), myY2MaxEdit( 0 ), mySecondAxisY( secondAxisY ) - -{ - setObjectName( "Plot2d_FitDataDlg" ); - setModal( true ); - setWindowTitle( tr( "FIT_DATA_TLT" ) ); - setSizeGripEnabled( TRUE ); - QGridLayout* topLayout = new QGridLayout( this ); - topLayout->setSpacing( SPACING_SIZE ); - topLayout->setMargin( MARGIN_SIZE ); - - // 'Range' group - myRangeGrp = new QGroupBox( this ); - QGridLayout* aGridLayout = new QGridLayout( myRangeGrp ); - myRangeGrp->setLayout( aGridLayout ); - aGridLayout->setAlignment( Qt::AlignTop ); - aGridLayout->setMargin( MARGIN_SIZE ); - aGridLayout->setSpacing( SPACING_SIZE ); - - myModeAllRB = new QRadioButton( tr( "FIT_ALL" ), myRangeGrp ); - myModeHorRB = new QRadioButton( tr( "FIT_HORIZONTAL" ), myRangeGrp ); - myModeVerRB = new QRadioButton( tr( "FIT_VERTICAL" ), myRangeGrp ); - - QDoubleValidator* aValidator = new QDoubleValidator( this ); - myXMinEdit = new QLineEdit( myRangeGrp ); - myXMinEdit->setValidator( aValidator ); - myXMinEdit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) ); - myXMinEdit->setMinimumSize( MIN_EDIT_SIZE, 0 ); - myXMinEdit->setText( "0.0" ); - - myYMinEdit = new QLineEdit( myRangeGrp ); - myYMinEdit->setValidator( aValidator ); - myYMinEdit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) ); - myYMinEdit->setMinimumSize( MIN_EDIT_SIZE, 0 ); - myYMinEdit->setText( "0.0" ); - - myXMaxEdit = new QLineEdit( myRangeGrp ); - myXMaxEdit->setValidator( aValidator ); - myXMaxEdit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) ); - myXMaxEdit->setMinimumSize( MIN_EDIT_SIZE, 0 ); - myXMaxEdit->setText( "0.0" ); - - myYMaxEdit = new QLineEdit( myRangeGrp ); - myYMaxEdit->setValidator( aValidator ); - myYMaxEdit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) ); - myYMaxEdit->setMinimumSize( MIN_EDIT_SIZE, 0 ); - myYMaxEdit->setText( "0.0" ); - - if (mySecondAxisY) { - myY2MinEdit = new QLineEdit( myRangeGrp ); - myY2MinEdit->setValidator( aValidator ); - myY2MinEdit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) ); - myY2MinEdit->setMinimumSize( MIN_EDIT_SIZE, 0 ); - myY2MinEdit->setText( "0.0" ); - - myY2MaxEdit = new QLineEdit( myRangeGrp ); - myY2MaxEdit->setValidator( aValidator ); - myY2MaxEdit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) ); - myY2MaxEdit->setMinimumSize( MIN_EDIT_SIZE, 0 ); - myY2MaxEdit->setText( "0.0" ); - } - - QFrame* aHLine = new QFrame( myRangeGrp ); - aHLine->setFrameStyle( QFrame::HLine | QFrame::Sunken ); - - QHBoxLayout* aModeLayout = new QHBoxLayout; - aModeLayout->setMargin( 0 ); - aModeLayout->setSpacing( SPACING_SIZE ); - aModeLayout->addWidget( myModeAllRB ); - aModeLayout->addWidget( myModeHorRB ); - aModeLayout->addWidget( myModeVerRB ); - - QLabel* horLab = new QLabel( tr( "HORIZONTAL_AXIS" ), myRangeGrp ); - QLabel* verLab = new QLabel( tr( "VERTICAL_AXIS" ), myRangeGrp ); - if (mySecondAxisY) - verLab->setText( tr( "VERTICAL_LEFT_AXIS" ) ); - - QFont font = horLab->font(); font.setBold( true ); - horLab->setFont( font ); verLab->setFont( font ); - - aGridLayout->addLayout( aModeLayout, 0, 0, 1, 5 ); - aGridLayout->addWidget( aHLine, 1, 0, 1, 5 ); - aGridLayout->addWidget( horLab, 2, 0 ); - aGridLayout->addWidget( new QLabel( tr( "MIN_VALUE_LAB" ), myRangeGrp ), - 2, 1 ); - aGridLayout->addWidget( myXMinEdit, 2, 2 ); - aGridLayout->addWidget( new QLabel( tr( "MAX_VALUE_LAB" ), myRangeGrp ), - 2, 3 ); - aGridLayout->addWidget( myXMaxEdit, 2, 4 ); - aGridLayout->addWidget( verLab, 3, 0 ); - aGridLayout->addWidget( new QLabel( tr( "MIN_VALUE_LAB" ), myRangeGrp ), - 3, 1 ); - aGridLayout->addWidget( myYMinEdit, 3, 2 ); - aGridLayout->addWidget( new QLabel( tr( "MAX_VALUE_LAB" ), myRangeGrp ), - 3, 3 ); - aGridLayout->addWidget( myYMaxEdit, 3, 4 ); - - if (mySecondAxisY) { - QLabel* ver2Lab = new QLabel(tr( "VERTICAL_RIGHT_AXIS" ), myRangeGrp ); - ver2Lab->setFont( font ); - aGridLayout->addWidget( ver2Lab, 4, 0 ); - aGridLayout->addWidget( new QLabel( tr( "MIN_VALUE_LAB" ), myRangeGrp ), - 4, 1 ); - aGridLayout->addWidget( myY2MinEdit, 4, 2 ); - aGridLayout->addWidget( new QLabel( tr( "MAX_VALUE_LAB" ), myRangeGrp ), - 4, 3 ); - aGridLayout->addWidget( myY2MaxEdit, 4, 4 ); - } - - // OK/Cancel buttons - myOkBtn = new QPushButton( tr( "BUT_OK" ), this ); - myOkBtn->setObjectName( "buttonOk" ); - myOkBtn->setAutoDefault( TRUE ); - myOkBtn->setDefault( TRUE ); - myCancelBtn = new QPushButton( tr( "BUT_CANCEL" ), this ); - myCancelBtn->setObjectName( "buttonCancel" ); - myCancelBtn->setAutoDefault( TRUE ); - - topLayout->addWidget( myRangeGrp, 0, 0, 1, 3 ); - topLayout->addWidget( myOkBtn, 1, 0 ); - topLayout->setColumnStretch( 1, 5 ); - topLayout->addWidget( myCancelBtn, 1, 2 ); - - // connect signals - connect( myOkBtn, SIGNAL( clicked() ), this, SLOT( accept() ) ); - connect( myCancelBtn, SIGNAL( clicked() ), this, SLOT( reject() ) ); - connect( myRangeGrp, SIGNAL( clicked( int ) ), this, SLOT( onModeChanged( int ) ) ); - - // initial state - myModeAllRB->setChecked( true ); - onModeChanged( 0 ); -} - -/*! - Sets range -*/ -void Plot2d_FitDataDlg::setRange( const double xMin, - const double xMax, - const double yMin, - const double yMax, - const double y2Min, - const double y2Max) -{ - myXMinEdit->setText( QString::number( xMin ) ); - myXMaxEdit->setText( QString::number( xMax ) ); - myYMinEdit->setText( QString::number( yMin ) ); - myYMaxEdit->setText( QString::number( yMax ) ); - if (mySecondAxisY) { - myY2MinEdit->setText( QString::number( y2Min ) ); - myY2MaxEdit->setText( QString::number( y2Max ) ); - } -} - -/*! - Gets range, returns mode (see getMode()) -*/ -int Plot2d_FitDataDlg::getRange( double& xMin, - double& xMax, - double& yMin, - double& yMax, - double& y2Min, - double& y2Max) -{ - xMin = myXMinEdit->text().toDouble(); - xMax = myXMaxEdit->text().toDouble(); - yMin = myYMinEdit->text().toDouble(); - yMax = myYMaxEdit->text().toDouble(); - if (mySecondAxisY) { - y2Min = myY2MinEdit->text().toDouble(); - y2Max = myY2MaxEdit->text().toDouble(); - } - else { - y2Min = 0; - y2Max = 0; - } - int myMode = 0; - if ( myModeAllRB->isChecked() ) - myMode = 0; - if ( myModeHorRB->isChecked() ) - myMode = 1; - if ( myModeVerRB->isChecked() ) - myMode = 2; - return myMode; -} - -/*! - Gets mode : 0 - Fit all; 1 - Fit horizontal, 2 - Fit vertical -*/ -int Plot2d_FitDataDlg::getMode() -{ - int myMode = 0; - if ( myModeAllRB->isChecked() ) - myMode = 0; - if ( myModeHorRB->isChecked() ) - myMode = 1; - if ( myModeVerRB->isChecked() ) - myMode = 2; - return myMode; -} - -/*! - Called when range mode changed -*/ -void Plot2d_FitDataDlg::onModeChanged(int mode) -{ - bool badFocus; - switch( mode ) { - case 0: // fit all mode - myXMinEdit->setEnabled(true); - myXMaxEdit->setEnabled(true); - myYMinEdit->setEnabled(true); - myYMaxEdit->setEnabled(true); - if (mySecondAxisY) { - myY2MinEdit->setEnabled(true); - myY2MaxEdit->setEnabled(true); - } - break; - case 1: // fit horizontal mode - badFocus = myYMinEdit->hasFocus() || myYMaxEdit->hasFocus(); - myXMinEdit->setEnabled(true); - myXMaxEdit->setEnabled(true); - myYMinEdit->setEnabled(false); - myYMaxEdit->setEnabled(false); - if (mySecondAxisY) { - myY2MinEdit->setEnabled(false); - myY2MaxEdit->setEnabled(false); - } - if (badFocus) - myXMinEdit->setFocus(); - break; - case 2: // fit vertical mode - badFocus = myXMinEdit->hasFocus() || myXMaxEdit->hasFocus(); - myXMinEdit->setEnabled(false); - myXMaxEdit->setEnabled(false); - myYMinEdit->setEnabled(true); - myYMaxEdit->setEnabled(true); - if (mySecondAxisY) { - myY2MinEdit->setEnabled(true); - myY2MaxEdit->setEnabled(true); - } - if (badFocus) - myYMinEdit->setFocus(); - break; - } -} - diff --git a/src/SVTK/SVTK_FitDataDlg.h b/src/SVTK/SVTK_FitDataDlg.h deleted file mode 100644 index 096a8baa6..000000000 --- a/src/SVTK/SVTK_FitDataDlg.h +++ /dev/null @@ -1,75 +0,0 @@ -// Copyright (C) 2005 OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D -// -// 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.salome-platform.org/ or email : webmaster.salome@opencascade.com -// -#ifndef PLOT2D_FITDATADLG_H -#define PLOT2D_FITDATADLG_H - -#include "Plot2d.h" -#include - -class QGroupBox; -class QRadioButton; -class QLineEdit; -class QPushButton; - -class PLOT2D_EXPORT Plot2d_FitDataDlg : public QDialog -{ - Q_OBJECT - -public: -// constuctor - Plot2d_FitDataDlg( QWidget* parent, bool secondAxisY ); - -// sets range - void setRange(const double xMin, - const double xMax, - const double yMin, - const double yMax, - const double y2Min = 0, - const double y2Max = 0); -// gets range, returns mode (see getMode()) - int getRange(double& xMin, - double& xMax, - double& yMin, - double& yMax, - double& y2Min, - double& y2Max); -// gets mode : 0 - Fit all; 1 - Fit horizontal, 2 - Fit vertical - int getMode(); - -protected slots: -// called when range mode changed - void onModeChanged(int); - -private: - QGroupBox* myRangeGrp; - QRadioButton* myModeAllRB; - QRadioButton* myModeHorRB; - QRadioButton* myModeVerRB; - QLineEdit* myXMinEdit; - QLineEdit* myYMinEdit; - QLineEdit* myY2MinEdit; - QLineEdit* myXMaxEdit; - QLineEdit* myYMaxEdit; - QLineEdit* myY2MaxEdit; - QPushButton* myOkBtn; - QPushButton* myCancelBtn; - bool mySecondAxisY; -}; - -#endif -- 2.39.2