]> SALOME platform Git repositories - modules/gui.git/blob - src/Plot2d/Plot2d_SetupCurveDlg.h
Salome HOME
b36d11c5f94b1d977d8105ea5644f74aa344d55d
[modules/gui.git] / src / Plot2d / Plot2d_SetupCurveDlg.h
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
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.
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 //  SALOME Plot2d : implementation of desktop and GUI kernel
20 //
21 //  File   : Plot2d_SetupCurveDlg.h
22 //  Author : Vadim SANDLER
23 //  Module : SALOME
24
25 #ifndef Plot2d_SetupCurveDlg_H
26 #define Plot2d_SetupCurveDlg_H
27
28 #include <qdialog.h>
29
30 /*!
31   \class Plot2d_SetupCurveDlg
32   Dialog box for setup Plot2d curve
33 */
34
35 class QPushButton;
36 class QComboBox;
37 class QSpinBox;
38 class QToolButton;
39
40 class Plot2d_SetupCurveDlg : public QDialog
41
42   Q_OBJECT
43
44 public:
45   Plot2d_SetupCurveDlg( QWidget* parent = 0 );
46   ~Plot2d_SetupCurveDlg();
47
48 public:
49   void   setLine( const int line, const int width );
50   int    getLine() const;
51   int    getLineWidth() const;
52   void   setMarker( const int marker );
53   int    getMarker() const ;
54   void   setColor( const QColor& color );
55   QColor getColor() const;
56   
57 protected slots:
58   void   onColorChanged();
59
60 private:
61   QPushButton* myOkBtn;
62   QPushButton* myCancelBtn;
63   QComboBox*   myLineCombo;
64   QSpinBox*    myLineSpin;
65   QComboBox*   myMarkerCombo;
66   QToolButton* myColorBtn;
67 };
68
69 #endif // Plot2d_SetupCurveDlg_H
70