geom/src/GEOMBase/GEOMBase_aParameterDlg.h

62 lines
2.0 KiB
C
Raw Normal View History

2003-07-09 14:33:44 +00:00
// 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
//
//
//
2004-01-07 15:46:21 +00:00
// File : GEOMBase_aParameterDlg.h
// Author : Lucien PIGNOLONI
2003-07-09 14:33:44 +00:00
// Module : GEOM
2004-01-07 15:46:21 +00:00
// $Header$
2003-05-12 15:24:23 +00:00
2004-01-07 15:46:21 +00:00
#ifndef GEOMBase_aParameterDLG_H
#define GEOMBase_aParameterDLG_H
2003-05-12 15:24:23 +00:00
2006-03-16 11:45:04 +00:00
#include "GEOM_GEOMBase.hxx"
2003-05-12 15:24:23 +00:00
#include <qdialog.h>
class QPushButton;
class QtxDblSpinBox;
2003-05-12 15:24:23 +00:00
//=================================================================================
2004-01-07 15:46:21 +00:00
// class : GEOMBase_aParameterDlg
2003-05-12 15:24:23 +00:00
// purpose :
//=================================================================================
2006-03-16 11:45:04 +00:00
class GEOMBASE_EXPORT GEOMBase_aParameterDlg : public QDialog
2003-05-12 15:24:23 +00:00
{
Q_OBJECT
public:
2004-01-07 15:46:21 +00:00
GEOMBase_aParameterDlg(const char* aValue1 = "25", const char* aTitle1 = "Value :", QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0, const double bottom = -1E6, const double top = +1E6, const int decimals = 6);
~GEOMBase_aParameterDlg();
2003-05-12 15:24:23 +00:00
2004-01-07 15:46:21 +00:00
void setValue(double val);
double getValue();
private:
QPushButton* myButtonOk;
QPushButton* myButtonCancel;
QtxDblSpinBox* mySpinBox;
2003-05-12 15:24:23 +00:00
};
2004-01-07 15:46:21 +00:00
#endif // GEOMBase_aParameterDlg.h