]> Creatis software - bbtk.git/blob - kernel/src/bbtkQtBlackBox.cxx
8ac7de07a3983c31e8fe4d66da84656b0724ad9f
[bbtk.git] / kernel / src / bbtkQtBlackBox.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbtkQtBlackBox.cxx,v $
4   Language:  C++
5   Date:      $Date: 2009/05/14 14:43:33 $
6   Version:   $Revision: 1.2 $
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  *  \file 
32  *  \brief 
33  */
34
35 #ifdef USE_QT
36
37
38 #include "bbtkQtBlackBox.h"
39 //#include "bbtkBlackBoxOutputConnector.h"
40 //#include "bbtkQtBlackBoxDialog.h"
41 #include "bbtkQtBlackBoxDialog.h"
42
43
44 namespace bbtk
45 {
46
47
48
49   //=========================================================================
50   // QtBlackBox
51   //=========================================================================
52
53   //=========================================================================
54   //=========================================================================
55   //=========================================================================
56   //=========================================================================
57   BBTK_BLACK_BOX_IMPLEMENTATION(QtBlackBox,WidgetBlackBox<QWidget>);
58   //=========================================================================
59   
60   //==================================================================    
61   /// Callback for creating a Dialog window (modal)
62   void QtBlackBox::bbCreateDialogWindow()
63   {
64     Qt::CreateQtAppIfNeeded();
65     QtBlackBoxDialog* w = 0;  
66     w = new QtBlackBoxDialog( GetThisPointer<QtBlackBox>(),
67                               0, 
68                               bbGetInputWinTitle() 
69                               + " - bbtk (c) CREATIS LRMN",
70                               bbGetInputWinWidth() , 
71                               bbGetInputWinHeight()  );
72   }
73   //==================================================================    
74
75   //==================================================================    
76   /// Callback for creating a Frame window 
77   void QtBlackBox::bbCreateFrameWindow()
78   {
79     
80     this->bbCreateDialogWindow();
81
82   }
83   //==================================================================    
84
85   //==================================================================    
86   void QtBlackBox::bbUserSetDefaultValues()
87   {
88   }
89   //==================================================================    
90
91   //==================================================================    
92   void QtBlackBox::bbUserInitializeProcessing()
93   {
94   }
95   //==================================================================    
96  
97  //==================================================================    
98   void QtBlackBox::bbUserFinalizeProcessing()
99   {
100   }
101   //==================================================================    
102    
103   //==================================================================
104   //  void QtBlackBox::InitWindowManagerIfNeeded() { Qt::
105   void QtBlackBox::IncNbWindowsAlive() { Qt::IncNbWindowsAlive(); }
106   void QtBlackBox::DecNbWindowsAlive() { Qt::DecNbWindowsAlive(); }
107   int  QtBlackBox::GetNbWindowsAlive() { return Qt::GetNbWindowsAlive(); }
108   bool QtBlackBox::IsSomeWindowAlive() { return Qt::IsSomeWindowAlive(); }
109   
110   void QtBlackBox::IncNbWindowsShown() { Qt::IncNbWindowsShown(); }
111   void QtBlackBox::DecNbWindowsShown() { Qt::DecNbWindowsShown(); }
112   int  QtBlackBox::GetNbWindowsShown() { return Qt::GetNbWindowsShown(); }
113   bool QtBlackBox::IsSomeWindowShown() { return Qt::GetNbWindowsShown(); }
114   //==================================================================
115   
116
117
118
119 }//namespace bbtk
120
121
122 #endif
123