Merge pull request #446 from RobinD42/fix-issue441

Add missing wx.VScrolledWindow methods
This commit is contained in:
Robin Dunn
2017-07-29 10:27:46 -07:00
committed by GitHub
2 changed files with 72 additions and 0 deletions

View File

@@ -23,6 +23,8 @@ Changes in this release include the following:
* Transfer ownership of the wx.EvtHandler when pushing/popping them, and also
for Set/RemoveEventHandler. (#443)
* Add missing wx.VScrolledWindow methods listed in the docs as deprecated but
still present. (#441)

View File

@@ -91,8 +91,78 @@ def run():
c = module.find('wxVScrolledWindow')
assert isinstance(c, etgtools.ClassDef)
tools.fixWindowClass(c)
# These methods are listed in the docs for wxVScrolledWindow as present
# but deprecated, but are not actually documented so we don't see them in
# the incoming XML. Since they're deprecated lets just add simple wrappers
# here instead of formally documenting them.
# NOTE: Some of these are virtual, and there are also OnGetLineHeight and
# OnGetLinesHint protected virtual methods, but trying to support them as
# virtuals from here is causing more troubles than it is probably worth
# due to ambiguities, etc... Revisit later if people complain.
c.addPyMethod('HitTest', '(*args)',
doc="Deprecated compatibility helper.",
deprecated='Use VirtualHitTest instead.',
body="""\
if len(args) == 2:
x, y = args
return self.VirtualHitTest(y)
else:
pt = args[0]
return self.VirtualHitTest(pt[1])
""")
c.addCppMethod('unsigned long', 'GetFirstVisibleLine', '()',
doc="Deprecated compatibility helper.",
deprecated='Use GetVisibleRowsBegin instead.',
body="return self->GetFirstVisibleLine();")
c.addCppMethod('unsigned long', 'GetLastVisibleLine', '()',
doc="Deprecated compatibility helper.",
deprecated='Use GetVisibleRowsEnd instead.',
body="return self->GetLastVisibleLine();")
c.addCppMethod('unsigned long', 'GetLineCount', '()',
doc="Deprecated compatibility helper.",
deprecated='Use GetRowCount instead.',
body="return self->GetLineCount();")
c.addCppMethod('void', 'SetLineCount', '(unsigned long count)',
doc="Deprecated compatibility helper.",
deprecated='Use SetRowCount instead.',
body="self->SetLineCount(count);")
c.addCppMethod('void', 'RefreshLine', '(unsigned long line)',
doc="Deprecated compatibility helper.",
deprecated='Use RefreshRow instead.',
body="self->RefreshLine(line);")
c.addCppMethod('void', 'RefreshLines', '(unsigned long from_, unsigned long to_)',
doc="Deprecated compatibility helper.",
deprecated='Use RefreshRows instead.',
body="self->RefreshLines(from_, to_);")
c.addCppMethod('bool', 'ScrollToLine', '(unsigned long line)',
doc="Deprecated compatibility helper.",
deprecated='Use ScrollToRow instead.',
body="return self->ScrollToLine(line);")
c.addCppMethod('bool', 'ScrollLines', '(int lines)',
doc="Deprecated compatibility helper.",
deprecated='Use ScrollRows instead.',
body="return self->wxVarVScrollLegacyAdaptor::ScrollLines(lines);")
c.addCppMethod('bool', 'ScrollPages', '(int pages)',
doc="Deprecated compatibility helper.",
deprecated='Use ScrollRowPages instead.',
body="return self->wxVarVScrollLegacyAdaptor::ScrollPages(pages);")
c = module.find('wxHScrolledWindow')
tools.fixWindowClass(c)