]> SALOME platform Git repositories - modules/gui.git/blob - src/VTKViewer/VTKViewer_MarkerDlg.h
Salome HOME
59bf03a68d7f3967f55b5c886e458101da44f9c6
[modules/gui.git] / src / VTKViewer / VTKViewer_MarkerDlg.h
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
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
20 #ifndef VTKVIEWER_MARKERDLG_H
21 #define VTKVIEWER_MARKERDLG_H
22
23 #include "VTKViewer.h"
24 #include "VTKViewer_MarkerDef.h"
25
26 #include <QtxDialog.h>
27
28 class VTKViewer_MarkerWidget;
29
30 /*!
31  * Class       : VTKViewer_MarkerDlg
32  * Description : Dialog for specifying point marker parameters
33  */
34 class VTKVIEWER_EXPORT VTKViewer_MarkerDlg : public QtxDialog
35 {
36   Q_OBJECT
37
38 public:
39   VTKViewer_MarkerDlg( QWidget* = 0 );
40   virtual ~VTKViewer_MarkerDlg();
41
42   void                    setHelpData( const QString& theModuleName,
43                                        const QString& theHelpFileName );
44
45   void                    setCustomMarkerMap( VTK::MarkerMap );
46   VTK::MarkerMap          getCustomMarkerMap();
47
48   void                    setStandardMarker( VTK::MarkerType, VTK::MarkerScale );
49   void                    setCustomMarker( int );
50   VTK::MarkerType         getMarkerType() const;
51   VTK::MarkerScale        getStandardMarkerScale() const;
52   int                     getCustomMarkerID() const;
53
54   void                    addExtraStdMarker( VTK::MarkerType, const QPixmap& );
55
56 protected:
57   void                    keyPressEvent( QKeyEvent* );
58
59 private slots:
60   void                    onHelp();
61
62 private:
63   VTKViewer_MarkerWidget* myMarkerWidget;
64
65   QString                 myModuleName;
66   QString                 myHelpFileName;
67 };
68
69 #endif