]> Creatis software - bbtk.git/blob - packages/kw/src/bbkwSlicer.h
0fa1eefb48e01d2bba9244a9215ff596f03a6766
[bbtk.git] / packages / kw / src / bbkwSlicer.h
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbkwSlicer.h,v $
4   Language:  C++
5   Date:      $Date: 2008/12/03 13:35:27 $
6   Version:   $Revision: 1.3 $
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and 
15 *  abiding by the rules of distribution of free software. You can  use, 
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
17 *  license as circulated by CEA, CNRS and INRIA at the following URL 
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability. 
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */                                                                         
30
31 /**
32  * \file 
33  * \brief Short description in one line
34  * 
35  * Long description which 
36  * can span multiple lines
37 */
38
39 /**
40  * \class bbkw::Slicer
41  * \brief 
42
43  * \class bbkw::SlicerWidget
44  * \brief 
45  */
46
47 #ifdef USE_KWWIDGETS
48
49 // Prevents multiple inclusions : use symbols of the form
50 // __FILENAME_INCLUDED__ 
51 // where FILENAME must be replaced by the actual file name
52 #ifndef __bbkwSlicer_h_INCLUDED__
53 #define __bbkwSlicer_h_INCLUDED__
54
55 // Include KWBlackBox definition
56 #include "bbtkKWBlackBox.h"
57
58 class vtkImageData;
59
60 // Namespace of the package "kw" is "bbkw" 
61 // Namespace associated to packages should be of the form :
62 // bbPACKAGENAME
63 namespace bbkw
64 {
65   
66   
67   //------------------------------------------------------------------------
68   class /*BBTK_EXPORT*/ Slicer : public bbtk::KWBlackBox
69   {
70     
71     BBTK_BLACK_BOX_INTERFACE(Slicer,bbtk::KWBlackBox);
72     BBTK_DECLARE_INPUT(In,vtkImageData*);
73     BBTK_PROCESS(Process);
74     BBTK_CREATE_KWWIDGET(CreateWidget);
75     void Process();
76     void CreateWidget(vtkKWFrame*);
77
78   protected:
79     virtual void bbUserConstructor();
80   };
81   //=================================================================
82  
83   //=================================================================
84   // the black box description
85   BBTK_BEGIN_DESCRIBE_BLACK_BOX(Slicer,bbtk::KWBlackBox);
86   BBTK_NAME("kwSlicer");
87   BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
88   // Already inserted for any KWBlackBox  BBTK_CATEGORY("widget");
89   BBTK_DESCRIPTION("Slicer widget (vtkKWSlicer)");
90   BBTK_INPUT(Slicer,In,"Image to display",vtkImageData*,"");
91   BBTK_END_DESCRIBE_BLACK_BOX(Slicer);
92   //=================================================================
93   
94
95
96 } //namespace bbkw
97
98 #endif  //__bbtkkwSlicer_h_INCLUDED__
99
100 #endif // USE_KWWIDGETS