Toolbar/tooltip udates
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16141 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -36,7 +36,7 @@ public:
|
||||
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);
|
||||
|
@@ -65,7 +65,7 @@ void wxTimer::Notify()
|
||||
//
|
||||
wxCHECK_RET( m_owner, _T("wxTimer::Notify() should be overridden.") );
|
||||
|
||||
wxTimerEvent vEvent( m_ulId
|
||||
wxTimerEvent vEvent( m_idTimer
|
||||
,m_milli
|
||||
);
|
||||
|
||||
@@ -85,14 +85,23 @@ bool wxTimer::Start(
|
||||
|
||||
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
|
||||
@@ -112,9 +121,17 @@ void wxTimer::Stop()
|
||||
{
|
||||
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;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
@@ -1439,7 +1439,7 @@ void wxToolBar::OnTimer (
|
||||
wxTimerEvent& rEvent
|
||||
)
|
||||
{
|
||||
if (rEvent.GetId() == (int)m_vToolTimer.GetTimerId())
|
||||
if (rEvent.GetId() == m_vToolTimer.GetTimerId())
|
||||
{
|
||||
wxPoint vPos( m_vXMouse
|
||||
,m_vYMouse
|
||||
@@ -1449,7 +1449,7 @@ void wxToolBar::OnTimer (
|
||||
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();
|
||||
|
@@ -98,7 +98,7 @@ void wxToolTip::DisplayToolTipWindow(
|
||||
LONG lWidth = 0L;
|
||||
LONG lHeight = 0L;
|
||||
|
||||
lWidth = m_sText.Length() * 13;
|
||||
lWidth = m_sText.Length() * 8;
|
||||
lHeight = 15;
|
||||
::WinSetWindowPos( m_hWnd
|
||||
,HWND_TOP
|
||||
|
Reference in New Issue
Block a user