]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | ///////////////////////////////////////////////////////////////////////////// |
e2731512 | 2 | // Name: src/palmos/timer.cpp |
ffecfa5a | 3 | // Purpose: wxTimer implementation |
e2731512 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e2731512 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
ffecfa5a JS |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
16 | #pragma hdrstop | |
17 | #endif | |
18 | ||
19 | #if wxUSE_TIMER | |
20 | ||
c2ca375c | 21 | #include "wx/palmos/private/timer.h" |
c0badb70 | 22 | |
ffecfa5a | 23 | #ifndef WX_PRECOMP |
ffecfa5a | 24 | #include "wx/list.h" |
8ecff181 | 25 | #include "wx/window.h" |
ffecfa5a JS |
26 | #include "wx/event.h" |
27 | #include "wx/app.h" | |
28 | #include "wx/intl.h" | |
29 | #include "wx/log.h" | |
df69528b | 30 | #include "wx/hashmap.h" |
ffecfa5a JS |
31 | #endif |
32 | ||
ffecfa5a JS |
33 | // ---------------------------------------------------------------------------- |
34 | // private globals | |
35 | // ---------------------------------------------------------------------------- | |
36 | ||
37 | // define a hash containing all the timers: it is indexed by timer id and | |
38 | // contains the corresponding timer | |
c2ca375c | 39 | WX_DECLARE_HASH_MAP(unsigned long, wxPalmOSTimerImpl*, wxIntegerHash, wxIntegerEqual, |
ffecfa5a JS |
40 | wxTimerMap); |
41 | ||
42 | static wxTimerMap g_timerMap; | |
43 | ||
44 | // ---------------------------------------------------------------------------- | |
45 | // private functions | |
46 | // ---------------------------------------------------------------------------- | |
47 | ||
ffecfa5a JS |
48 | // ============================================================================ |
49 | // implementation | |
50 | // ============================================================================ | |
51 | ||
52 | // ---------------------------------------------------------------------------- | |
53 | // wxTimer class | |
54 | // ---------------------------------------------------------------------------- | |
55 | ||
c2ca375c | 56 | void wxPalmOSTimerImpl::Init() |
ffecfa5a JS |
57 | { |
58 | } | |
59 | ||
c2ca375c | 60 | wxPalmOSTimerImpl::~wxPalmOSTimerImpl() |
ffecfa5a JS |
61 | { |
62 | } | |
63 | ||
c2ca375c | 64 | bool wxPalmOSTimerImpl::Start(int milliseconds, bool oneShot) |
ffecfa5a JS |
65 | { |
66 | return false; | |
67 | } | |
68 | ||
c2ca375c | 69 | void wxPalmOSTimerImpl::Stop() |
ffecfa5a JS |
70 | { |
71 | } | |
72 | ||
73 | // ---------------------------------------------------------------------------- | |
74 | // private functions | |
75 | // ---------------------------------------------------------------------------- | |
76 | ||
c2ca375c | 77 | void wxProcessTimer(wxPalmOSTimerImpl& timer) |
ffecfa5a JS |
78 | { |
79 | } | |
80 | ||
ffecfa5a | 81 | #endif // wxUSE_TIMER |