]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMToolsGUI/GEOMToolsGUI_MarkerDlg.h
Salome HOME
IPAL21354 Deleting of referenced father object doesn't work.
[modules/geom.git] / src / GEOMToolsGUI / GEOMToolsGUI_MarkerDlg.h
1 // Copyright (C) 2007-2009  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : GEOMToolsGUI_MarkerDlg.h
23 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
24 //
25
26 #ifndef GEOMTOOLSGUI_MARKERDLG_H
27 #define GEOMTOOLSGUI_MARKERDLG_H
28
29 #include "GEOM_ToolsGUI.hxx"
30
31 #include <QDialog>
32
33 #include <SALOMEconfig.h>
34 #include CORBA_CLIENT_HEADER(GEOM_Gen)
35
36 class QButtonGroup;
37 class QStackedWidget;
38 class QtxComboBox;
39 class SalomeApp_Study;
40
41 class GEOMTOOLSGUI_EXPORT GEOMToolsGUI_MarkerDlg : public QDialog
42 {
43   Q_OBJECT
44
45 public:
46   GEOMToolsGUI_MarkerDlg( QWidget* = 0 );
47   ~GEOMToolsGUI_MarkerDlg();
48
49   void                             setStandardMarker( GEOM::marker_type, GEOM::marker_size );
50   void                             setCustomMarker( int );
51   GEOM::marker_type                getMarkerType() const;
52   GEOM::marker_size                getStandardMarkerScale() const;
53   int                              getCustomMarkerID() const;
54
55   void                             accept();
56
57 protected:
58   void                             keyPressEvent( QKeyEvent* );
59
60 private:
61   void                             init();
62   void                             addTexture( int, bool = false ) const;
63   SalomeApp_Study*                 getStudy() const;
64
65 private slots:
66   void                             browse();
67   void                             help();
68
69 private:
70   GEOM::GEOM_IInsertOperations_var myOperation;
71   QButtonGroup*                    myTypeGroup;
72   QStackedWidget*                  myWGStack;
73   QtxComboBox*                     myStdTypeCombo;
74   QtxComboBox*                     myStdScaleCombo;
75   QtxComboBox*                     myCustomTypeCombo;
76 };
77
78 #endif // GEOMTOOLSGUI_MARKERDLG_H