]> Creatis software - bbtk.git/blob - kernel/src/bbtkWxBlackBox.h
afe61751f3456ffb20e0522a0de51381f46cf1f1
[bbtk.git] / kernel / src / bbtkWxBlackBox.h
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbtkWxBlackBox.h,v $
4   Language:  C++
5   Date:      $Date: 2009/06/10 11:36:53 $
6   Version:   $Revision: 1.31 $
7 ========================================================================*/
8
9
10 /* ---------------------------------------------------------------------
11
12 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
13 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
14 *
15 *  This software is governed by the CeCILL-B license under French law and 
16 *  abiding by the rules of distribution of free software. You can  use, 
17 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
18 *  license as circulated by CEA, CNRS and INRIA at the following URL 
19 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
20 *  or in the file LICENSE.txt.
21 *
22 *  As a counterpart to the access to the source code and  rights to copy,
23 *  modify and redistribute granted by the license, users are provided only
24 *  with a limited warranty  and the software's author,  the holder of the
25 *  economic rights,  and the successive licensors  have only  limited
26 *  liability. 
27 *
28 *  The fact that you are presently reading this means that you have had
29 *  knowledge of the CeCILL-B license and that you accept its terms.
30 * ------------------------------------------------------------------------ */                                                                         
31 /**
32  * \brief Short description in one line
33  * 
34  * Long description which 
35  * can span multiple lines
36  */
37 /**
38  * \file 
39  * \brief 
40  */
41 /**
42  * \class bbtk::
43  * \brief 
44  */
45
46
47 #ifdef USE_WXWIDGETS
48
49
50 #ifndef __bbtkWxBlackBox_h__
51 #define __bbtkWxBlackBox_h__
52
53
54
55 #include "bbtkWidgetBlackBox.h"
56 #include "bbtkWx.h"
57
58
59 namespace bbtk
60 {
61
62  
63
64   //==================================================================
65   /// Widget black boxes
66 //EED 10/06/2009 /*BBTK_EXPORT*/
67   class BBTK_EXPORT WxBlackBox : public bbtk::WidgetBlackBox<wxWindow>
68   { 
69   public:
70     BBTK_BLACK_BOX_INTERFACE(WxBlackBox,bbtk::WidgetBlackBox<wxWindow>);
71
72           
73     //  protected:
74     
75   public:
76   
77    //==================================================================    
78     /// Callback for creating a Dialog window (modal)
79     /// ** Must be defined ** in toolkit specific descendants 
80     virtual void bbCreateDialogWindow();
81     //==================================================================    
82
83     //==================================================================    
84     /// Callback for creating a Frame window 
85     /// ** Must be defined ** in toolkit specific descendants 
86     virtual void bbCreateFrameWindow();
87     //==================================================================    
88
89      
90     //==================================================================    
91     wxWindow* bbGetWindow() { return bbmWindow; }
92     void bbSetWindow(wxWindow*) ;
93     bool bbWindowIsCreated() { return (bbGetWindow() != 0); }
94     //==================================================================    
95
96
97     //==================================================================    
98     virtual void bbShowWindow();
99     //==================================================================   
100  
101     //==================================================================    
102     virtual void bbDestroyWindow();
103     //==================================================================    
104
105   private:
106
107     wxWindow* bbmWindow;
108  
109   };
110   //=================================================================
111  
112
113   //=================================================================
114   // WxBlackBoxDescriptor declaration
115   class WxBlackBoxDescriptor : public WidgetBlackBoxDescriptor<wxWindow>
116   BBTK_BEGIN_DESCRIBE_BLACK_BOX_BODY(WxBlackBox);
117   BBTK_NAME("WxBlackBox");
118   BBTK_END_DESCRIBE_BLACK_BOX(WxBlackBox);
119   //=================================================================
120
121
122 } //namespace bbtk
123
124 #endif  //__bbtkWxBlackBox_h__
125
126 #endif  //USE_WXWIDGETS