]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxColourSelector.h
77e4c6a47e11313e35a26476f11da6ede9672191
[bbtk.git] / packages / wx / src / bbwxColourSelector.h
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbwxColourSelector.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 /**
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 base BlackBox definition
55 #include "bbtkAtomicBlackBox.h"
56 // Include bbwx_EXPORT symbol definition
57 #include "bbwx_EXPORT.h"
58
59 // Namespace of the package "wx" is "bbwx" 
60 // Namespace associated to packages should be of the form :
61 // bbPACKAGENAME
62 namespace bbwx
63 {
64
65   //=================================================================
66   class bbwx_EXPORT ColourSelector : public bbtk::AtomicBlackBox
67   {
68     BBTK_BLACK_BOX_INTERFACE(ColourSelector,bbtk::AtomicBlackBox);
69     BBTK_DECLARE_OUTPUT(Out,std::string);
70     BBTK_PROCESS(Process);
71     void Process();
72   protected:
73           
74   };
75   
76   //=================================================================
77   // UserBlackBox description
78   BBTK_BEGIN_DESCRIBE_BLACK_BOX(ColourSelector,bbtk::AtomicBlackBox);
79   BBTK_CATEGORY("widget");
80   BBTK_NAME("ColourSelector");
81   BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
82   BBTK_DESCRIPTION("Colour Selector dialog (bbfication of wxColourSelector)");
83   BBTK_OUTPUT(ColourSelector,Out,"Colour choosen in format '[0,1] [0,1] [0,1]'",std::string,"colour");
84   BBTK_END_DESCRIBE_BLACK_BOX(ColourSelector);
85   //=================================================================
86
87 }//namespace bbtk
88
89 #endif  // __bbtkWxColourSelector_h__
90 #endif //USE_WXWIDGETS