]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/event.h
Allow creating wxGraphicsFont without using wxFont.
[wxWidgets.git] / interface / wx / event.h
index d66f50021796497f9548cfc047af5bdd9331f292..3d73cbedd6e2a83ab8af79b5cf54436450e70856 100644 (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