]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/ActorAxesProperties.h
...
[cpPlugins.git] / lib / cpPlugins / ActorAxesProperties.h
1 #ifndef __CPPLUGINS__ACTORAXESPROPERTIES__H__
2 #define __CPPLUGINS__ACTORAXESPROPERTIES__H__
3
4 #include <cpPlugins/ActorProperties.h>
5
6 #ifdef cpPlugins_QT4
7
8 #include <QWidget>
9
10 // -------------------------------------------------------------------------
11 namespace Ui
12 {
13   class ActorAxesProperties;
14 }
15
16 // -------------------------------------------------------------------------
17 namespace cpPlugins
18 {
19   /**
20    */
21   class cpPlugins_EXPORT ActorAxesProperties
22     : public ActorProperties
23   {
24     Q_OBJECT;
25
26   public:
27     explicit ActorAxesProperties( QWidget* parent = 0 );
28     virtual ~ActorAxesProperties( );
29
30     virtual bool addActor( vtkProp* obj ) ITK_OVERRIDE;
31
32   protected:
33     virtual void _updateWidgets( ) ITK_OVERRIDE;
34
35   protected slots:
36     void _Scale( double v );
37     void _TextChanged( const QString& text );
38     void _TextColor( );
39
40   protected:
41     Ui::ActorAxesProperties* m_UI;
42   };
43
44 } // ecapseman
45
46 #endif // cpPlugins_QT4
47
48 #endif // __CPPLUGINS__ACTORAXESPROPERTIES__H__
49
50 // eof - $RCSfile$