]> git.saurik.com Git - wxWidgets.git/blob - src/common/spinbuttcmn.cpp
Reorganized wxListCtrl's window layout (same as wxDataViewCtrl), call RecalculatePosi...
[wxWidgets.git] / src / common / spinbuttcmn.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/spinbuttcmn.cpp
3 // Purpose: define wxSpinButton event types
4 // Author: Peter Most
5 // Created: 01.11.08
6 // RCS-ID: $Id$
7 // Copyright: (c) 2008-2009 wxWidgets team
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 // ============================================================================
12 // declarations
13 // ============================================================================
14
15 // ----------------------------------------------------------------------------
16 // headers
17 // ----------------------------------------------------------------------------
18
19 // For compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
21
22 #ifdef __BORLANDC__
23 #pragma hdrstop
24 #endif
25
26 #include "wx/spinbutt.h"
27
28 #if wxUSE_SPINBTN
29
30 wxDEFINE_EVENT_REFERENCE( wxEVT_SPIN_UP, wxSpinEvent, wxEVT_SCROLL_LINEUP )
31 wxDEFINE_EVENT_REFERENCE( wxEVT_SPIN_DOWN, wxSpinEvent, wxEVT_SCROLL_LINEDOWN )
32 wxDEFINE_EVENT_REFERENCE( wxEVT_SPIN, wxSpinEvent, wxEVT_SCROLL_THUMBTRACK )
33
34 #endif // wxUSE_SPINBTN