]> Creatis software - bbtk.git/blob - packages/kw/src/bbkwOutputText.cxx
*** empty log message ***
[bbtk.git] / packages / kw / src / bbkwOutputText.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbkwOutputText.cxx,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 
36  * description
37  *  
38  */
39
40 #ifdef USE_KWWIDGETS
41
42 #include "bbkwOutputText.h"
43 #include "bbkwPackage.h"
44 #include "bbtkUtilities.h"
45
46 #include "vtkKWLabel.h"
47 /*
48 #include "vtkObjectFactory.h"
49 #include "vtkCommand.h"
50 */
51 namespace bbkw
52 {
53
54   //--------------------------------------------------------------------------
55   //-------------------------------------------------------------------------
56   // KwBlackBox implementation
57   //--------------------------------------------------------------------------
58   //--------------------------------------------------------------------------
59
60    //--------------------------------------------------------------------------
61   BBTK_BLACK_BOX_IMPLEMENTATION(OutputText,bbtk::KWBlackBox);
62   BBTK_ADD_BLACK_BOX_TO_PACKAGE(kw,OutputText);
63   
64   //--------------------------------------------------------------------------
65   void OutputText::bbUserConstructor() 
66   { 
67     bbSetInputIn("");
68     bbSetOutputWidget(0);
69   }
70   
71  //--------------------------------------------------------------------------
72   void OutputText::Process() 
73   {
74     vtkKWLabel* s = (vtkKWLabel*)bbGetOutputWidget();
75     if (s)
76       {
77         s->SetText( bbGetInputIn().c_str() );
78       }
79   }
80   //--------------------------------------------------------------------------
81
82   //--------------------------------------------------------------------------
83   void OutputText::CreateWidget(vtkKWFrame* parent) 
84   {
85     vtkKWLabel* s = vtkKWLabel::New();
86     bbSetOutputWidget(s);
87     //    s->AddObserver(vtkKWScale::ScaleValueChangingEvent,this);
88     s->SetParent((vtkKWWidget*)parent);
89     s->Create();
90
91     s->SetText(bbGetInputIn().c_str() );
92     // s->SetResolution(1.0);
93     // s->SetLength(150);
94   }
95   //--------------------------------------------------------------------------
96
97   //--------------------------------------------------------------------------
98   /*  
99   void OutputText::Execute(vtkObject* caller, unsigned long, void*)
100   {
101     //    std::cout << "$$$$$$$$$$$$ OutputText CB $$$$$$$$$$$$"<<std::endl;
102     vtkKWScale* scale = (vtkKWScale*)caller;
103     bbSetOutputOut( scale->GetValue() );
104     bbSetInputIn( scale->GetValue() );
105     // and signal that the output has changed
106     bbSignalOutputModification("Out");    
107   } 
108   */
109   //--------------------------------------------------------------------------
110   
111
112
113 } //namespace bbkw
114
115 #endif // USE_KWWIDGETS
116
117