]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxLayoutSplit.h
2b549b58605802f3497c8e6b92db8020faa700fd
[bbtk.git] / packages / wx / src / bbwxLayoutSplit.h
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbwxLayoutSplit.h,v $
4   Language:  C++
5   Date:      $Date: 2008/11/24 15:45:51 $
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  */
34 /**
35  * \file 
36  * \brief Widget which splits a window into two parts 
37  */
38 /**
39  * \class bbwx::LayoutSplit
40  * \brief Widget which splits a window into two parts 
41  */
42
43
44 #ifdef _USE_WXWIDGETS_
45
46
47 #ifndef __bbWxLayoutSplit_h__
48 #define __bbWxLayoutSplit_h__
49
50 #include "bbtkWxBlackBox.h"
51 #include <wx/splitter.h>
52
53
54
55 namespace bbwx
56 {
57   
58   
59   
60   
61   class LayoutSplit : public bbtk::WxBlackBox
62   {
63     
64     BBTK_BLACK_BOX_INTERFACE(LayoutSplit,bbtk::WxBlackBox);
65     BBTK_DECLARE_INPUT(Widget1,wxWindow*);
66     BBTK_DECLARE_INPUT(Widget2,wxWindow*);
67     BBTK_DECLARE_INPUT(Orientation,std::string);
68     BBTK_DECLARE_INPUT(Proportion,int);
69     BBTK_PROCESS(Process);
70     BBTK_CREATE_WIDGET(CreateWidget);
71     BBTK_ON_SHOW_WIDGET(OnShowWidget);
72     
73     void Process();
74     void CreateWidget(wxWindow*);
75     void OnShowWidget();
76
77   protected:
78     virtual void bbUserConstructor();
79
80   };
81   
82  
83 //=================================================================
84 // BlackBox description
85   BBTK_BEGIN_DESCRIBE_BLACK_BOX(LayoutSplit,bbtk::WxBlackBox);
86   BBTK_NAME("LayoutSplit");
87   BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
88   BBTK_DESCRIPTION("Widget which splits a window in two fixed size parts (wxSplitterWindow)");
89   // Already inserted for any WxBlackBox  BBTK_CATEGORY("widget");
90   BBTK_INPUT(LayoutSplit,Widget1,"Upper or left widget",wxWindow*,"");
91   BBTK_INPUT(LayoutSplit,Widget2,"Lower or right widget",wxWindow*,"");
92   BBTK_INPUT(LayoutSplit,Orientation,"Orientation (default H), 0=H=HORIZONTAL , 1=V=VERTICAL",std::string,"");
93    BBTK_INPUT(LayoutSplit,Proportion,"Proportion (in percent) of the first children in the window",int,"");
94   BBTK_END_DESCRIBE_BLACK_BOX(LayoutSplit);
95   //=================================================================
96 }
97
98 //namespace bbtk
99 #endif  //__bbtkWxLayoutSplit_h__
100
101 #endif //_USE_WXWIDGETS_