X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fkw%2Fsrc%2FbbkwLayoutSplit.cxx;h=938ef982f0f268b5cd6ca5f0cc4aaac66d100ab8;hb=5d024530691d33ec9a25933c68b09bec211a7ef5;hp=10a2097d1e41e0a058598805eb16c679e5ac69b4;hpb=8cbad3dc345346d0473d93cdc06dc9eb5cbdbf23;p=bbtk.git diff --git a/packages/kw/src/bbkwLayoutSplit.cxx b/packages/kw/src/bbkwLayoutSplit.cxx index 10a2097..938ef98 100644 --- a/packages/kw/src/bbkwLayoutSplit.cxx +++ b/packages/kw/src/bbkwLayoutSplit.cxx @@ -1,32 +1,39 @@ -/*========================================================================= +/* +# --------------------------------------------------------------------- +# +# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image +# pour la SantÈ) +# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton +# Previous Authors : Laurent Guigues, Jean-Pierre Roux +# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil +# +# This software is governed by the CeCILL-B license under French law and +# abiding by the rules of distribution of free software. You can use, +# modify and/ or redistribute the software under the terms of the CeCILL-B +# license as circulated by CEA, CNRS and INRIA at the following URL +# http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +# or in the file LICENSE.txt. +# +# As a counterpart to the access to the source code and rights to copy, +# modify and redistribute granted by the license, users are provided only +# with a limited warranty and the software's author, the holder of the +# economic rights, and the successive licensors have only limited +# liability. +# +# The fact that you are presently reading this means that you have had +# knowledge of the CeCILL-B license and that you accept its terms. +# ------------------------------------------------------------------------ */ + + +/*========================================================================= Program: bbtk Module: $RCSfile: bbkwLayoutSplit.cxx,v $ Language: C++ - Date: $Date: 2008/12/02 13:37:56 $ - Version: $Revision: 1.3 $ + Date: $Date: 2012/11/16 08:51:05 $ + Version: $Revision: 1.5 $ =========================================================================*/ -/* --------------------------------------------------------------------- - -* Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale) -* Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux -* -* This software is governed by the CeCILL-B license under French law and -* abiding by the rules of distribution of free software. You can use, -* modify and/ or redistribute the software under the terms of the CeCILL-B -* license as circulated by CEA, CNRS and INRIA at the following URL -* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -* or in the file LICENSE.txt. -* -* As a counterpart to the access to the source code and rights to copy, -* modify and redistribute granted by the license, users are provided only -* with a limited warranty and the software's author, the holder of the -* economic rights, and the successive licensors have only limited -* liability. -* -* The fact that you are presently reading this means that you have had -* knowledge of the CeCILL-B license and that you accept its terms. -* ------------------------------------------------------------------------ */ + /** * \file @@ -100,11 +107,16 @@ namespace bbkw width = width - 5; height = height - 5 ; - + + /* bbGetOutputWidget()->GetApplication()->Script("place %s -x 0 -y 0 -width %d -height %d", bbGetOutputWidget()->GetWidgetName(), parent->GetWidth(), parent->GetHeight() ); + */ + bbGetOutputWidget()->GetApplication()->Script + ("pack %s -expand yes -fill both", + bbGetOutputWidget()->GetWidgetName()); splitframe->SetReliefToGroove(); splitframe->SetBorderWidth(2); @@ -114,7 +126,17 @@ namespace bbkw vtkKWWidget* w2 = bbCreateWidgetOfInput("Widget2",splitframe->GetFrame2()); - + splitframe->GetApplication()->Script + ("pack %s -expand yes -fill both", + w1->GetWidgetName()) ; + splitframe->GetApplication()->Script + ("pack %s -expand yes -fill both", + w2->GetWidgetName()) ; + + /* + splitframe->GetApplication()->Script("pack %s -expand yes -fill x -fill y", w2->GetWidgetName()); + */ + /* splitframe->GetApplication()->Script("place %s -x 0 -y 0 -width %d -height %d", w1->GetWidgetName(), width, @@ -125,7 +147,7 @@ namespace bbkw width, height); - + */ }