1 /*=========================================================================
4 Module: $RCSfile: bbwxLayoutSplit.cxx,v $
6 Date: $Date: 2008/02/15 12:24:43 $
7 Version: $Revision: 1.1 $
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.
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.
17 =========================================================================*/
24 #ifdef _USE_WXWIDGETS_
26 #include "bbwxLayoutSplit.h"
27 #include "bbwxPackage.h"
28 #include "bbtkUtilities.h"
33 BBTK_ADD_BLACK_BOX_TO_PACKAGE(wx,LayoutSplit);
34 BBTK_USER_BLACK_BOX_IMPLEMENTATION(LayoutSplit,bbtk::WxBlackBox);
36 void LayoutSplit::bbUserConstructor()
38 bbSetInputOrientation("VERTICAL");
39 bbSetInputProportion(50);
40 bbSetInputWidget1(NULL);
41 bbSetInputWidget2(NULL);
44 void LayoutSplit::Process()
48 void LayoutSplit::CreateWidget()
50 wxSplitterWindow* w = new wxSplitterWindow(bbGetWxParent(),
57 w->SetName( bbtk::std2wx( bbGetInputWinTitle() ) );
58 wxWindow* w1 = bbGetInputWidget1();
59 wxWindow* w2 = bbGetInputWidget2();
61 if (w1==NULL) { w1=new wxPanel(bbGetWxParent()); }
62 if (w2==NULL) { w2=new wxPanel(bbGetWxParent()); }
66 if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"0|H|HORIZONTAL")==true) { orientation=0; }
67 if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"1|V|VERTICAL")==true) { orientation=1; }
69 if (orientation==1) { w->SplitHorizontally( w1, w2, 100); }
70 else { w->SplitVertically( w1, w2, 100); }
72 bbSetOutputWidget( w );
77 #endif // _USE_WXWIDGETS_