mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-02-23 21:25:38 +05:00
115 lines
3.1 KiB
C++
115 lines
3.1 KiB
C++
// GEOM GEOMGUI : GUI for Geometry component
|
|
//
|
|
// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
// 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.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
|
//
|
|
//
|
|
//
|
|
// File : DlgRef_3Sel3Spin1Check.cxx
|
|
// Author : Michael Zorin
|
|
// Module : GEOM
|
|
// $Header:
|
|
|
|
#include <DlgRef_3Sel3Spin1Check.h>
|
|
#include <qlabel.h>
|
|
#include <qpushbutton.h>
|
|
#include <qlineedit.h>
|
|
#include <qcheckbox.h>
|
|
#include <qspinbox.h>
|
|
#include <qlayout.h>
|
|
#include <qgroupbox.h>
|
|
|
|
|
|
/*
|
|
* Constructs a DlgRef_3Sel3Spin1Check which is a child of 'parent', with the
|
|
* name 'name' and widget flags set to 'f'
|
|
*/
|
|
DlgRef_3Sel3Spin1Check::DlgRef_3Sel3Spin1Check(QWidget* parent, const char* name, WFlags fl)
|
|
:DlgRef_3Sel3Spin1Check_QTD(parent, name, fl)
|
|
{
|
|
SpinBox_1->close(TRUE);
|
|
SpinBox_2->close(TRUE);
|
|
SpinBox_3->close(TRUE);
|
|
SpinBox1 = new DlgRef_SpinBox(GroupBox1, "SpinBox_DX");
|
|
SpinBox2 = new DlgRef_SpinBox(GroupBox1, "SpinBox_DY");
|
|
SpinBox3 = new DlgRef_SpinBox(GroupBox1, "SpinBox_DZ");
|
|
Layout1->addWidget(SpinBox1, 3, 2);
|
|
Layout1->addWidget(SpinBox2, 4, 2);
|
|
Layout1->addWidget(SpinBox3, 5, 2);
|
|
}
|
|
|
|
|
|
/*
|
|
* Destroys the object and frees any allocated resources
|
|
*/
|
|
DlgRef_3Sel3Spin1Check::~DlgRef_3Sel3Spin1Check()
|
|
{
|
|
// no need to delete child widgets, Qt does it all for us
|
|
}
|
|
|
|
void DlgRef_3Sel3Spin1Check:: ShowRows(int fromRow, int toRow, bool toShow)
|
|
{
|
|
typedef void (QWidget::* ShowFun)();
|
|
ShowFun pShowFun;
|
|
|
|
if (toShow)
|
|
pShowFun = &QWidget::show;
|
|
else
|
|
pShowFun = &QWidget::hide;
|
|
|
|
if (fromRow >= 0 && toRow>=0 && toRow >= fromRow)
|
|
{
|
|
if ( fromRow == 0)
|
|
{
|
|
(TextLabel1->*pShowFun)();
|
|
(PushButton1->*pShowFun)();
|
|
(LineEdit1->*pShowFun)();
|
|
}
|
|
if ( fromRow <= 1 && 1 <= toRow)
|
|
{
|
|
(TextLabel2->*pShowFun)();
|
|
(PushButton2->*pShowFun)();
|
|
(LineEdit2->*pShowFun)();
|
|
}
|
|
if ( fromRow <= 2 && 2 <= toRow)
|
|
{
|
|
(TextLabel3->*pShowFun)();
|
|
(PushButton3->*pShowFun)();
|
|
(LineEdit3->*pShowFun)();
|
|
}
|
|
if ( fromRow <= 3 && 3 <= toRow)
|
|
{
|
|
(TextLabel4->*pShowFun)();
|
|
(SpinBox1->*pShowFun)();
|
|
}
|
|
if ( fromRow <= 4 && 4 <= toRow)
|
|
{
|
|
(TextLabel5->*pShowFun)();
|
|
(SpinBox2->*pShowFun)();
|
|
}
|
|
if ( fromRow <= 5 && 5 <= toRow)
|
|
{
|
|
(TextLabel6->*pShowFun)();
|
|
(SpinBox3->*pShowFun)();
|
|
}
|
|
if ( fromRow <= 6 && 6 <= toRow)
|
|
(CheckBox1->*pShowFun)();
|
|
}
|
|
}
|