]> Creatis software - bbtk.git/blob - kernel/src/bbtkQtBlackBox.h
Feature #1774
[bbtk.git] / kernel / src / bbtkQtBlackBox.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: bbtkQtBlackBox.h,v $
31   Language:  C++
32   Date:      $Date: 2012/11/16 08:49:01 $
33   Version:   $Revision: 1.3 $
34 ========================================================================*/
35
36
37 /**
38  * \brief Short description in one line
39  * 
40  * Long description which 
41  * can span multiple lines
42  */
43 /**
44  * \file 
45  * \brief 
46  */
47 /**
48  * \class bbtk::
49  * \brief 
50  */
51 #ifndef __bbtkQtBlackBox_h_INCLUDED__
52 #define __bbtkQtBlackBox_h_INCLUDED__
53
54
55 #ifdef USE_QT
56
57
58 #include "bbtkWidgetBlackBox.h"
59
60
61 #include "bbtkQt.h"
62
63
64 //==================================================================
65 class QWidget;
66 //==================================================================
67
68
69 namespace bbtk
70 {
71
72
73
74
75
76   //==================================================================
77   /// Widget black boxes
78   class BBTK_EXPORT QtBlackBox : public bbtk::WidgetBlackBox<QWidget>
79   { 
80     BBTK_BLACK_BOX_INTERFACE(QtBlackBox,bbtk::WidgetBlackBox<QWidget>);
81   public:
82    //==================================================================    
83     /// Callback for creating a Dialog window (modal)
84     /// ** Must be defined ** in toolkit specific descendants 
85     virtual void bbCreateDialogWindow();
86     //==================================================================    
87
88     //==================================================================    
89     /// Callback for creating a Frame window 
90     /// ** Must be defined ** in toolkit specific descendants 
91     virtual void bbCreateFrameWindow();
92     //==================================================================    
93
94    //==================================================================    
95     QWidget* bbGetWindow() { return bbmWindow; }
96     void bbSetWindow(QWidget*) ;
97     bool bbWindowIsCreated() { return (bbGetWindow() != 0); }
98     //==================================================================    
99
100
101     //==================================================================    
102     virtual void bbShowWindow();
103     //==================================================================   
104  
105     //==================================================================    
106     virtual void bbDestroyWindow();
107     //==================================================================    
108
109   private:
110
111     QWidget* bbmWindow;
112     
113     //==================================================================
114     //    virtual void InitWindowManagerIfNeeded();
115     virtual void IncNbWindowsAlive();
116     virtual void DecNbWindowsAlive();
117     virtual int  GetNbWindowsAlive();
118     virtual bool IsSomeWindowAlive();
119     
120     virtual void IncNbWindowsShown();
121     virtual void DecNbWindowsShown();
122     virtual int  GetNbWindowsShown();
123     virtual bool IsSomeWindowShown();
124     //==================================================================
125
126   };
127   //=================================================================
128  
129
130  //=================================================================
131   // QtBlackBoxDescriptor declaration
132   //
133   class QtBlackBoxDescriptor : public WidgetBlackBoxDescriptor<QWidget>
134   BBTK_BEGIN_DESCRIBE_BLACK_BOX_BODY(QtBlackBox);
135   BBTK_NAME("QtBlackBox");
136   BBTK_END_DESCRIBE_BLACK_BOX(QtBlackBox);
137   //=================================================================
138
139
140
141 } //namespace bbtk
142
143
144
145 #endif  // USE_QT
146 #endif  //__bbtkQtBlackBox_h__