mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-16 09:40:07 +01:00
Update wxWidgets to v3.2.5. Add support for new, MSW-only Accessibility related methods.
This commit is contained in:
committed by
Scott Talbert
parent
5622abb73d
commit
a1c9554bbf
@@ -251,6 +251,23 @@ def run():
|
||||
return NULL;
|
||||
#endif
|
||||
""")
|
||||
c.find('GetOrCreateAccessible').setCppCode("""\
|
||||
#if wxUSE_ACCESSIBILITY
|
||||
return self->GetOrCreateAccessible();
|
||||
#else
|
||||
wxPyRaiseNotImplemented();
|
||||
return NULL;
|
||||
#endif
|
||||
""")
|
||||
c.find('CreateAccessible').factory = True
|
||||
c.find('CreateAccessible').setCppCode("""\
|
||||
#if wxUSE_ACCESSIBILITY
|
||||
return self->CreateAccessible();
|
||||
#else
|
||||
wxPyRaiseNotImplemented();
|
||||
return NULL;
|
||||
#endif
|
||||
""")
|
||||
c.find('SetAccessible.accessible').transfer = True
|
||||
c.find('SetAccessible').setCppCode("""\
|
||||
#if wxUSE_ACCESSIBILITY
|
||||
|
||||
@@ -479,6 +479,7 @@ def addWindowVirtuals(klass):
|
||||
('SetValidator', 'void SetValidator( const wxValidator &validator )'),
|
||||
('GetValidator', 'wxValidator* GetValidator()'),
|
||||
('EnableVisibleFocus', 'void EnableVisibleFocus(bool enabled)'),
|
||||
('CreateAccessible', 'wxAccessible* CreateAccessible()'),
|
||||
|
||||
## What about these?
|
||||
#bool HasMultiplePages() const
|
||||
|
||||
Submodule ext/wxWidgets updated: 085a136dcb...573e56d432
Reference in New Issue
Block a user