]> Creatis software - bbtk.git/blobdiff - packages/kw/src/bbkwSlider.h
*** empty log message ***
[bbtk.git] / packages / kw / src / bbkwSlider.h
index 33f40f97c40c3a74655380046548e51800b4e4d4..f2be2cc3ad0de049bd7079fef161c36f9965eba6 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbkwSlider.h,v $
   Language:  C++
-  Date:      $Date: 2008/11/29 21:41:58 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2008/12/02 13:37:56 $
+  Version:   $Revision: 1.2 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -55,7 +55,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 :
 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 +83,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();
   };
   //=================================================================