]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbmaracasvisuSliderMinMax.h
.
[creaMaracasVisu.git] / bbtk / src / bbmaracasvisuSliderMinMax.h
1 #ifdef _USE_WXWIDGETS_
2 #ifndef __bbcreaMaracasVisuSliderMinMax_h_INCLUDED__
3 #define __bbcreaMaracasVisuSliderMinMax_h_INCLUDED__
4 #include "bbtkWxBlackBox.h"
5
6 #include "mBarRange.h"
7
8 namespace bbcreaMaracasVisu
9 {
10
11
12 //--------------------------------------------------------------------------------------------------------------------------------
13 //--------------------------------------------------------------------------------------------------------------------------------
14 //--------------------------------------------------------------------------------------------------------------------------------
15
16   class SliderMinMax;
17   //------------------------------------------------------------------------------------------------------------------------------------
18   // Event handling auxiliar class
19   //------------------------------------------------------------------------------------------------------------------------------------
20   class wxWidgetSliderMinMax : wxEvtHandler
21   {
22   public:
23           //--------------------------------------------------------------------------------------------------------------------------------
24           // Constructors ans destructors
25           //--------------------------------------------------------------------------------------------------------------------------------
26                 wxWidgetSliderMinMax(SliderMinMax *bbParent,mBarRange * modelBarRange);
27                 ~wxWidgetSliderMinMax();                
28
29           //--------------------------------------------------------------------------------------------------------------------------------
30           // Min-Max Barrange received events
31           //--------------------------------------------------------------------------------------------------------------------------------
32                 void onBarrange(wxCommandEvent& event);
33                 void onActualChange_Bar(wxCommandEvent& event);
34                 void onStartChange_Bar(wxCommandEvent& event);
35                 void onEndChange_Bar(wxCommandEvent& event);
36                 void onSelectionEnd(wxCommandEvent& event);
37                 void onMovedBar(wxCommandEvent& event);
38
39   private:
40           //--------------------------------------------------------------------------------------------------------------------------------
41           // Attributes
42           //--------------------------------------------------------------------------------------------------------------------------------
43           SliderMinMax * mbbtkSliderMinMax;
44           mBarRange * modBarRange;
45   };
46
47
48
49 //--------------------------------------------------------------------------------------------------------------------------------
50 //--------------------------------------------------------------------------------------------------------------------------------
51 //--------------------------------------------------------------------------------------------------------------------------------
52
53
54
55 class /*BBTK_EXPORT*/ SliderMinMax
56  : 
57    public bbtk::WxBlackBox
58 {
59   BBTK_BLACK_BOX_INTERFACE(SliderMinMax,bbtk::WxBlackBox);
60         BBTK_DECLARE_INPUT(Orientation, int);
61         BBTK_DECLARE_INPUT(InW, int);
62         BBTK_DECLARE_INPUT(InH, int);
63         BBTK_DECLARE_INPUT(InMax, int );
64         BBTK_DECLARE_INPUT(InMin, int );
65         BBTK_DECLARE_INPUT(InMaxShow, int );
66         BBTK_DECLARE_INPUT(InMinShow, int );
67         BBTK_DECLARE_INPUT(ShowLabels, int );
68         BBTK_DECLARE_INPUT(ShowActual, bool );
69     BBTK_DECLARE_OUTPUT(OutStart,int);
70         BBTK_DECLARE_OUTPUT(OutEnd,int);
71         BBTK_DECLARE_OUTPUT(OutActual,int);
72   BBTK_PROCESS(Process);
73   void Process();
74   BBTK_CREATE_WIDGET(CreateWidget);
75   void CreateWidget(wxWindow*);
76
77   private:
78         mBarRange* mwxwidget;
79 };
80
81 BBTK_BEGIN_DESCRIBE_BLACK_BOX(SliderMinMax,bbtk::WxBlackBox);
82 BBTK_NAME("SliderMinMax");
83 BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr");
84 BBTK_DESCRIPTION("Slider min max");
85 //BBTK_CATEGORY("__CategoryBlackBox__");
86   BBTK_INPUT(SliderMinMax,Orientation,"Orientation ", int,"");
87   BBTK_INPUT(SliderMinMax,InW,"Width ", int,"");
88   BBTK_INPUT(SliderMinMax,InH,"Height ", int,"");
89   BBTK_INPUT(SliderMinMax,InMax,"Max value ", int,"");
90   BBTK_INPUT(SliderMinMax,InMin, "Min value ",int ,"");
91   BBTK_INPUT(SliderMinMax,InMaxShow,"Max showed value ", int ,"");
92   BBTK_INPUT(SliderMinMax,InMinShow, "Min showed value ",int ,"");
93   BBTK_INPUT(SliderMinMax,ShowLabels, "Show labels ",int ,"");
94   BBTK_INPUT(SliderMinMax,ShowActual, "Show actual (default true)",bool ,"");
95   BBTK_OUTPUT(SliderMinMax,OutStart,"Min value output",int,"");
96   BBTK_OUTPUT(SliderMinMax,OutEnd,"Max value output",int,"");
97   BBTK_OUTPUT(SliderMinMax,OutActual,"Actual value output",int,"");
98 BBTK_END_DESCRIBE_BLACK_BOX(SliderMinMax);
99 }
100 // EO namespace bbcreaMaracasVisu
101
102 #endif // __bbcreaMaracasVisuSliderMinMax_h_INCLUDED__
103 #endif // _USE_WXWIDGETS_
104