]> git.saurik.com Git - wxWidgets.git/blame - src/common/spinbuttcmn.cpp
fixing screen coordinate transformation
[wxWidgets.git] / src / common / spinbuttcmn.cpp
CommitLineData
3c778901
VZ
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
28wxDEFINE_EVENT_REFERENCE( wxEVT_SPIN_UP, wxSpinEvent, wxEVT_SCROLL_LINEUP )
29wxDEFINE_EVENT_REFERENCE( wxEVT_SPIN_DOWN, wxSpinEvent, wxEVT_SCROLL_LINEDOWN )
30wxDEFINE_EVENT_REFERENCE( wxEVT_SPIN, wxSpinEvent, wxEVT_SCROLL_THUMBTRACK )
31