]> Creatis software - bbtk.git/blob - packages/kw/src/bbkwViewer3D.h
Feature #1774
[bbtk.git] / packages / kw / src / bbkwViewer3D.h
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
6  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9  #
10  #  This software is governed by the CeCILL-B license under French law and
11  #  abiding by the rules of distribution of free software. You can  use,
12  #  modify and/ or redistribute the software under the terms of the CeCILL-B
13  #  license as circulated by CEA, CNRS and INRIA at the following URL
14  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15  #  or in the file LICENSE.txt.
16  #
17  #  As a counterpart to the access to the source code and  rights to copy,
18  #  modify and redistribute granted by the license, users are provided only
19  #  with a limited warranty  and the software's author,  the holder of the
20  #  economic rights,  and the successive licensors  have only  limited
21  #  liability.
22  #
23  #  The fact that you are presently reading this means that you have had
24  #  knowledge of the CeCILL-B license and that you accept its terms.
25  # ------------------------------------------------------------------------ */
26
27
28 /*=========================================================================
29                                                                                 
30   Program:   bbtk
31   Module:    $RCSfile: bbkwViewer3D.h,v $
32   Language:  C++
33   Date:      $Date: 2012/11/16 08:51:05 $
34   Version:   $Revision: 1.2 $
35                                                                                 
36 =========================================================================*//**
37  * \brief Short description in one line
38  * 
39  * Long description which 
40  * can span multiple lines
41  */
42 /**
43  * \file 
44  * \brief Pattern for the definition of a new type of Node (header)
45  */
46 /**
47  * \class bbtk::NodePatern 
48  * \brief Pattern for the definition of a new type of Node 
49  */
50
51
52 #ifdef USE_KWWIDGETS
53 #ifdef USE_VTK
54
55
56 #ifndef __bbkwViewer3D_h__
57 #define __bbkwViewer3D_h__
58
59 #include "bbtkKWBlackBox.h"
60 #include "vtkProp3D.h"
61 #include "vtkInteractorObserver.h"
62
63 #include "bbkw_EXPORT.h"
64
65 namespace bbkw
66 {
67
68   //------------------------------------------------------------------------  
69   class bbkw_EXPORT kwViewer3D : public bbtk::KWBlackBox
70   {    
71     BBTK_BLACK_BOX_INTERFACE(kwViewer3D,bbtk::KWBlackBox);
72     BBTK_DECLARE_INPUT(In1, vtkProp3D *);
73     BBTK_DECLARE_INPUT(In2, vtkProp3D *);
74     BBTK_DECLARE_INPUT(In3, vtkProp3D *);
75     BBTK_DECLARE_INPUT(In4, vtkProp3D *);
76     BBTK_DECLARE_INPUT(In5, vtkProp3D *);
77     BBTK_DECLARE_INPUT(Obs1, vtkInteractorObserver *);
78     BBTK_DECLARE_INPUT(Obs2, vtkInteractorObserver *);
79     BBTK_DECLARE_INPUT(Obs3, vtkInteractorObserver *);
80     BBTK_DECLARE_INPUT(Obs4, vtkInteractorObserver *);
81     BBTK_DECLARE_INPUT(Obs5, vtkInteractorObserver *);
82     BBTK_PROCESS(Process);
83     BBTK_CREATE_KWWIDGET(CreateWidget);
84     //    BBTK_ON_SHOW_WIDGET(OnShowWidget);
85   
86     void Process();
87     void CreateWidget(vtkKWFrame*);
88     //    void OnShowWidget();
89
90   protected:
91     virtual void bbUserConstructor();
92     virtual void bbUserDestructor();
93   };
94    
95   //=================================================================
96   // UserBlackBox description
97   BBTK_BEGIN_DESCRIBE_BLACK_BOX(kwViewer3D,bbtk::KWBlackBox);
98   BBTK_NAME("kwViewer3D");
99   BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
100   BBTK_DESCRIPTION("3D viewer widget (vtkKWRenderWidget)");
101   BBTK_CATEGORY("viewer");
102   BBTK_INPUT(kwViewer3D,In1,"Input actor",vtkProp3D *,"");
103   BBTK_INPUT(kwViewer3D,In2,"Input actor",vtkProp3D *,"");
104   BBTK_INPUT(kwViewer3D,In3,"Input actor",vtkProp3D *,"");
105   BBTK_INPUT(kwViewer3D,In4,"Input actor",vtkProp3D *,"");
106   BBTK_INPUT(kwViewer3D,In5,"Input actor",vtkProp3D *,"");
107   BBTK_INPUT(kwViewer3D,Obs1,"Input observer",vtkInteractorObserver *,"");
108   BBTK_INPUT(kwViewer3D,Obs2,"Input observer",vtkInteractorObserver *,"");
109   BBTK_INPUT(kwViewer3D,Obs3,"Input observer",vtkInteractorObserver *,"");
110   BBTK_INPUT(kwViewer3D,Obs4,"Input observer",vtkInteractorObserver *,"");
111   BBTK_INPUT(kwViewer3D,Obs5,"Input observer",vtkInteractorObserver *,"");
112   BBTK_END_DESCRIBE_BLACK_BOX(kwViewer3D);
113   //=================================================================
114
115
116 }//namespace bbtk
117
118 #endif  //__bbkwViewer3D_h__
119
120 #endif //USE_KW
121 #endif //USE_VTK
122