X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a78303202fd28b0df07682c773dd404f5462d9e9..75d9e502238df95fa53c0030b1fac0d4f43e4025:/wxPython/src/gtk/_core.py diff --git a/wxPython/src/gtk/_core.py b/wxPython/src/gtk/_core.py index 730f74e6c3..71ef20270f 100644 --- a/wxPython/src/gtk/_core.py +++ b/wxPython/src/gtk/_core.py @@ -3560,6 +3560,7 @@ def InitAllImageHandlers(): """ pass +IMAGE_RESOLUTION_NONE = _core_.IMAGE_RESOLUTION_NONE IMAGE_RESOLUTION_INCHES = _core_.IMAGE_RESOLUTION_INCHES IMAGE_RESOLUTION_CM = _core_.IMAGE_RESOLUTION_CM PNG_TYPE_COLOUR = _core_.PNG_TYPE_COLOUR @@ -7775,7 +7776,7 @@ class App(wx.PyApp): :param redirect: Should ``sys.stdout`` and ``sys.stderr`` be redirected? Defaults to True on Windows and Mac, False - otherwise. If `filename` is None then output will be + otherwise. If ``filename`` is None then output will be redirected to a window that pops up as needed. (You can control what kind of window is created for the output by resetting the class variable ``outputWindowClass`` to a @@ -9077,6 +9078,14 @@ class Window(EvtHandler): """ return _core_.Window_GetExtraStyle(*args, **kwargs) + def HasExtraStyle(*args, **kwargs): + """ + HasExtraStyle(self, int exFlag) -> bool + + Returns ``True`` if the given extra flag is set. + """ + return _core_.Window_HasExtraStyle(*args, **kwargs) + def MakeModal(*args, **kwargs): """ MakeModal(self, bool modal=True) @@ -9351,7 +9360,7 @@ class Window(EvtHandler): Pushes this event handler onto the event handler stack for the window. An event handler is an object that is capable of processing the events - sent to a window. (In other words, is able to dispatch the events to + sent to a window. (In other words, is able to dispatch the events to a handler function.) By default, the window is its own event handler, but an application may wish to substitute another, for example to allow central implementation of event-handling for a variety of @@ -12958,6 +12967,10 @@ class BoxSizer(Sizer): """ return _core_.BoxSizer_SetOrientation(*args, **kwargs) + def IsVertical(*args, **kwargs): + """IsVertical(self) -> bool""" + return _core_.BoxSizer_IsVertical(*args, **kwargs) + Orientation = property(GetOrientation,SetOrientation,doc="See `GetOrientation` and `SetOrientation`") _core_.BoxSizer_swigregister(BoxSizer)