X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=packages%2Fkw%2Fsrc%2FbbkwSlider.h;h=83edb953e2ce1f56035c7c307be82fa073df43f2;hb=03cc68dd6b831aa98e1e0fad20a977ffa074be39;hp=33f40f97c40c3a74655380046548e51800b4e4d4;hpb=26a8c332dda10ace9e3e088b2ca8544d188c9743;p=bbtk.git diff --git a/packages/kw/src/bbkwSlider.h b/packages/kw/src/bbkwSlider.h index 33f40f9..83edb95 100644 --- a/packages/kw/src/bbkwSlider.h +++ b/packages/kw/src/bbkwSlider.h @@ -1,32 +1,38 @@ -/*========================================================================= +/* + # --------------------------------------------------------------------- + # + # 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: bbkwSlider.h,v $ Language: C++ - Date: $Date: 2008/11/29 21:41:58 $ - Version: $Revision: 1.1 $ + Date: $Date: 2012/11/16 08:51:05 $ + Version: $Revision: 1.4 $ =========================================================================*/ -/* --------------------------------------------------------------------- - -* 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 @@ -55,7 +61,9 @@ // Include KWBlackBox definition #include "bbtkKWBlackBox.h" - +class vtkObject; +class vtkCommand; +#include "vtkCommand.h" // Namespace of the package "kw" is "bbkw" // Namespace associated to packages should be of the form : @@ -63,66 +71,9 @@ namespace bbkw { - - /* //-------------------------------------------------------------------------- - // Forward declaration of the box - class Slider; - - //-------------------------------------------------------------------------- - // The widget created by the box - class SliderWidget : public kwPanel - { - public: - /// Ctor with the two first params the parent window and the creator box - /// which must be passed to the KwBlackBoxWidget constructor. - /// The other params initialize the widget - SliderWidget(Slider* box, kwWindow *parent, - int orientation, - bool changeresolution, - bool label, - kwString title, - int vmin, - int vmax, - int value, - int track); - /// Dtor - ~SliderWidget(); - /// Events callbacks - /// Called when the slider is moved - void OnSliderTrack(kwScrollEvent& event); - /// Called when the slider is released - void OnSliderRelease(kwScrollEvent& event); - /// Called when the little slider which controls the resolution - /// of the main slider is moved (if activated) - void OnResolutionOfSlider(kwScrollEvent& event); - - // Accessors - int GetValue() { return mkwSlider->GetValue(); } - void SetRange(int min, int max); - // Update the texts which display the min/max/current values of the slider - void RefreshLabels(); - - private: - Slider* mBox; - kwSlider *mkwSlider; - kwSlider *mResolutionOfSlider; - int min; - int max; - int reactiveOnTrack; - kwStaticText *label_vertical; - kwStaticText *label_min; - kwStaticText *label_max; - }; - //------------------------------------------------------------------------ - //------------------------------------------------------------------------ - //------------------------------------------------------------------------ - - */ - - //------------------------------------------------------------------------ // The black box - class /*BBTK_EXPORT*/ Slider : public bbtk::KWBlackBox + class /*BBTK_EXPORT*/ Slider : public bbtk::KWBlackBox, public vtkCommand { BBTK_BLACK_BOX_INTERFACE(Slider,bbtk::KWBlackBox); @@ -138,9 +89,10 @@ namespace bbkw BBTK_PROCESS(Process); BBTK_CREATE_KWWIDGET(CreateWidget); void Process(); - void CreateWidget(vtkKWWidget*); - - protected: + void CreateWidget(vtkKWFrame*); + virtual void Execute(vtkObject* caller, unsigned long, void*); + + protected: virtual void bbUserConstructor(); }; //================================================================= @@ -148,7 +100,7 @@ namespace bbkw //================================================================= // the black box description BBTK_BEGIN_DESCRIBE_BLACK_BOX(Slider,bbtk::KWBlackBox); - BBTK_NAME("Slider"); + BBTK_NAME("kwSlider"); BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr"); // Already inserted for any KWBlackBox BBTK_CATEGORY("widget"); BBTK_DESCRIPTION("Slider widget (vtkKWScale)");