1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/slidercmn.cpp
3 // Purpose: wxSlider common code
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart 1998
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 // For compilers that support precompilation, includes "wx.h".
22 #include "wx/wxprec.h"
30 #include "wx/slider.h"
32 extern WXDLLEXPORT_DATA(const char) wxSliderNameStr
[] = "slider";
34 // ----------------------------------------------------------------------------
36 // ----------------------------------------------------------------------------
38 wxDEFINE_FLAGS( wxSliderStyle
)
39 wxBEGIN_FLAGS( wxSliderStyle
)
40 // new style border flags, we put them first to
41 // use them for streaming out
42 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
43 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
44 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
45 wxFLAGS_MEMBER(wxBORDER_RAISED
)
46 wxFLAGS_MEMBER(wxBORDER_STATIC
)
47 wxFLAGS_MEMBER(wxBORDER_NONE
)
49 // old style border flags
50 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
51 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
52 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
53 wxFLAGS_MEMBER(wxRAISED_BORDER
)
54 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
55 wxFLAGS_MEMBER(wxBORDER
)
57 // standard window styles
58 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
59 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
60 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
61 wxFLAGS_MEMBER(wxWANTS_CHARS
)
62 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
63 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
64 wxFLAGS_MEMBER(wxVSCROLL
)
65 wxFLAGS_MEMBER(wxHSCROLL
)
67 wxFLAGS_MEMBER(wxSL_HORIZONTAL
)
68 wxFLAGS_MEMBER(wxSL_VERTICAL
)
69 wxFLAGS_MEMBER(wxSL_AUTOTICKS
)
70 wxFLAGS_MEMBER(wxSL_LABELS
)
71 wxFLAGS_MEMBER(wxSL_LEFT
)
72 wxFLAGS_MEMBER(wxSL_TOP
)
73 wxFLAGS_MEMBER(wxSL_RIGHT
)
74 wxFLAGS_MEMBER(wxSL_BOTTOM
)
75 wxFLAGS_MEMBER(wxSL_BOTH
)
76 wxFLAGS_MEMBER(wxSL_SELRANGE
)
77 wxFLAGS_MEMBER(wxSL_INVERSE
)
78 wxEND_FLAGS( wxSliderStyle
)
80 wxIMPLEMENT_DYNAMIC_CLASS_XTI(wxSlider
, wxControl
, "wx/slider.h")
82 wxBEGIN_PROPERTIES_TABLE(wxSlider
)
83 wxEVENT_RANGE_PROPERTY( Scroll
, wxEVT_SCROLL_TOP
, wxEVT_SCROLL_CHANGED
, wxScrollEvent
)
84 wxEVENT_PROPERTY( Updated
, wxEVT_COMMAND_SLIDER_UPDATED
, wxCommandEvent
)
86 wxPROPERTY( Value
, int, SetValue
, GetValue
, 0, 0 /*flags*/, \
87 wxT("Helpstring"), wxT("group"))
88 wxPROPERTY( Minimum
, int, SetMin
, GetMin
, 0, 0 /*flags*/, \
89 wxT("Helpstring"), wxT("group"))
90 wxPROPERTY( Maximum
, int, SetMax
, GetMax
, 0, 0 /*flags*/, \
91 wxT("Helpstring"), wxT("group"))
92 wxPROPERTY( PageSize
, int, SetPageSize
, GetLineSize
, 1, 0 /*flags*/, \
93 wxT("Helpstring"), wxT("group"))
94 wxPROPERTY( LineSize
, int, SetLineSize
, GetLineSize
, 1, 0 /*flags*/, \
95 wxT("Helpstring"), wxT("group"))
96 wxPROPERTY( ThumbLength
, int, SetThumbLength
, GetThumbLength
, 1, 0 /*flags*/, \
97 wxT("Helpstring"), wxT("group"))
99 wxPROPERTY_FLAGS( WindowStyle
, wxSliderStyle
, long, SetWindowStyleFlag
, \
100 GetWindowStyleFlag
, wxEMPTY_PARAMETER_VALUE
, 0 /*flags*/, \
101 wxT("Helpstring"), wxT("group")) // style
102 wxEND_PROPERTIES_TABLE()
104 wxEMPTY_HANDLERS_TABLE(wxSlider
)
106 wxCONSTRUCTOR_8( wxSlider
, wxWindow
*, Parent
, wxWindowID
, Id
, int, Value
, \
107 int, Minimum
, int, Maximum
, wxPoint
, Position
, wxSize
, Size
, \
110 #endif // wxUSE_SLIDER