]> Creatis software - bbtk.git/blob - packages/kw/src/bbkwLayoutSplit.cxx
b35f7f1d8a10ea465cb16406965b322066734ae7
[bbtk.git] / packages / kw / src / bbkwLayoutSplit.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbkwLayoutSplit.cxx,v $
4   Language:  C++
5   Date:      $Date: 2008/12/02 10:21:42 $
6   Version:   $Revision: 1.2 $
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_KWWIDGETS
38
39 #include "bbkwLayoutSplit.h"
40 #include "bbkwPackage.h"
41 #include "bbtkUtilities.h"
42
43 #include <vtkKWSplitFrame.h>
44
45 namespace bbkw
46 {
47   BBTK_ADD_BLACK_BOX_TO_PACKAGE(kw,LayoutSplit);
48   BBTK_BLACK_BOX_IMPLEMENTATION(LayoutSplit,bbtk::KWBlackBox);
49
50   void LayoutSplit::bbUserConstructor()
51   {
52     bbSetInputOrientation("VERTICAL");
53     bbSetInputProportion(50);
54     bbSetInputWidget1(NULL);
55     bbSetInputWidget2(NULL);
56   }
57
58   void LayoutSplit::Process()
59   {
60   }
61
62
63   void LayoutSplit::CreateWidget(vtkKWWidget* parent) 
64   {
65     vtkKWSplitFrame *splitframe = vtkKWSplitFrame::New();
66     bbSetOutputWidget(splitframe);
67     splitframe->SetParent(parent);
68     splitframe->Create();
69
70     splitframe->SetFrame1MinimumSize(5);
71     splitframe->SetFrame2MinimumSize(5);
72
73     splitframe->GetApplication()->Script("pack %s -side top -expand y",
74                                          splitframe->GetWidgetName());
75     /*
76     splitframe->SetReliefToGroove();
77     splitframe->SetBorderWidth(2);
78     splitframe->SetExpandableFrameToBothFrames();
79     */
80     bbCreateWidgetOfInput("Widget1",splitframe->GetFrame1());
81     bbCreateWidgetOfInput("Widget2",splitframe->GetFrame2());
82
83     /*    
84           int orientation=0;
85     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"0|H|HORIZONTAL")==true)  { orientation=0; }
86     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"1|V|VERTICAL")==true)        { orientation=1; }
87     
88
89           if (orientation==1) { w->SplitHorizontally( w1, w2, 100); }
90     else                { w->SplitVertically( w1, w2, 100);   }
91   
92     */
93   }
94
95
96   // This callback is necessary to get actual processing of the view 
97   // when window is shown
98   /*
99   void  LayoutSplit::OnShowWidget()
100   {
101     if (bbGetOutputWidget()==0)
102       {
103         return;
104         //bbtkError("LayoutSplit::OnShowWidget() : Output Widget == 0 !");
105       }
106     kwSplitterWindow* win = (kwSplitterWindow*)bbGetOutputWidget();
107     int w,h;
108     if (win==0)
109       {
110         return;
111         //      bbtkError("LayoutSplit::OnShowWidget() : win == 0 !");
112       }
113     win->GetClientSize(&w,&h);
114     int pos = 100;
115     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),
116                                     "0|H|HORIZONTAL")==true)  
117       { 
118         pos = (int)(w * bbGetInputProportion() * 0.01);
119       }
120     else 
121       {
122         pos = (int)(h * bbGetInputProportion() * 0.01);
123       } 
124     //    std::cout << "pos = "<<pos<<std::endl;
125   
126     win->SetSashPosition(pos,true);
127     bbUserOnShowWidget("Widget1");
128     bbUserOnShowWidget("Widget2");
129   }
130   */
131
132
133
134 }//namespace bbkw
135
136 #endif // _USE_KWWIDGETS_
137