]>
Commit | Line | Data |
---|---|---|
3c778901 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/common/spinctrlcmn.cpp | |
3 | // Purpose: define wxSpinCtrl event types | |
4 | // Author: Peter Most | |
5 | // Created: 01.11.08 | |
41fb3475 | 6 | // RCS-ID: $Id$ |
3c778901 VZ |
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 | #include "wx/spinctrl.h" | |
28 | ||
fa951ebd VZ |
29 | #if wxUSE_SPINCTRL |
30 | ||
9b11752c VZ |
31 | wxDEFINE_EVENT(wxEVT_COMMAND_SPINCTRL_UPDATED, wxSpinEvent); |
32 | wxDEFINE_EVENT(wxEVT_COMMAND_SPINCTRLDOUBLE_UPDATED, wxSpinDoubleEvent); | |
3c778901 | 33 | |
fa951ebd | 34 | #endif // wxUSE_SPINCTRL |