]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxLayoutLine.cxx
55be8963eb8896b90d53c7e2b2863fe1a420d858
[bbtk.git] / packages / wx / src / bbwxLayoutLine.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbwxLayoutLine.cxx,v $
4   Language:  C++
5   Date:      $Date: 2008/11/13 14:46:46 $
6   Version:   $Revision: 1.6 $
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  *  \file
34  *  \brief
35  */
36
37
38 #ifdef _USE_WXWIDGETS_
39
40 #include "bbwxLayoutLine.h"
41 #include "bbwxPackage.h"
42 #include "bbtkUtilities.h"
43
44
45 namespace bbwx
46 {
47   BBTK_ADD_BLACK_BOX_TO_PACKAGE(wx, LayoutLine);
48   BBTK_BLACK_BOX_IMPLEMENTATION(LayoutLine,bbtk::WxBlackBox);
49   
50   void LayoutLine::bbUserConstructor()
51   {
52     bbSetInputOrientation("VERTICAL");
53     bbSetInputWidget1(NULL);
54     bbSetInputWidget2(NULL);
55     bbSetInputWidget3(NULL);
56     bbSetInputWidget4(NULL);
57     bbSetInputWidget5(NULL);
58     bbSetInputWidget6(NULL);
59     bbSetInputWidget7(NULL);
60     bbSetInputWidget8(NULL);
61     bbSetInputWidget9(NULL);
62   }
63   
64   void LayoutLine::Process()
65   {
66   }
67   
68   void LayoutLine::TryInsertWindow(wxWindow *parent, wxWindow *w,wxBoxSizer *sizer)
69   {
70     if (w!=NULL)
71       {
72         w->Reparent(parent);
73         sizer->Add(w, 1, wxEXPAND, 0);
74       }
75   }
76   
77   void LayoutLine::CreateWidget()
78   {
79     wxBoxSizer *sizer;
80     wxPanel *w=new wxPanel(bbGetWxParent(), -1);
81     w->SetName( bbtk::std2wx( bbGetInputWinTitle() ) );
82     
83     int style=0;
84     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),
85                                     "0|H|HORIZONTAL")==true)  
86       { style=wxHORIZONTAL; }
87     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),
88                                     "1|V|VERTICAL")==true)      
89       { style=wxVERTICAL;   }
90     
91     sizer       = new wxBoxSizer(style);
92     
93     TryInsertWindow(w,bbGetInputWidget1(),sizer);
94     TryInsertWindow(w,bbGetInputWidget2(),sizer);
95     TryInsertWindow(w,bbGetInputWidget3(),sizer);
96     TryInsertWindow(w,bbGetInputWidget4(),sizer);
97     TryInsertWindow(w,bbGetInputWidget5(),sizer);
98     TryInsertWindow(w,bbGetInputWidget6(),sizer);
99     TryInsertWindow(w,bbGetInputWidget7(),sizer);
100     TryInsertWindow(w,bbGetInputWidget8(),sizer);
101     TryInsertWindow(w,bbGetInputWidget9(),sizer);
102     
103     w   -> SetSizer(sizer);
104     bbSetOutputWidget( w );
105   }
106   
107   // This callback is necessary to get actual processing of the view 
108   // when window is shown
109   void  LayoutLine::OnShowWidget()
110   {
111           bbUserOnShowWidget("Widget1");
112           bbUserOnShowWidget("Widget2");
113           bbUserOnShowWidget("Widget3");
114           bbUserOnShowWidget("Widget4");
115           bbUserOnShowWidget("Widget5");
116           bbUserOnShowWidget("Widget6");
117           bbUserOnShowWidget("Widget7");
118           bbUserOnShowWidget("Widget8");
119           bbUserOnShowWidget("Widget9");
120   }
121
122 }//namespace bbwx
123
124 #endif // _USE_WXWIDGETS_
125