]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxLayoutTab.h
ed3cd476dc8b41ce5ddd2644bd636280dcca862f
[bbtk.git] / packages / wx / src / bbwxLayoutTab.h
1 /*=========================================================================
2                                                                                 
3   Program:   bbtk
4   Module:    $RCSfile: bbwxLayoutTab.h,v $
5   Language:  C++
6   Date:      $Date: 2008/02/19 18:31:36 $
7   Version:   $Revision: 1.1 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*//**
18  * \brief Short description in one line
19  * 
20  * Long description which 
21  * can span multiple lines
22  */
23 /**
24  * \file 
25  * \brief Pattern for the definition of a new type of Node (header)
26  */
27 /**
28  * \class bbtk::NodePatern 
29  * \brief Pattern for the definition of a new type of Node 
30  */
31
32
33 #ifdef _USE_WXWIDGETS_
34
35
36 #ifndef __bbWxLayoutTab_h__
37 #define __bbWxLayoutTab_h__
38
39 #include "bbtkWxBlackBox.h"
40 #include <wx/notebook.h>
41
42
43 namespace bbwx
44 {
45   
46
47   
48   
49   class /*BBTK_EXPORT*/ LayoutTab : public bbtk::WxBlackBox
50   {
51     
52     BBTK_USER_BLACK_BOX_INTERFACE(LayoutTab,bbtk::WxBlackBox);
53     BBTK_DECLARE_INPUT(Widget1,wxWindow*);
54     BBTK_DECLARE_INPUT(Widget2,wxWindow*);
55     BBTK_DECLARE_INPUT(Widget3,wxWindow*);
56     BBTK_DECLARE_INPUT(Widget4,wxWindow*);
57     BBTK_DECLARE_INPUT(Widget5,wxWindow*);
58     BBTK_DECLARE_INPUT(Widget6,wxWindow*);
59     BBTK_DECLARE_INPUT(Widget7,wxWindow*);
60     BBTK_DECLARE_INPUT(Widget8,wxWindow*);
61     BBTK_DECLARE_INPUT(Widget9,wxWindow*);
62     BBTK_DECLARE_INPUT(Orientation,std::string);
63     BBTK_PROCESS(Process);
64     BBTK_CREATE_WIDGET(CreateWidget);
65     
66     void Process();
67     void CreateWidget();
68     
69   protected:
70         virtual void bbUserConstructor();
71         void TryInsertWindow(wxNotebook *book, wxWindow *widgetchild);
72
73   };
74   
75  
76 //=================================================================
77 // BlackBox description
78   BBTK_BEGIN_DESCRIBE_BLACK_BOX(LayoutTab,bbtk::WxBlackBox);
79   BBTK_NAME("LayoutTab");
80   BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr");
81   BBTK_DESCRIPTION("LayoutTab widget (wxNotebook)");
82     // Already inserted for any WxBlackBox  BBTK_CATEGORY("widget");
83     BBTK_INPUT(LayoutTab,Widget1,"widget 1",wxWindow*);
84     BBTK_INPUT(LayoutTab,Widget2,"widget 2",wxWindow*);
85     BBTK_INPUT(LayoutTab,Widget3,"widget 3",wxWindow*);
86     BBTK_INPUT(LayoutTab,Widget4,"widget 4",wxWindow*);
87     BBTK_INPUT(LayoutTab,Widget5,"widget 5",wxWindow*);
88     BBTK_INPUT(LayoutTab,Widget6,"widget 6",wxWindow*);
89     BBTK_INPUT(LayoutTab,Widget7,"widget 7",wxWindow*);
90     BBTK_INPUT(LayoutTab,Widget8,"widget 8",wxWindow*);
91     BBTK_INPUT(LayoutTab,Widget9,"widget 9",wxWindow*);
92     BBTK_INPUT(LayoutTab,Orientation,"Orientation (default T), 0=T=TOP , 1=R=RIGHT , 2=B=BOTTON , 3=L=LEFT " ,std::string);
93   BBTK_END_DESCRIBE_BLACK_BOX(LayoutTab);
94   //=================================================================
95
96
97
98 }
99
100
101
102 //namespace bbtk
103 #endif  //__bbtkWxSizer_h__
104
105 #endif //_USE_WXWIDGETS_