]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxLayoutSplit.h
Feature #1774
[bbtk.git] / packages / wx / src / bbwxLayoutSplit.h
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
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
9  #
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.
16  #
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
21  #  liability.
22  #
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  # ------------------------------------------------------------------------ */
26
27
28 /*=========================================================================
29   Program:   bbtk
30   Module:    $RCSfile: bbwxLayoutSplit.h,v $
31   Language:  C++
32   Date:      $Date: 2012/11/16 08:52:14 $
33   Version:   $Revision: 1.10 $
34 =========================================================================*/
35
36 /**
37  */
38 /**
39  * \file 
40  * \brief Widget which splits a window into two parts 
41  */
42 /**
43  * \class bbwx::LayoutSplit
44  * \brief Widget which splits a window into two parts 
45  */
46
47
48 #ifdef USE_WXWIDGETS
49
50
51 #ifndef __bbWxLayoutSplit_h__
52 #define __bbWxLayoutSplit_h__
53
54 #include "bbtkWxBlackBox.h"
55 #include <wx/splitter.h>
56
57 #include "bbwx_EXPORT.h"
58
59 namespace bbwx
60 {
61   
62   
63   
64   
65   //=================================================================
66   class bbwx_EXPORT LayoutSplit : public bbtk::WxBlackBox
67   {
68     
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);
77     
78     void Process();
79     void CreateWidget(wxWindow*);
80     void OnShowWidget();
81
82   protected:
83
84   };
85   //=================================================================
86   
87  
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   //=================================================================
101 }
102
103 //namespace bbtk
104 #endif  //__bbtkWxLayoutSplit_h__
105
106 #endif //USE_WXWIDGETS