]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/tooltip.cpp
document that GetAttribute's argument must not be NULL
[wxWidgets.git] / src / msw / tooltip.cpp
index 0e41099317b87a21805e171333cbe96adadcd2f2..0b705200f7207df181c69c6f280a7a78b10b5c95 100644 (file)
@@ -191,6 +191,18 @@ void wxToolTip::SetDelay(long milliseconds)
                             TTDT_INITIAL, milliseconds);
 }
 
+void wxToolTip::SetAutoPop(long milliseconds)
+{
+    SendTooltipMessageToAll(ms_hwndTT, TTM_SETDELAYTIME,
+                            TTDT_AUTOPOP, milliseconds);
+}
+
+void wxToolTip::SetReshow(long milliseconds)
+{
+    SendTooltipMessageToAll(ms_hwndTT, TTM_SETDELAYTIME,
+                            TTDT_RESHOW, milliseconds);
+}
+
 // ---------------------------------------------------------------------------
 // implementation helpers
 // ---------------------------------------------------------------------------