reSWIGged
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
19cdf227ad
commit
f9bf356bd1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -7097,6 +7097,8 @@ class CollapsiblePane(_core.Control):
|
||||
"""
|
||||
return _controls_.CollapsiblePane_GetPane(*args, **kwargs)
|
||||
|
||||
Expanded = property(IsExpanded)
|
||||
Collapsed = property(IsCollapsed)
|
||||
_controls_.CollapsiblePane_swigregister(CollapsiblePane)
|
||||
CollapsiblePaneNameStr = cvar.CollapsiblePaneNameStr
|
||||
|
||||
@ -7127,6 +7129,7 @@ class CollapsiblePaneEvent(_core.CommandEvent):
|
||||
"""SetCollapsed(self, bool c)"""
|
||||
return _controls_.CollapsiblePaneEvent_SetCollapsed(*args, **kwargs)
|
||||
|
||||
Collapsed = property(GetCollapsed,SetCollapsed)
|
||||
_controls_.CollapsiblePaneEvent_swigregister(CollapsiblePaneEvent)
|
||||
|
||||
|
||||
|
@ -3374,9 +3374,6 @@ SWIGINTERN wxDateTime wxDatePickerCtrl_GetUpperLimit(wxDatePickerCtrl *self){
|
||||
static const wxString wxPyDirSelectorPromptStr(wxDirSelectorPromptStr);
|
||||
static const wxString wxPyFileSelectorDefaultWildcardStr(wxFileSelectorDefaultWildcardStr);
|
||||
static const wxString wxPyFontPickerCtrlNameStr(wxFontPickerCtrlNameStr);
|
||||
|
||||
#include <wx/collpane.h>
|
||||
|
||||
static const wxString wxPyCollapsiblePaneNameStr(wxCollapsiblePaneNameStr);
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -13658,6 +13658,24 @@ if RELEASE_VERSION != _core_.RELEASE_VERSION:
|
||||
import warnings
|
||||
warnings.warn("wxPython/wxWidgets release number mismatch")
|
||||
|
||||
|
||||
def version():
|
||||
"""Returns a string containing version and port info"""
|
||||
ctype = wx.USE_UNICODE and 'unicode' or 'ansi'
|
||||
if wx.Platform == '__WXMSW__':
|
||||
port = 'msw'
|
||||
elif wx.Platform == '__WXMAC__':
|
||||
port = 'mac'
|
||||
elif wx.Platform == '__WXGTK__':
|
||||
port = 'gtk'
|
||||
if 'gtk2' in wx.PlatformInfo:
|
||||
port = 'gtk2'
|
||||
else:
|
||||
port = '?'
|
||||
|
||||
return "%s (%s-%s)" % (wx.VERSION_STRING, port, ctype)
|
||||
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
# Set wxPython's default string<-->unicode conversion encoding from
|
||||
|
@ -2076,6 +2076,41 @@ def PreHtmlListBox(*args, **kwargs):
|
||||
val = _windows_.new_PreHtmlListBox(*args, **kwargs)
|
||||
return val
|
||||
|
||||
HLB_DEFAULT_STYLE = _windows_.HLB_DEFAULT_STYLE
|
||||
HLB_MULTIPLE = _windows_.HLB_MULTIPLE
|
||||
class SimpleHtmlListBox(HtmlListBox,_core.ItemContainer):
|
||||
"""Proxy of C++ SimpleHtmlListBox 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, Window parent, int id=-1, Point pos=DefaultPosition,
|
||||
Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
|
||||
long style=HLB_DEFAULT_STYLE,
|
||||
Validator validator=DefaultValidator,
|
||||
String name=SimpleHtmlListBoxNameStr) -> SimpleHtmlListBox
|
||||
"""
|
||||
_windows_.SimpleHtmlListBox_swiginit(self,_windows_.new_SimpleHtmlListBox(*args, **kwargs))
|
||||
self._setOORInfo(self)
|
||||
|
||||
def Create(*args, **kwargs):
|
||||
"""
|
||||
Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
|
||||
Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
|
||||
long style=HLB_DEFAULT_STYLE,
|
||||
Validator validator=DefaultValidator,
|
||||
String name=SimpleHtmlListBoxNameStr) -> bool
|
||||
"""
|
||||
return _windows_.SimpleHtmlListBox_Create(*args, **kwargs)
|
||||
|
||||
_windows_.SimpleHtmlListBox_swigregister(SimpleHtmlListBox)
|
||||
SimpleHtmlListBoxNameStr = cvar.SimpleHtmlListBoxNameStr
|
||||
|
||||
def PreSimpleHtmlListBox(*args, **kwargs):
|
||||
"""PreSimpleHtmlListBox() -> SimpleHtmlListBox"""
|
||||
val = _windows_.new_PreSimpleHtmlListBox(*args, **kwargs)
|
||||
return val
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
class TaskBarIcon(_core.EvtHandler):
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -7090,6 +7090,8 @@ class CollapsiblePane(_core.Control):
|
||||
"""
|
||||
return _controls_.CollapsiblePane_GetPane(*args, **kwargs)
|
||||
|
||||
Expanded = property(IsExpanded)
|
||||
Collapsed = property(IsCollapsed)
|
||||
_controls_.CollapsiblePane_swigregister(CollapsiblePane)
|
||||
CollapsiblePaneNameStr = cvar.CollapsiblePaneNameStr
|
||||
|
||||
@ -7120,6 +7122,7 @@ class CollapsiblePaneEvent(_core.CommandEvent):
|
||||
"""SetCollapsed(self, bool c)"""
|
||||
return _controls_.CollapsiblePaneEvent_SetCollapsed(*args, **kwargs)
|
||||
|
||||
Collapsed = property(GetCollapsed,SetCollapsed)
|
||||
_controls_.CollapsiblePaneEvent_swigregister(CollapsiblePaneEvent)
|
||||
|
||||
|
||||
|
@ -3374,9 +3374,6 @@ SWIGINTERN wxDateTime wxDatePickerCtrl_GetUpperLimit(wxDatePickerCtrl *self){
|
||||
static const wxString wxPyDirSelectorPromptStr(wxDirSelectorPromptStr);
|
||||
static const wxString wxPyFileSelectorDefaultWildcardStr(wxFileSelectorDefaultWildcardStr);
|
||||
static const wxString wxPyFontPickerCtrlNameStr(wxFontPickerCtrlNameStr);
|
||||
|
||||
#include <wx/collpane.h>
|
||||
|
||||
static const wxString wxPyCollapsiblePaneNameStr(wxCollapsiblePaneNameStr);
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -13658,6 +13658,24 @@ if RELEASE_VERSION != _core_.RELEASE_VERSION:
|
||||
import warnings
|
||||
warnings.warn("wxPython/wxWidgets release number mismatch")
|
||||
|
||||
|
||||
def version():
|
||||
"""Returns a string containing version and port info"""
|
||||
ctype = wx.USE_UNICODE and 'unicode' or 'ansi'
|
||||
if wx.Platform == '__WXMSW__':
|
||||
port = 'msw'
|
||||
elif wx.Platform == '__WXMAC__':
|
||||
port = 'mac'
|
||||
elif wx.Platform == '__WXGTK__':
|
||||
port = 'gtk'
|
||||
if 'gtk2' in wx.PlatformInfo:
|
||||
port = 'gtk2'
|
||||
else:
|
||||
port = '?'
|
||||
|
||||
return "%s (%s-%s)" % (wx.VERSION_STRING, port, ctype)
|
||||
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
# Set wxPython's default string<-->unicode conversion encoding from
|
||||
|
@ -2056,6 +2056,41 @@ def PreHtmlListBox(*args, **kwargs):
|
||||
val = _windows_.new_PreHtmlListBox(*args, **kwargs)
|
||||
return val
|
||||
|
||||
HLB_DEFAULT_STYLE = _windows_.HLB_DEFAULT_STYLE
|
||||
HLB_MULTIPLE = _windows_.HLB_MULTIPLE
|
||||
class SimpleHtmlListBox(HtmlListBox,_core.ItemContainer):
|
||||
"""Proxy of C++ SimpleHtmlListBox 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, Window parent, int id=-1, Point pos=DefaultPosition,
|
||||
Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
|
||||
long style=HLB_DEFAULT_STYLE,
|
||||
Validator validator=DefaultValidator,
|
||||
String name=SimpleHtmlListBoxNameStr) -> SimpleHtmlListBox
|
||||
"""
|
||||
_windows_.SimpleHtmlListBox_swiginit(self,_windows_.new_SimpleHtmlListBox(*args, **kwargs))
|
||||
self._setOORInfo(self)
|
||||
|
||||
def Create(*args, **kwargs):
|
||||
"""
|
||||
Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
|
||||
Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
|
||||
long style=HLB_DEFAULT_STYLE,
|
||||
Validator validator=DefaultValidator,
|
||||
String name=SimpleHtmlListBoxNameStr) -> bool
|
||||
"""
|
||||
return _windows_.SimpleHtmlListBox_Create(*args, **kwargs)
|
||||
|
||||
_windows_.SimpleHtmlListBox_swigregister(SimpleHtmlListBox)
|
||||
SimpleHtmlListBoxNameStr = cvar.SimpleHtmlListBoxNameStr
|
||||
|
||||
def PreSimpleHtmlListBox(*args, **kwargs):
|
||||
"""PreSimpleHtmlListBox() -> SimpleHtmlListBox"""
|
||||
val = _windows_.new_PreSimpleHtmlListBox(*args, **kwargs)
|
||||
return val
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
class TaskBarIcon(_core.EvtHandler):
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -7116,6 +7116,8 @@ class CollapsiblePane(_core.Control):
|
||||
"""
|
||||
return _controls_.CollapsiblePane_GetPane(*args, **kwargs)
|
||||
|
||||
Expanded = property(IsExpanded)
|
||||
Collapsed = property(IsCollapsed)
|
||||
_controls_.CollapsiblePane_swigregister(CollapsiblePane)
|
||||
CollapsiblePaneNameStr = cvar.CollapsiblePaneNameStr
|
||||
|
||||
@ -7146,6 +7148,7 @@ class CollapsiblePaneEvent(_core.CommandEvent):
|
||||
"""SetCollapsed(self, bool c)"""
|
||||
return _controls_.CollapsiblePaneEvent_SetCollapsed(*args, **kwargs)
|
||||
|
||||
Collapsed = property(GetCollapsed,SetCollapsed)
|
||||
_controls_.CollapsiblePaneEvent_swigregister(CollapsiblePaneEvent)
|
||||
|
||||
|
||||
|
@ -3374,9 +3374,6 @@ SWIGINTERN wxDateTime wxDatePickerCtrl_GetUpperLimit(wxDatePickerCtrl *self){
|
||||
static const wxString wxPyDirSelectorPromptStr(wxDirSelectorPromptStr);
|
||||
static const wxString wxPyFileSelectorDefaultWildcardStr(wxFileSelectorDefaultWildcardStr);
|
||||
static const wxString wxPyFontPickerCtrlNameStr(wxFontPickerCtrlNameStr);
|
||||
|
||||
#include <wx/collpane.h>
|
||||
|
||||
static const wxString wxPyCollapsiblePaneNameStr(wxCollapsiblePaneNameStr);
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -13662,6 +13662,24 @@ if RELEASE_VERSION != _core_.RELEASE_VERSION:
|
||||
import warnings
|
||||
warnings.warn("wxPython/wxWidgets release number mismatch")
|
||||
|
||||
|
||||
def version():
|
||||
"""Returns a string containing version and port info"""
|
||||
ctype = wx.USE_UNICODE and 'unicode' or 'ansi'
|
||||
if wx.Platform == '__WXMSW__':
|
||||
port = 'msw'
|
||||
elif wx.Platform == '__WXMAC__':
|
||||
port = 'mac'
|
||||
elif wx.Platform == '__WXGTK__':
|
||||
port = 'gtk'
|
||||
if 'gtk2' in wx.PlatformInfo:
|
||||
port = 'gtk2'
|
||||
else:
|
||||
port = '?'
|
||||
|
||||
return "%s (%s-%s)" % (wx.VERSION_STRING, port, ctype)
|
||||
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
# Set wxPython's default string<-->unicode conversion encoding from
|
||||
|
@ -2084,6 +2084,41 @@ def PreHtmlListBox(*args, **kwargs):
|
||||
val = _windows_.new_PreHtmlListBox(*args, **kwargs)
|
||||
return val
|
||||
|
||||
HLB_DEFAULT_STYLE = _windows_.HLB_DEFAULT_STYLE
|
||||
HLB_MULTIPLE = _windows_.HLB_MULTIPLE
|
||||
class SimpleHtmlListBox(HtmlListBox,_core.ItemContainer):
|
||||
"""Proxy of C++ SimpleHtmlListBox 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, Window parent, int id=-1, Point pos=DefaultPosition,
|
||||
Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
|
||||
long style=HLB_DEFAULT_STYLE,
|
||||
Validator validator=DefaultValidator,
|
||||
String name=SimpleHtmlListBoxNameStr) -> SimpleHtmlListBox
|
||||
"""
|
||||
_windows_.SimpleHtmlListBox_swiginit(self,_windows_.new_SimpleHtmlListBox(*args, **kwargs))
|
||||
self._setOORInfo(self)
|
||||
|
||||
def Create(*args, **kwargs):
|
||||
"""
|
||||
Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
|
||||
Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
|
||||
long style=HLB_DEFAULT_STYLE,
|
||||
Validator validator=DefaultValidator,
|
||||
String name=SimpleHtmlListBoxNameStr) -> bool
|
||||
"""
|
||||
return _windows_.SimpleHtmlListBox_Create(*args, **kwargs)
|
||||
|
||||
_windows_.SimpleHtmlListBox_swigregister(SimpleHtmlListBox)
|
||||
SimpleHtmlListBoxNameStr = cvar.SimpleHtmlListBoxNameStr
|
||||
|
||||
def PreSimpleHtmlListBox(*args, **kwargs):
|
||||
"""PreSimpleHtmlListBox() -> SimpleHtmlListBox"""
|
||||
val = _windows_.new_PreSimpleHtmlListBox(*args, **kwargs)
|
||||
return val
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
class TaskBarIcon(_core.EvtHandler):
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user