updated SendIdleEvent() docs
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24371 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -28,11 +28,9 @@ INCOMPATIBLE CHANGES SINCE 2.4.x
|
|||||||
- wxWindow::Clear() is now called ClearBackground()
|
- wxWindow::Clear() is now called ClearBackground()
|
||||||
- pointer returned by wxFont::GetNativeFontInfo() must not be deleted now
|
- pointer returned by wxFont::GetNativeFontInfo() must not be deleted now
|
||||||
- wxMouseEvent::Moving() doesn't return true if mouse is being dragged any more
|
- wxMouseEvent::Moving() doesn't return true if mouse is being dragged any more
|
||||||
- pointer returned by wxColourDatabase::FindColour() must now always (and
|
|
||||||
not just sometimes) be deleted, to avoid problems, don't use it at all,
|
|
||||||
use wxColourDatabase::Find() instead.
|
|
||||||
- (most) controls now inherit parents colours by default, override
|
- (most) controls now inherit parents colours by default, override
|
||||||
ShouldInheritColours() to return false if you don't want this to happen
|
ShouldInheritColours() to return false if you don't want this to happen
|
||||||
|
- wxApp::SendIdleEvent() now takes 2 arguments
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -58,6 +56,8 @@ versions, please update your code to not use them.
|
|||||||
- [MSW only] wxWindow::GetUseCtl3D(), GetTransparentBackground() and
|
- [MSW only] wxWindow::GetUseCtl3D(), GetTransparentBackground() and
|
||||||
SetTransparent() as well as wxNO_3D and wxUSER_COLOURS styles
|
SetTransparent() as well as wxNO_3D and wxUSER_COLOURS styles
|
||||||
- wxList keyed interface: use wxHashMap instead
|
- wxList keyed interface: use wxHashMap instead
|
||||||
|
- wxColourDatabase::FindColour(): use Find() instead (NB: different ret type)
|
||||||
|
|
||||||
|
|
||||||
OTHER CHANGES
|
OTHER CHANGES
|
||||||
=============
|
=============
|
||||||
|
@@ -523,14 +523,13 @@ Returns true if unprocessed events are in the window system event queue.
|
|||||||
|
|
||||||
\membersection{wxApp::SendIdleEvents}\label{wxappsendidleevents}
|
\membersection{wxApp::SendIdleEvents}\label{wxappsendidleevents}
|
||||||
|
|
||||||
\func{bool}{SendIdleEvents}{\void}
|
\func{bool}{SendIdleEvents}{\param{wxWindow*}{ win}, \param{wxIdleEvent\& }{event}}
|
||||||
|
|
||||||
Sends idle events to all top-level windows.
|
|
||||||
|
|
||||||
\func{bool}{SendIdleEvents}{\param{wxWindow*}{ win}}
|
|
||||||
|
|
||||||
Sends idle events to a window and its children.
|
Sends idle events to a window and its children.
|
||||||
|
|
||||||
|
Please note that this function is internal to wxWindows and shouldn't be used
|
||||||
|
by user code.
|
||||||
|
|
||||||
\wxheading{Remarks}
|
\wxheading{Remarks}
|
||||||
|
|
||||||
These functions poll the top-level windows, and their children, for idle event processing.
|
These functions poll the top-level windows, and their children, for idle event processing.
|
||||||
@@ -538,8 +537,6 @@ If true is returned, more OnIdle processing is requested by one or more window.
|
|||||||
|
|
||||||
\wxheading{See also}
|
\wxheading{See also}
|
||||||
|
|
||||||
%% GD: OnXXX functions are not documented
|
|
||||||
%%\helpref{wxApp::OnIdle}{wxapponidle}
|
|
||||||
\helpref{wxIdleEvent}{wxidleevent}
|
\helpref{wxIdleEvent}{wxidleevent}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user