]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxLayoutSplit.h
7e5effaa2b99e09292beb54fb21579209eca55f6
[bbtk.git] / packages / wx / src / bbwxLayoutSplit.h
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbwxLayoutSplit.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  */
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 #include "bbwx_EXPORT.h"
54
55 namespace bbwx
56 {
57   
58   
59   
60   
61   //=================================================================
62   class bbwx_EXPORT LayoutSplit : public bbtk::WxBlackBox
63   {
64     
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);
73     
74     void Process();
75     void CreateWidget(wxWindow*);
76     void OnShowWidget();
77
78   protected:
79
80   };
81   //=================================================================
82   
83  
84   //=================================================================
85   // BlackBox description
86   BBTK_BEGIN_DESCRIBE_BLACK_BOX(LayoutSplit,bbtk::WxBlackBox);
87   BBTK_NAME("LayoutSplit");
88   BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
89   BBTK_DESCRIPTION("Widget which splits a window in two fixed size parts (wxSplitterWindow)");
90   // Already inserted for any WxBlackBox  BBTK_CATEGORY("widget");
91   BBTK_INPUT(LayoutSplit,Widget1,"Upper or left widget",wxWindow*,"");
92   BBTK_INPUT(LayoutSplit,Widget2,"Lower or right widget",wxWindow*,"");
93   BBTK_INPUT(LayoutSplit,Orientation,"Orientation (default H), 0=H=HORIZONTAL , 1=V=VERTICAL",std::string,"");
94   BBTK_INPUT(LayoutSplit,Proportion,"Proportion (in percent) of the first children in the window",int,"");
95   BBTK_END_DESCRIBE_BLACK_BOX(LayoutSplit);
96   //=================================================================
97 }
98
99 //namespace bbtk
100 #endif  //__bbtkWxLayoutSplit_h__
101
102 #endif //USE_WXWIDGETS