1 /*=========================================================================
4 Module: $RCSfile: bbwxColourSelector.h,v $
6 Date: $Date: 2008/02/20 11:51:59 $
7 Version: $Revision: 1.1 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*//**
20 * \brief Short description in one line
22 * Long description which
23 * can span multiple lines
27 * \class bbwx::ColorDialog
32 #ifdef _USE_WXWIDGETS_
35 #ifndef __bbWxColourSelector_h__
36 #define __bbWxColourSelector_h__
38 #include "bbtkWxBlackBox.h"
40 // Namespace of the package "wx" is "bbwx"
41 // Namespace associated to packages should be of the form :
46 //=================================================================
47 class /*BBTK_EXPORT*/ ColourSelector : public bbtk::AtomicBlackBox
49 BBTK_USER_BLACK_BOX_INTERFACE(ColourSelector,bbtk::AtomicBlackBox);
50 BBTK_DECLARE_OUTPUT(Out,std::string);
51 BBTK_PROCESS(Process);
52 // BBTK_CREATE_WIDGET(CreateWidget);
54 // void CreateWidget();
57 virtual void bbUserConstructor();
59 // wxColourSelector* mColorDialog;
61 //=================================================================
63 //=================================================================
64 // UserBlackBox description
65 BBTK_BEGIN_DESCRIBE_BLACK_BOX(ColourSelector,bbtk::AtomicBlackBox);
66 // Already inserted for any WxBlackBox BBTK_CATEGORY("widget");
67 BBTK_NAME("ColourSelector");
68 BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
69 BBTK_DESCRIPTION("Colour Selector dialog (bbfication of wxColourSelector)");
70 BBTK_OUTPUT(ColourSelector,Out,"The colour selected by the user",std::string);
71 BBTK_END_DESCRIBE_BLACK_BOX(ColourSelector);
72 //=================================================================
77 #endif //__bbtkWxColourSelector_h__
79 #endif //_USE_WXWIDGETS_