2 // This file is part of the aMule Project.
4 // Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
6 // Any parts of this program derived from the xMule, lMule or eMule project,
7 // or contributed by third-party developers are copyrighted by their
10 // This program is free software; you can redistribute it and/or modify
11 // it under the terms of the GNU General Public License as published by
12 // the Free Software Foundation; either version 2 of the License, or
13 // (at your option) any later version.
15 // This program is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
20 // You should have received a copy of the GNU General Public License
21 // along with this program; if not, write to the Free Software
22 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
35 * Replacement for wxTimer as it doesn't work on non-X builds
40 CTimer(wxEvtHandler
*owner
, int timerid
= -1);
46 * @param millisecs The frequency of events.
47 * @param oneShot Specifies if only one event should be produced.
49 bool Start(int millisecs
, bool oneShot
= false);
52 * Returns true if the timer is running.
54 bool IsRunning() const;
59 * Note that this does not delete the actual thread
60 * immediatly, but no new events will be queued after
61 * calling this function.
66 CTimerThread
* m_thread
;
67 wxEvtHandler
* m_owner
;
73 class CTimerEvent
: public wxEvent
76 CTimerEvent(int id
= 0);
78 virtual wxEvent
* Clone() const;
82 DECLARE_LOCAL_EVENT_TYPE(MULE_EVT_TIMER
, -1)
85 typedef void (wxEvtHandler::*MuleTimerEventFunction
)(CTimerEvent
&);
87 #define EVT_MULE_TIMER(id, func) \
88 DECLARE_EVENT_TABLE_ENTRY(MULE_EVT_TIMER, id, -1, \
89 (wxObjectEventFunction) (wxEventFunction) \
90 wxStaticCastEvent(MuleTimerEventFunction, &func), (wxObject*) NULL),
93 // File_checked_for_headers