]> Creatis software - bbtk.git/blob - kernel/src/bbtkKWBlackBox.h
Feature #1774
[bbtk.git] / kernel / src / bbtkKWBlackBox.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   Program:   bbtk
30   Module:    $RCSfile: bbtkKWBlackBox.h,v $
31   Language:  C++
32   Date:      $Date: 2012/11/16 08:49:01 $
33   Version:   $Revision: 1.7 $
34 ========================================================================*/
35
36
37
38 /**
39  * \brief Short description in one line
40  * 
41  * Long description which 
42  * can span multiple lines
43  */
44 /**
45  * \file 
46  * \brief 
47  */
48 /**
49  * \class bbtk::
50  * \brief 
51  */
52 #ifndef __bbtkKWBlackBox_h_INCLUDED__
53 #define __bbtkKWBlackBox_h_INCLUDED__
54
55
56 #ifdef USE_KWWIDGETS
57
58 #include "bbtkWidgetBlackBox.h"
59
60
61 #include "bbtkKW.h"
62
63
64
65 namespace bbtk
66 {
67
68
69
70   //==================================================================
71   /// Widget black boxes
72   class BBTK_EXPORT KWBlackBox : public bbtk::WidgetBlackBox<vtkKWWidget>
73   { 
74     BBTK_BLACK_BOX_INTERFACE(KWBlackBox,bbtk::WidgetBlackBox<vtkKWWidget>);
75   public:
76    //==================================================================    
77     /// Callback for creating a Dialog window (modal)
78     virtual void bbCreateDialogWindow();
79     //==================================================================    
80
81     //==================================================================    
82     /// Callback for creating a Frame window 
83     virtual void bbCreateFrameWindow();
84     //==================================================================    
85
86     //==================================================================
87     //    virtual void InitWindowManagerIfNeeded();
88     virtual void IncNbWindowsAlive();
89     virtual void DecNbWindowsAlive();
90     virtual int  GetNbWindowsAlive();
91     virtual bool IsSomeWindowAlive();
92     
93     virtual void IncNbWindowsShown();
94     virtual void DecNbWindowsShown();
95     virtual int  GetNbWindowsShown();
96     virtual bool IsSomeWindowShown();
97     //==================================================================
98
99
100  
101     //==================================================================
102     vtkKWWidget* bbCreateWidgetOfInput(const std::string& in, 
103                                        vtkKWFrame* parent);
104     //==================================================================
105
106
107   };
108   //=================================================================
109  
110
111   //=================================================================
112   // KWBlackBoxDescriptor declaration
113   class KWBlackBoxDescriptor : public WidgetBlackBoxDescriptor<vtkKWWidget>
114   BBTK_BEGIN_DESCRIBE_BLACK_BOX_BODY(KWBlackBox);
115   BBTK_NAME("KWBlackBox");
116   BBTK_END_DESCRIBE_BLACK_BOX(KWBlackBox);
117   //=================================================================
118
119
120
121
122
123
124
125
126 } //namespace bbtk
127
128
129
130 #endif  // USE_KWWIDGETS
131 #endif  //__bbtkKWBlackBox_h__