]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxColourSelector.h
2b9b6f9a444489706271af2ac9a614d992d82b98
[bbtk.git] / packages / wx / src / bbwxColourSelector.h
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbwxColourSelector.h,v $
4   Language:  C++
5   Date:      $Date: 2008/10/17 08:18:32 $
6   Version:   $Revision: 1.7 $
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 /**
33  * \file 
34  * \brief Short description in one line
35  * 
36  * Long description which 
37  * can span multiple lines
38 */
39
40 /**
41  * \class bbwx::ColorDialog
42  * \brief 
43
44  */
45
46 #ifdef _USE_WXWIDGETS_
47
48 // Prevents multiple inclusions : use symbols of the form
49 // __FILENAME_INCLUDED__ 
50 // where FILENAME must be replaced by the actual file name
51 #ifndef __bbWxColourSelector_h__
52 #define __bbWxColourSelector_h__
53
54 // Include wxBlackBox definition
55 #include "bbtkWxBlackBox.h"
56
57 // Namespace of the package "wx" is "bbwx" 
58 // Namespace associated to packages should be of the form :
59 // bbPACKAGENAME
60 namespace bbwx
61 {
62
63   //=================================================================
64   class /*BBTK_EXPORT*/ ColourSelector : public bbtk::AtomicBlackBox
65   {
66     BBTK_BLACK_BOX_INTERFACE(ColourSelector,bbtk::AtomicBlackBox);
67     BBTK_DECLARE_OUTPUT(Out,std::string);
68     BBTK_PROCESS(Process);
69 //    BBTK_CREATE_WIDGET(CreateWidget);
70     void Process();
71 //    void CreateWidget();
72
73   protected:
74     virtual void bbUserConstructor();
75  // private:
76  //   wxColourSelector* mColorDialog;
77   };
78
79   //=================================================================
80   // UserBlackBox description
81   BBTK_BEGIN_DESCRIBE_BLACK_BOX(ColourSelector,bbtk::AtomicBlackBox);
82   // Already inserted for any WxBlackBox  BBTK_CATEGORY("widget");
83   BBTK_NAME("ColourSelector");
84   BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
85   BBTK_DESCRIPTION("Colour Selector dialog (bbfication of wxColourSelector)");
86   BBTK_OUTPUT(ColourSelector,Out,"Colour choosen in format '[0,1] [0,1] [0,1]'",std::string,"colour");
87   BBTK_END_DESCRIBE_BLACK_BOX(ColourSelector);
88   //=================================================================
89
90 }//namespace bbtk
91 #endif  // __bbtkWxColourSelector_h__
92
93 #endif //_USE_WXWIDGETS_