]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxCommandButton.h
2490e8b8ef75f48a587cc3369faccff1e2565ec5
[bbtk.git] / packages / wx / src / bbwxCommandButton.h
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbwxCommandButton.h,v $
4   Language:  C++
5   Date:      $Date: 2009/05/15 14:58:03 $
6   Version:   $Revision: 1.9 $
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  * \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 CommandButton
43  * \brief 
44  */ 
45  
46  
47 #ifdef USE_WXWIDGETS
48  
49 #ifndef __bbwxCommandButton_h_INCLUDED_H__ 
50 #define __bbwxCommandButton_h_INCLUDED_H__ 
51  
52  
53 #include "bbtkWxBlackBox.h" 
54 #include "bbwx_EXPORT.h"
55  
56  
57 namespace bbwx 
58
59   
60   //--------------------------------------------------------------------------
61   class bbwx_EXPORT CommandButton : public bbtk::WxBlackBox 
62   {     
63     friend class CommandButtonWidget;
64     BBTK_BLACK_BOX_INTERFACE(CommandButton,bbtk::WxBlackBox); 
65     BBTK_DECLARE_INPUT(In, std::string );       
66     BBTK_DECLARE_INPUT(Label, std::string ); 
67     BBTK_DECLARE_INPUT(Colour, std::vector<double> );   
68     //    BBTK_DECLARE_OUTPUT(Out,int); 
69     BBTK_PROCESS(Process); 
70     void Process(); 
71     BBTK_CREATE_WIDGET(CreateWidget);
72     void CreateWidget(wxWindow*);
73   protected: 
74     
75     
76   private: 
77     void UpdateColour();
78     void UpdateLabel();
79   }; 
80   
81   //================================================================= 
82   // UserBlackBox description 
83   BBTK_BEGIN_DESCRIBE_BLACK_BOX(CommandButton,bbtk::WxBlackBox); 
84   BBTK_NAME("CommandButton"); 
85   BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr"); 
86   BBTK_DESCRIPTION("Button which executes bbi commands"); 
87   
88   typedef std::vector<double> vectorcolour;
89   
90   BBTK_INPUT(CommandButton,In,"Commands to be executed separated by commas (;). Each single quote (') is replaced by a double quote (\").",std::string,"");   
91   BBTK_INPUT(CommandButton,Label,"Label of the button",std::string,""); 
92   BBTK_INPUT(CommandButton,Colour,"Colour of the button (-1 -1 -1  Background)",vectorcolour,"colour"); 
93   //    BBTK_OUTPUT(CommandButton,Out,"..Out..",int); 
94   BBTK_END_DESCRIBE_BLACK_BOX(CommandButton); 
95   //================================================================= 
96   
97   
98 }//namespace  bbwx 
99
100 #endif  // __bbwxCommandButton_h_INCLUDED_H__ 
101
102 #endif //USE_WXWIDGETS