]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxLayoutSplit.cxx
*** empty log message ***
[bbtk.git] / packages / wx / src / bbwxLayoutSplit.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbwxLayoutSplit.cxx,v $
4   Language:  C++
5   Date:      $Date: 2008/12/12 12:56:33 $
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  *  \file
33  *  \brief
34  */
35
36
37 #ifdef _USE_WXWIDGETS_
38
39 #include "bbwxLayoutSplit.h"
40 #include "bbwxPackage.h"
41 #include "bbtkUtilities.h"
42
43
44 namespace bbwx
45 {
46   BBTK_ADD_BLACK_BOX_TO_PACKAGE(wx,LayoutSplit);
47   BBTK_BLACK_BOX_IMPLEMENTATION(LayoutSplit,bbtk::WxBlackBox);
48
49   void LayoutSplit::bbUserConstructor()
50   {
51     bbSetInputOrientation("VERTICAL");
52     bbSetInputProportion(50);
53     bbSetInputWidget1(NULL);
54     bbSetInputWidget2(NULL);
55   }
56
57   void LayoutSplit::Process()
58   {
59   }
60
61   void LayoutSplit::CreateWidget(wxWindow* parent)
62   {
63     wxSplitterWindow* w = new wxSplitterWindow(parent, //bbGetWxParent(),
64                                                -1,
65                                                wxDefaultPosition,
66                                                wxDefaultSize,
67                                                //wxSize(400,200),
68                                                wxSP_3D |
69                                                wxSP_LIVE_UPDATE );
70     w->SetName( bbtk::std2wx( bbGetInputWinTitle() ) );
71 /*
72           wxWindow* w1 = bbGetInputWidget1();
73     wxWindow* w2 = bbGetInputWidget2();
74
75     if (w1==NULL) { w1=new wxPanel(bbGetWxParent()); }
76     if (w2==NULL) { w2=new wxPanel(bbGetWxParent()); }
77     w1->Reparent(w);
78     w2->Reparent(w);
79  */ 
80
81           wxWindow* w1 = bbCreateWidgetOfInput("Widget1",w);
82           wxWindow* w2 = bbCreateWidgetOfInput("Widget2",w);
83           if (w1==NULL) { w1=new wxPanel(parent); }
84           if (w2==NULL) { w2=new wxPanel(parent); }
85           
86           int orientation=0;
87     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"0|H|HORIZONTAL")==true)  { orientation=0; }
88     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"1|V|VERTICAL")==true)        { orientation=1; }
89     
90
91           if (orientation==1) { w->SplitHorizontally( w1, w2, 100); }
92     else                { w->SplitVertically( w1, w2, 100);   }
93   
94     bbSetOutputWidget( w );
95   }
96
97
98   // This callback is necessary to get actual processing of the view 
99   // when window is shown
100   void  LayoutSplit::OnShowWidget()
101   {
102     //    std::cout << "LayoutSplit::OnShowWidget()" << std::endl;
103     if (bbGetOutputWidget()==0)
104       {
105         return;
106         //bbtkError("LayoutSplit::OnShowWidget() : Output Widget == 0 !");
107       }
108     wxSplitterWindow* win = (wxSplitterWindow*)bbGetOutputWidget();
109     int w,h;
110     if (win==0)
111       {
112         return;
113         //      bbtkError("LayoutSplit::OnShowWidget() : win == 0 !");
114       }
115     win->GetClientSize(&w,&h);
116     int pos = 100;
117     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),
118                                     "0|H|HORIZONTAL")==true)  
119       { 
120         pos = (int)(w * bbGetInputProportion() * 0.01);
121       }
122     else 
123       {
124         pos = (int)(h * bbGetInputProportion() * 0.01);
125       } 
126     //    std::cout << "pos = "<<pos<<std::endl;
127   
128     win->SetSashPosition(pos,true);
129     bbUserOnShowWidget("Widget1");
130     bbUserOnShowWidget("Widget2");
131   }
132
133
134
135 }//namespace bbwx
136
137 #endif // _USE_WXWIDGETS_
138