]> Creatis software - bbtk.git/blob - packages/kw/src/bbkwOutputText.h
*** empty log message ***
[bbtk.git] / packages / kw / src / bbkwOutputText.h
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbkwOutputText.h,v $
4   Language:  C++
5   Date:      $Date: 2008/12/03 13:35:27 $
6   Version:   $Revision: 1.1 $
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::OutputText
41  * \brief 
42
43  * \class bbkw::OutputTextWidget
44  * \brief 
45  */
46
47 #ifdef USE_KWWIDGETS
48
49 #ifndef __bbkwOutputText_h_INCLUDED__
50 #define __bbkwOutputText_h_INCLUDED__
51
52 // Include KWBlackBox definition
53 #include "bbtkKWBlackBox.h"
54
55 //#include "vtkCommand.h"
56
57
58 namespace bbkw
59 {
60   
61   //------------------------------------------------------------------------
62   // The black box
63   class /*BBTK_EXPORT*/ OutputText : public bbtk::KWBlackBox //, public vtkCommand
64   {
65     
66     BBTK_BLACK_BOX_INTERFACE(OutputText,bbtk::KWBlackBox);
67     BBTK_DECLARE_INPUT(In,std::string);
68     BBTK_PROCESS(Process);
69     BBTK_CREATE_KWWIDGET(CreateWidget);
70     void Process();
71     void CreateWidget(vtkKWFrame*);
72     //    virtual void Execute(vtkObject* caller, unsigned long, void*);
73  
74  protected:
75     virtual void bbUserConstructor();
76   };
77   //=================================================================
78  
79   //=================================================================
80   // the black box description
81   BBTK_BEGIN_DESCRIBE_BLACK_BOX(OutputText,bbtk::KWBlackBox);
82   BBTK_NAME("kwOutputText");
83   BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
84   // Already inserted for any KWBlackBox  BBTK_CATEGORY("widget");
85   BBTK_DESCRIPTION("OutputText widget (vtkKWLabel)");
86   BBTK_INPUT(OutputText,In,"Text to display",std::string,"");
87   BBTK_END_DESCRIBE_BLACK_BOX(OutputText);
88   //=================================================================
89   
90
91
92 } //namespace bbkw
93
94 #endif  //__bbtkkwOutputText_h_INCLUDED__
95
96 #endif // USE_KWWIDGETS