added wxAnimationCtrl (patch 1570325)
[wxWidgets.git] / src / common / animatecmn.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/animatecmn.cpp
3 // Purpose: wxAnimation and wxAnimationCtrl
4 // Author: Francesco Montorsi
5 // Modified By:
6 // Created: 24/09/2006
7 // Id: $Id$
8 // Copyright: (c) Francesco Montorsi
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12
13 // ----------------------------------------------------------------------------
14 // headers
15 // ----------------------------------------------------------------------------
16
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
19
20 #if wxUSE_ANIMATIONCTRL
21
22 #include "wx/animate.h"
23
24 const wxChar wxAnimationCtrlNameStr[] = wxT("animationctrl");
25
26 // global object
27 wxAnimation wxNullAnimation;
28
29 //wxIMPLEMENT_HANDLER_LIST_MANAGER(wxAnimation,
30 IMPLEMENT_ABSTRACT_CLASS(wxAnimationBase, wxObject)
31 IMPLEMENT_ABSTRACT_CLASS(wxAnimationCtrlBase, wxControl)
32
33
34
35 #endif // wxUSE_ANIMATIONCTRL