]> Creatis software - bbtk.git/blobdiff - packages/wx/src/bbwxSlider.h
No longer 'Categories', only 'Kinds'!
[bbtk.git] / packages / wx / src / bbwxSlider.h
index a0a090f331a69e49cffaf4ccbff11a0abc358e89..2b550ed36d63ec905a7dcfd663d061896395b9c6 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbwxSlider.h,v $
   Language:  C++
-  Date:      $Date: 2008/01/22 15:02:00 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2008/02/04 13:02:58 $
+  Version:   $Revision: 1.4 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -67,9 +67,7 @@ namespace bbwx
   
   //--------------------------------------------------------------------------
   // The widget created by the box 
-  // Its name should be : BOXNAMEWidget
-  // It should inherit WxBlackBoxWidget or a descendant such as WxBlackBoxWidgetPanel
-  class SliderWidget : public wxPanel //public bbtk::WxBlackBoxWidgetPanel
+  class SliderWidget : public wxPanel 
   {
   public:
     /// Ctor with the two first params the parent window and the creator box
@@ -135,13 +133,12 @@ namespace bbwx
     BBTK_DECLARE_INPUT(ReactiveOnTrack,int);    
     BBTK_DECLARE_OUTPUT(Out,int);
     BBTK_PROCESS(Process);
+    BBTK_CREATE_WIDGET(CreateWidget);
     void Process();
+    void CreateWidget();
 
   protected:
     virtual void bbUserConstructor();
-    
-    //  private:
-    //  virtual bbtk::WxBlackBoxWidget* bbUserCreateWidget(wxWindow *parent);
   };
   //=================================================================
  
@@ -150,6 +147,7 @@ namespace bbwx
   BBTK_BEGIN_DESCRIBE_BLACK_BOX(Slider,bbtk::WxBlackBox);
   BBTK_NAME("Slider");
   BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr");
+  BBTK_KEYWORD("wx;widget");
   BBTK_DESCRIPTION("Slider widget (wxSlider)");
   BBTK_INPUT(Slider,In,"Initial position of the slider (default 0)",int);
   BBTK_INPUT(Slider,Min,"Minimum value of the slider (default 0)",int);