Use correct DLL import/export specifier for multi-lib builds
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39198 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -364,6 +364,10 @@ class TopLevelWindow(_core.Window):
|
||||
"""IsMaximized(self) -> bool"""
|
||||
return _windows_.TopLevelWindow_IsMaximized(*args, **kwargs)
|
||||
|
||||
def IsAlwaysMaximized(*args, **kwargs):
|
||||
"""IsAlwaysMaximized(self) -> bool"""
|
||||
return _windows_.TopLevelWindow_IsAlwaysMaximized(*args, **kwargs)
|
||||
|
||||
def IsIconized(*args, **kwargs):
|
||||
"""IsIconized(self) -> bool"""
|
||||
return _windows_.TopLevelWindow_IsIconized(*args, **kwargs)
|
||||
@@ -1226,7 +1230,7 @@ class SplitterEvent(_core.NotifyEvent):
|
||||
__repr__ = _swig_repr
|
||||
def __init__(self, *args, **kwargs):
|
||||
"""
|
||||
__init__(self, wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent
|
||||
__init__(self, EventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent
|
||||
|
||||
This class represents the events generated by a splitter control.
|
||||
"""
|
||||
@@ -2025,6 +2029,10 @@ class TaskBarIcon(_core.EvtHandler):
|
||||
"""PopupMenu(self, Menu menu) -> bool"""
|
||||
return _windows_.TaskBarIcon_PopupMenu(*args, **kwargs)
|
||||
|
||||
def GetHandle(*args, **kwargs):
|
||||
"""GetHandle(self) -> long"""
|
||||
return _windows_.TaskBarIcon_GetHandle(*args, **kwargs)
|
||||
|
||||
TaskBarIcon_swigregister = _windows_.TaskBarIcon_swigregister
|
||||
TaskBarIcon_swigregister(TaskBarIcon)
|
||||
|
||||
@@ -2033,7 +2041,7 @@ class TaskBarIconEvent(_core.Event):
|
||||
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, wxEventType evtType, wxTaskBarIcon tbIcon) -> TaskBarIconEvent"""
|
||||
"""__init__(self, EventType evtType, wxTaskBarIcon tbIcon) -> TaskBarIconEvent"""
|
||||
_windows_.TaskBarIconEvent_swiginit(self,_windows_.new_TaskBarIconEvent(*args, **kwargs))
|
||||
TaskBarIconEvent_swigregister = _windows_.TaskBarIconEvent_swigregister
|
||||
TaskBarIconEvent_swigregister(TaskBarIconEvent)
|
||||
@@ -2205,14 +2213,6 @@ class DirDialog(Dialog):
|
||||
"""
|
||||
return _windows_.DirDialog_GetMessage(*args, **kwargs)
|
||||
|
||||
def GetStyle(*args, **kwargs):
|
||||
"""
|
||||
GetStyle(self) -> long
|
||||
|
||||
Returns the dialog style.
|
||||
"""
|
||||
return _windows_.DirDialog_GetStyle(*args, **kwargs)
|
||||
|
||||
def SetMessage(*args, **kwargs):
|
||||
"""
|
||||
SetMessage(self, String message)
|
||||
@@ -2751,17 +2751,20 @@ class ProgressDialog(Frame):
|
||||
|
||||
def Update(*args, **kwargs):
|
||||
"""
|
||||
Update(self, int value, String newmsg=EmptyString) -> bool
|
||||
Update(self, int value, String newmsg) --> (continue, skip)
|
||||
|
||||
Updates the dialog, setting the progress bar to the new value and, if
|
||||
given changes the message above it. The value given should be less
|
||||
than or equal to the maximum value given to the constructor and the
|
||||
dialog is closed if it is equal to the maximum. Returns True unless
|
||||
the Cancel button has been pressed.
|
||||
dialog is closed if it is equal to the maximum. Returns a tuple of
|
||||
boolean values, ``(continue, skip)`` where ``continue`` is ``True``
|
||||
unless the Cancel button has been pressed, and ``skip`` is ``False``
|
||||
unless the Skip button (if any) has been pressed.
|
||||
|
||||
If the ``continue`` return value is ``false``, the application can either
|
||||
immediately destroy the dialog or ask the user for confirmation, and if the
|
||||
abort is not confirmed the dialog may be resumed with `Resume` function.
|
||||
|
||||
If false is returned, the application can either immediately destroy
|
||||
the dialog or ask the user for the confirmation and if the abort is
|
||||
not confirmed the dialog may be resumed with Resume function.
|
||||
"""
|
||||
return _windows_.ProgressDialog_Update(*args, **kwargs)
|
||||
|
||||
@@ -2808,7 +2811,7 @@ class FindDialogEvent(_core.CommandEvent):
|
||||
__repr__ = _swig_repr
|
||||
def __init__(self, *args, **kwargs):
|
||||
"""
|
||||
__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
|
||||
__init__(self, EventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
|
||||
|
||||
Events for the FindReplaceDialog
|
||||
"""
|
||||
|
Reference in New Issue
Block a user