2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
10 # This software is governed by the CeCILL-B license under French law and
11 # abiding by the rules of distribution of free software. You can use,
12 # modify and/ or redistribute the software under the terms of the CeCILL-B
13 # license as circulated by CEA, CNRS and INRIA at the following URL
14 # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15 # or in the file LICENSE.txt.
17 # As a counterpart to the access to the source code and rights to copy,
18 # modify and redistribute granted by the license, users are provided only
19 # with a limited warranty and the software's author, the holder of the
20 # economic rights, and the successive licensors have only limited
23 # The fact that you are presently reading this means that you have had
24 # knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------ */
28 /*=========================================================================
30 Module: $RCSfile: bbwxLayoutSplit.h,v $
32 Date: $Date: 2012/11/16 08:52:14 $
33 Version: $Revision: 1.10 $
34 =========================================================================*/
40 * \brief Widget which splits a window into two parts
43 * \class bbwx::LayoutSplit
44 * \brief Widget which splits a window into two parts
51 #ifndef __bbWxLayoutSplit_h__
52 #define __bbWxLayoutSplit_h__
54 #include "bbtkWxBlackBox.h"
55 #include <wx/splitter.h>
57 #include "bbwx_EXPORT.h"
65 //=================================================================
66 class bbwx_EXPORT LayoutSplit : public bbtk::WxBlackBox
69 BBTK_BLACK_BOX_INTERFACE(LayoutSplit,bbtk::WxBlackBox);
70 BBTK_DECLARE_INPUT(Widget1,wxWindow*);
71 BBTK_DECLARE_INPUT(Widget2,wxWindow*);
72 BBTK_DECLARE_INPUT(Orientation,std::string);
73 BBTK_DECLARE_INPUT(Proportion,int);
74 BBTK_PROCESS(Process);
75 BBTK_CREATE_WIDGET(CreateWidget);
76 BBTK_ON_SHOW_WIDGET(OnShowWidget);
79 void CreateWidget(wxWindow*);
85 //=================================================================
88 //=================================================================
89 // BlackBox description
90 BBTK_BEGIN_DESCRIBE_BLACK_BOX(LayoutSplit,bbtk::WxBlackBox);
91 BBTK_NAME("LayoutSplit");
92 BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
93 BBTK_DESCRIPTION("Widget which splits a window in two fixed size parts (wxSplitterWindow)");
94 // Already inserted for any WxBlackBox BBTK_CATEGORY("widget");
95 BBTK_INPUT(LayoutSplit,Widget1,"Upper or left widget",wxWindow*,"");
96 BBTK_INPUT(LayoutSplit,Widget2,"Lower or right widget",wxWindow*,"");
97 BBTK_INPUT(LayoutSplit,Orientation,"Orientation (default H), 0=H=HORIZONTAL , 1=V=VERTICAL",std::string,"");
98 BBTK_INPUT(LayoutSplit,Proportion,"Proportion (in percent) of the first children in the window",int,"");
99 BBTK_END_DESCRIBE_BLACK_BOX(LayoutSplit);
100 //=================================================================
104 #endif //__bbtkWxLayoutSplit_h__
106 #endif //USE_WXWIDGETS