+ DocDeclStr(
+ wxString, GetAppName() const,
+ "Get the application name.", "");
+ DocDeclStr(
+ void, SetAppName(const wxString& name),
+ "Set the application name. This value may be used automatically by
+`wx.Config` and such.", "");
+
+ DocDeclStr(
+ wxString, GetClassName() const,
+ "Get the application's class name.", "");
+ DocDeclStr(
+ void, SetClassName(const wxString& name),
+ "Set the application's class name. This value may be used for
+X-resources if applicable for the platform", "");
+
+ DocDeclStr(
+ const wxString&, GetVendorName() const,
+ "Get the application's vendor name.", "");
+ DocDeclStr(
+ void, SetVendorName(const wxString& name),
+ "Set the application's vendor name. This value may be used
+automatically by `wx.Config` and such.", "");
+
+
+ DocDeclStr(
+ wxAppTraits*, GetTraits(),
+ "Return (and create if necessary) the app traits object to which we
+delegate for everything which either should be configurable by the
+user (then he can change the default behaviour simply by overriding
+CreateTraits() and returning his own traits object) or which is
+GUI/console dependent as then wx.AppTraits allows us to abstract the
+differences behind the common facade.
+
+:todo: Add support for overriding CreateAppTraits in wxPython.", "");
+
+
+ DocDeclStr(
+ virtual void, ProcessPendingEvents(),
+ "Process all events in the Pending Events list -- it is necessary to
+call this function to process posted events. This normally happens
+during each event loop iteration.", "");
+
+
+ DocDeclStr(
+ virtual bool, Yield(bool onlyIfNeeded = False),
+ "Process all currently pending events right now, instead of waiting
+until return to the event loop. It is an error to call ``Yield``
+recursively unless the value of ``onlyIfNeeded`` is True.
+
+:warning: This function is dangerous as it can lead to unexpected
+ reentrancies (i.e. when called from an event handler it may
+ result in calling the same event handler again), use with
+ extreme care or, better, don't use at all!
+
+:see: `wx.Yield`, `wx.YieldIfNeeded`, `wx.SafeYield`
+", "");