1 /*=========================================================================
3 Module: $RCSfile: bbwxLayoutSplit.h,v $
5 Date: $Date: 2008/12/12 08:55:24 $
6 Version: $Revision: 1.8 $
7 =========================================================================*/
9 /* ---------------------------------------------------------------------
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
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.
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
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 * ------------------------------------------------------------------------ */
36 * \brief Widget which splits a window into two parts
39 * \class bbwx::LayoutSplit
40 * \brief Widget which splits a window into two parts
47 #ifndef __bbWxLayoutSplit_h__
48 #define __bbWxLayoutSplit_h__
50 #include "bbtkWxBlackBox.h"
51 #include <wx/splitter.h>
53 #include "bbwx_EXPORT.h"
61 //=================================================================
62 class bbwx_EXPORT LayoutSplit : public bbtk::WxBlackBox
65 BBTK_BLACK_BOX_INTERFACE(LayoutSplit,bbtk::WxBlackBox);
66 BBTK_DECLARE_INPUT(Widget1,wxWindow*);
67 BBTK_DECLARE_INPUT(Widget2,wxWindow*);
68 BBTK_DECLARE_INPUT(Orientation,std::string);
69 BBTK_DECLARE_INPUT(Proportion,int);
70 BBTK_PROCESS(Process);
71 BBTK_CREATE_WIDGET(CreateWidget);
72 BBTK_ON_SHOW_WIDGET(OnShowWidget);
75 void CreateWidget(wxWindow*);
79 virtual void bbUserConstructor();
82 //=================================================================
85 //=================================================================
86 // BlackBox description
87 BBTK_BEGIN_DESCRIBE_BLACK_BOX(LayoutSplit,bbtk::WxBlackBox);
88 BBTK_NAME("LayoutSplit");
89 BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
90 BBTK_DESCRIPTION("Widget which splits a window in two fixed size parts (wxSplitterWindow)");
91 // Already inserted for any WxBlackBox BBTK_CATEGORY("widget");
92 BBTK_INPUT(LayoutSplit,Widget1,"Upper or left widget",wxWindow*,"");
93 BBTK_INPUT(LayoutSplit,Widget2,"Lower or right widget",wxWindow*,"");
94 BBTK_INPUT(LayoutSplit,Orientation,"Orientation (default H), 0=H=HORIZONTAL , 1=V=VERTICAL",std::string,"");
95 BBTK_INPUT(LayoutSplit,Proportion,"Proportion (in percent) of the first children in the window",int,"");
96 BBTK_END_DESCRIBE_BLACK_BOX(LayoutSplit);
97 //=================================================================
101 #endif //__bbtkWxLayoutSplit_h__
103 #endif //USE_WXWIDGETS