]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxLayoutSplit.cxx
.
[bbtk.git] / packages / wx / src / bbwxLayoutSplit.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbwxLayoutSplit.cxx,v $
4   Language:  C++
5   Date:      $Date: 2009/05/15 14:58:03 $
6   Version:   $Revision: 1.11 $
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         //-----------------------------------------------------------------     
50         void LayoutSplit::bbUserSetDefaultValues()
51         {
52                 bbSetInputOrientation("VERTICAL");
53                 bbSetInputProportion(50);
54                 bbSetInputWidget1(NULL);
55                 bbSetInputWidget2(NULL);                
56         }
57         
58         //-----------------------------------------------------------------     
59         void LayoutSplit::bbUserInitializeProcessing()
60         {
61         }
62         
63         //-----------------------------------------------------------------     
64         void LayoutSplit::bbUserFinalizeProcessing()
65         {
66         }       
67         
68   void LayoutSplit::Process()
69   {
70   }
71
72   void LayoutSplit::CreateWidget(wxWindow* parent)
73   {
74     wxSplitterWindow* w = new wxSplitterWindow(parent, //bbGetWxParent(),
75                                                -1,
76                                                wxDefaultPosition,
77                                                wxDefaultSize,
78                                                //wxSize(400,200),
79                                                wxSP_3D |
80                                                wxSP_LIVE_UPDATE );
81     w->SetName( bbtk::std2wx( bbGetInputWinTitle() ) );
82         w->SetMinimumPaneSize(2);
83 /*
84           wxWindow* w1 = bbGetInputWidget1();
85     wxWindow* w2 = bbGetInputWidget2();
86
87     if (w1==NULL) { w1=new wxPanel(bbGetWxParent()); }
88     if (w2==NULL) { w2=new wxPanel(bbGetWxParent()); }
89     w1->Reparent(w);
90     w2->Reparent(w);
91  */ 
92
93           wxWindow* w1 = bbCreateWidgetOfInput("Widget1",w);
94           wxWindow* w2 = bbCreateWidgetOfInput("Widget2",w);
95           if (w1==NULL) { w1=new wxPanel(parent); }
96           if (w2==NULL) { w2=new wxPanel(parent); }
97           
98           int orientation=0;
99     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"0|H|HORIZONTAL")==true)  { orientation=0; }
100     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"1|V|VERTICAL")==true)        { orientation=1; }
101     
102
103           if (orientation==1) { w->SplitHorizontally( w1, w2, 100); }
104     else                { w->SplitVertically( w1, w2, 100);   }
105   
106     bbSetOutputWidget( w );
107   }
108
109
110   // This callback is necessary to get actual processing of the view 
111   // when window is shown
112   void  LayoutSplit::OnShowWidget()
113   {
114     //    std::cout << "LayoutSplit::OnShowWidget()" << std::endl;
115     if (bbGetOutputWidget()==0)
116       {
117         return;
118         //bbtkError("LayoutSplit::OnShowWidget() : Output Widget == 0 !");
119       }
120     wxSplitterWindow* win = (wxSplitterWindow*)bbGetOutputWidget();
121     int w,h;
122     if (win==0)
123       {
124         return;
125         //      bbtkError("LayoutSplit::OnShowWidget() : win == 0 !");
126       }
127     win->GetClientSize(&w,&h);
128     int pos = 100;
129     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),
130                                     "0|H|HORIZONTAL")==true)  
131       { 
132         pos = (int)(w * bbGetInputProportion() * 0.01);
133       }
134     else 
135       {
136         pos = (int)(h * bbGetInputProportion() * 0.01);
137       } 
138     //    std::cout << "pos = "<<pos<<std::endl;
139   
140     win->SetSashPosition(pos,true);
141     bbUserOnShowWidget("Widget1");
142     bbUserOnShowWidget("Widget2");
143   }
144
145
146
147 }//namespace bbwx
148
149 #endif // _USE_WXWIDGETS_
150