virtual void Stop(void);
inline virtual bool IsRunning(void) const { return m_ulId != 0L; }
- inline ULONG GetTimerId(void) const { return m_ulId; }
+ inline int GetTimerId(void) const { return m_idTimer; }
protected:
void Init(void);
//
wxCHECK_RET( m_owner, _T("wxTimer::Notify() should be overridden.") );
- wxTimerEvent vEvent( m_ulId
+ wxTimerEvent vEvent( m_idTimer
,m_milli
);
wxTimerList.DeleteObject(this);
- //
- // Create a windowless timer
- //
- m_ulId = ::WinStartTimer( m_Hab
- ,NULLHANDLE
- ,0
- ,(ULONG)nMilliseconds
- );
+ wxWindow* pWin = NULL;
+
+ if (m_owner)
+ {
+ pWin = (wxWindow*)m_owner;
+ m_ulId = ::WinStartTimer( m_Hab
+ ,pWin->GetHWND()
+ ,m_idTimer
+ ,(ULONG)nMilliseconds
+ );
+ }
+ else
+ m_ulId = ::WinStartTimer( m_Hab
+ ,NULLHANDLE
+ ,0
+ ,(ULONG)nMilliseconds
+ );
if (m_ulId > 0L)
{
wxTimerList.Append( m_ulId
{
if ( m_ulId )
{
- ::WinStopTimer(m_Hab, NULL, m_ulId);
+ if (m_owner)
+ {
+ wxWindow* pWin = (wxWindow*)m_owner;
+
+ ::WinStopTimer(m_Hab, pWin->GetHWND(), m_ulId);
+ }
+ else
+ ::WinStopTimer(m_Hab, NULLHANDLE, m_ulId);
wxTimerList.DeleteObject(this);
}
+ m_ulId = 0L;
}
// ----------------------------------------------------------------------------
wxTimerEvent& rEvent
)
{
- if (rEvent.GetId() == (int)m_vToolTimer.GetTimerId())
+ if (rEvent.GetId() == m_vToolTimer.GetTimerId())
{
wxPoint vPos( m_vXMouse
,m_vYMouse
m_vToolTimer.Stop();
m_vToolExpTimer.Start(3000L, TRUE);
}
- else if (rEvent.GetId() == (int)m_vToolExpTimer.GetTimerId())
+ else if (rEvent.GetId() == m_vToolExpTimer.GetTimerId())
{
m_pToolTip->HideToolTipWindow();
GetParent()->Refresh();