X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ddeca22ce86e16e0d67e1a7dd2102c8251ab4792..75d9e502238df95fa53c0030b1fac0d4f43e4025:/wxPython/src/gtk/_core.py diff --git a/wxPython/src/gtk/_core.py b/wxPython/src/gtk/_core.py index d57326521b..71ef20270f 100644 --- a/wxPython/src/gtk/_core.py +++ b/wxPython/src/gtk/_core.py @@ -146,6 +146,8 @@ YES = _core_.YES NO = _core_.NO NO_DEFAULT = _core_.NO_DEFAULT YES_DEFAULT = _core_.YES_DEFAULT +APPLY = _core_.APPLY +CLOSE = _core_.CLOSE ICON_EXCLAMATION = _core_.ICON_EXCLAMATION ICON_HAND = _core_.ICON_HAND ICON_QUESTION = _core_.ICON_QUESTION @@ -1908,6 +1910,73 @@ class Rect2D(object): _core_.Rect2D_swigregister(Rect2D) +class Position(object): + """Proxy of C++ Position class""" + thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') + __repr__ = _swig_repr + def __init__(self, *args, **kwargs): + """__init__(self, int row=0, int col=0) -> Position""" + _core_.Position_swiginit(self,_core_.new_Position(*args, **kwargs)) + __swig_destroy__ = _core_.delete_Position + __del__ = lambda self : None; + def GetRow(*args, **kwargs): + """GetRow(self) -> int""" + return _core_.Position_GetRow(*args, **kwargs) + + def GetColumn(*args, **kwargs): + """GetColumn(self) -> int""" + return _core_.Position_GetColumn(*args, **kwargs) + + def GetCol(*args, **kwargs): + """GetCol(self) -> int""" + return _core_.Position_GetCol(*args, **kwargs) + + def SetRow(*args, **kwargs): + """SetRow(self, int row)""" + return _core_.Position_SetRow(*args, **kwargs) + + def SetColumn(*args, **kwargs): + """SetColumn(self, int column)""" + return _core_.Position_SetColumn(*args, **kwargs) + + def SetCol(*args, **kwargs): + """SetCol(self, int column)""" + return _core_.Position_SetCol(*args, **kwargs) + + def __eq__(*args, **kwargs): + """ + __eq__(self, PyObject other) -> bool + + Test for equality of wx.Position objects. + """ + return _core_.Position___eq__(*args, **kwargs) + + def __ne__(*args, **kwargs): + """ + __ne__(self, PyObject other) -> bool + + Test for inequality of wx.Position objects. + """ + return _core_.Position___ne__(*args, **kwargs) + + def __add__(*args): + """ + __add__(self, Position p) -> Position + __add__(self, Size s) -> Position + """ + return _core_.Position___add__(*args) + + def __sub__(*args): + """ + __sub__(self, Position p) -> Position + __sub__(self, Size s) -> Position + """ + return _core_.Position___sub__(*args) + + row = property(GetRow,SetRow) + col = property(GetCol,SetCol) +_core_.Position_swigregister(Position) + #--------------------------------------------------------------------------- FromStart = _core_.FromStart @@ -3491,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 @@ -7706,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 @@ -8140,9 +8210,21 @@ class VisualAttributes(object): _core_.VisualAttributes_swiginit(self,_core_.new_VisualAttributes(*args, **kwargs)) __swig_destroy__ = _core_.delete_VisualAttributes __del__ = lambda self : None; - font = property(_core_.VisualAttributes_font_get, _core_.VisualAttributes_font_set) - colFg = property(_core_.VisualAttributes_colFg_get, _core_.VisualAttributes_colFg_set) - colBg = property(_core_.VisualAttributes_colBg_get, _core_.VisualAttributes_colBg_set) + def _get_font(*args, **kwargs): + """_get_font(self) -> Font""" + return _core_.VisualAttributes__get_font(*args, **kwargs) + + def _get_colFg(*args, **kwargs): + """_get_colFg(self) -> Colour""" + return _core_.VisualAttributes__get_colFg(*args, **kwargs) + + def _get_colBg(*args, **kwargs): + """_get_colBg(self) -> Colour""" + return _core_.VisualAttributes__get_colBg(*args, **kwargs) + + font = property(_get_font) + colFg = property(_get_colFg) + colBg = property(_get_colBg) _core_.VisualAttributes_swigregister(VisualAttributes) NullAcceleratorTable = cvar.NullAcceleratorTable PanelNameStr = cvar.PanelNameStr @@ -8996,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) @@ -9091,6 +9181,10 @@ class Window(EvtHandler): """ return _core_.Window_CanAcceptFocusFromKeyboard(*args, **kwargs) + def SetCanFocus(*args, **kwargs): + """SetCanFocus(self, bool canFocus)""" + return _core_.Window_SetCanFocus(*args, **kwargs) + def NavigateIn(*args, **kwargs): """ NavigateIn(self, int flags=NavigationKeyEvent.IsForward) -> bool @@ -9266,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 @@ -12873,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)