reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45228 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2007-04-02 21:37:01 +00:00
parent 70ee369088
commit ddeca22ce8
23 changed files with 1891 additions and 545 deletions

View File

@@ -1122,6 +1122,11 @@ def StaticLine_GetClassDefaultAttributes(*args, **kwargs):
#---------------------------------------------------------------------------
ST_NO_AUTORESIZE = _controls_.ST_NO_AUTORESIZE
ST_MARKUP = _controls_.ST_MARKUP
ST_ELLIPSIZE_START = _controls_.ST_ELLIPSIZE_START
ST_ELLIPSIZE_MIDDLE = _controls_.ST_ELLIPSIZE_MIDDLE
ST_ELLIPSIZE_END = _controls_.ST_ELLIPSIZE_END
class StaticText(_core.Control):
"""Proxy of C++ StaticText class"""
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
@@ -1154,6 +1159,32 @@ class StaticText(_core.Control):
"""
return _controls_.StaticText_Wrap(*args, **kwargs)
def IsEllipsized(*args, **kwargs):
"""IsEllipsized(self) -> bool"""
return _controls_.StaticText_IsEllipsized(*args, **kwargs)
def RemoveMarkup(*args, **kwargs):
"""
RemoveMarkup(String str) -> String
Removes the markup accepted by wx.StaticText when wx.ST_MARKUP is
used, and then returns the cleaned string.
"""
return _controls_.StaticText_RemoveMarkup(*args, **kwargs)
RemoveMarkup = staticmethod(RemoveMarkup)
def EscapeMarkup(*args, **kwargs):
"""
EscapeMarkup(String str) -> String
Escapes the alls special symbols (<>"'&) present inside the given
string using the corresponding entities (&lt; &gt; &quot; &apos;
&amp;)
"""
return _controls_.StaticText_EscapeMarkup(*args, **kwargs)
EscapeMarkup = staticmethod(EscapeMarkup)
def GetClassDefaultAttributes(*args, **kwargs):
"""
GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
@@ -1179,6 +1210,26 @@ def PreStaticText(*args, **kwargs):
val = _controls_.new_PreStaticText(*args, **kwargs)
return val
def StaticText_RemoveMarkup(*args, **kwargs):
"""
StaticText_RemoveMarkup(String str) -> String
Removes the markup accepted by wx.StaticText when wx.ST_MARKUP is
used, and then returns the cleaned string.
"""
return _controls_.StaticText_RemoveMarkup(*args, **kwargs)
def StaticText_EscapeMarkup(*args, **kwargs):
"""
StaticText_EscapeMarkup(String str) -> String
Escapes the alls special symbols (<>"'&) present inside the given
string using the corresponding entities (&lt; &gt; &quot; &apos;
&amp;)
"""
return _controls_.StaticText_EscapeMarkup(*args, **kwargs)
def StaticText_GetClassDefaultAttributes(*args, **kwargs):
"""
StaticText_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes