]> Creatis software - cpPlugins.git/blob - appli/examples/plugins/QT/example_ActorProperties/example_ActorProperties.h
...
[cpPlugins.git] / appli / examples / plugins / QT / example_ActorProperties / example_ActorProperties.h
1 #ifndef __EXAMPLE_ACTORPROPERTIES__H__
2 #define __EXAMPLE_ACTORPROPERTIES__H__
3
4 #include <QMainWindow>
5 #include <cpPlugins/Interface.h>
6 #include <vtkRenderer.h> 
7 #include <vtkSmartPointer.h> 
8
9 // -------------------------------------------------------------------------
10 namespace Ui
11 {
12   class example_ActorProperties;
13 }
14
15 // -------------------------------------------------------------------------
16 /**
17  */
18 class example_ActorProperties
19   : public QMainWindow
20 {
21   Q_OBJECT;
22
23 public:
24   typedef example_ActorProperties Self;
25   typedef QMainWindow       Superclass;
26
27 public:
28   explicit example_ActorProperties(
29     int argc, char* argv[],
30     QWidget* parent = NULL
31     );
32   virtual ~example_ActorProperties( );
33
34 private:
35   Ui::example_ActorProperties* m_UI;
36   vtkSmartPointer< vtkRenderer > m_Renderer;
37   cpPlugins::Interface m_Interface;
38 };
39
40 #endif // __CPEXAMPLE_ACTORPROPERTIES__H__
41
42 // eof - $RCSfile$