Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/gui.git] / src / VTKViewer / VTKViewer_MarkerWidget.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_MARKERWIDGET_H
21 #define VTKVIEWER_MARKERWIDGET_H
22
23 #include "VTKViewer.h"
24 #include "VTKViewer_MarkerDef.h"
25
26 #include <QWidget>
27
28 class QButtonGroup;
29 class QStackedWidget;
30
31 class QtxComboBox;
32
33 /*!
34  * Class       : VTKViewer_MarkerWidget
35  * Description : Widget for specifying point marker parameters
36  */
37 class VTKVIEWER_EXPORT VTKViewer_MarkerWidget : public QWidget
38 {
39   Q_OBJECT
40
41 public:
42   VTKViewer_MarkerWidget( QWidget* );
43   virtual ~VTKViewer_MarkerWidget();
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 private:
57   void             init();
58   void             addTexture( int, bool = false );
59   QPixmap          markerFromData( const VTK::MarkerData& );
60
61 private slots:
62   void             onStdMarkerChanged( int );
63   void             onBrowse();
64
65 private:
66   QButtonGroup*    myTypeGroup;
67   QStackedWidget*  myWGStack;
68   QtxComboBox*     myStdTypeCombo;
69   QtxComboBox*     myStdScaleCombo;
70   QtxComboBox*     myCustomTypeCombo;
71
72   VTK::MarkerMap   myCustomMarkerMap;
73
74   QList<VTK::MarkerType> myExtraMarkerList;
75 };
76
77 #endif