]> git.saurik.com Git - wxWidgets.git/commitdiff
Toolbar/tooltip udates
authorDavid Webster <Dave.Webster@bhmi.com>
Thu, 11 Jul 2002 22:14:39 +0000 (22:14 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Thu, 11 Jul 2002 22:14:39 +0000 (22:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16141 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/os2/timer.h
src/os2/timer.cpp
src/os2/toolbar.cpp
src/os2/tooltip.cpp

index 3c9ff0267d047473080c3ec902a7c0af15999499..90019563b3772a7c3eaed894135a9992300f3dc0 100644 (file)
@@ -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);
index 292dfbb1f9f22a8fa7b8ce796af4ef9e848c5c47..bb897e1f78b3c53b8595699047657e2e629d41f0 100644 (file)
@@ -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;
 }
 
 // ----------------------------------------------------------------------------
index a64272e0ab4129386d393612881ed35c95dcadc6..2cf452ba77d9830e34eb80998c5ff38650820bda 100644 (file)
@@ -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();
index 38d58abce4ab8c6ede411b4d19d832edc253ab6e..a89e99ae425fdd3b09a19f0aefc728532aebf984 100644 (file)
@@ -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