Interface updates for Phoenix. Add wxNativeFontInfo.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69326 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2011-10-09 01:28:20 +00:00
parent 7cd038613b
commit d775ec48a7
3 changed files with 117 additions and 2 deletions

View File

@@ -318,6 +318,29 @@ public:
/**
Helper class to temporarily change an event to not propagate.
*/
class wxPropagationDisabler
{
public:
wxPropagationDisabler(wxEvent& event);
~wxPropagationDisabler();
};
/**
Helper class to temporarily lower propagation level.
*/
class wxPropagateOnce
{
public:
wxPropagateOnce(wxEvent& event);
~wxPropagateOnce();
};
/**
@class wxEvtHandler