1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
#---------------------------------------------------------------------------
# Name: etg/bmpbndl.py
# Author: Scott Talbert
#
# Created: 13-Apr-2022
# Copyright: (c) 2022 by Scott Talbert
# License: wxWindows License
#---------------------------------------------------------------------------
import etgtools
import etgtools.tweaker_tools as tools
from etgtools import MethodDef
PACKAGE = "wx"
MODULE = "_core"
NAME = "bmpbndl" # Base name of the file to generate to for this script
DOCSTRING = ""
# The classes and/or the basename of the Doxygen XML files to be processed by
# this script.
ITEMS = [ 'wxBitmapBundle',
'wxBitmapBundleImpl',
]
#---------------------------------------------------------------------------
def run():
# Parse the XML file(s) building a collection of Extractor objects
module = etgtools.ModuleDef(PACKAGE, MODULE, NAME, DOCSTRING)
etgtools.parseDoxyXML(module, ITEMS)
#-----------------------------------------------------------------
# Tweak the parsed meta objects in the module object as needed for
# customizing the generated code and docstrings.
#module.addHeaderCode('#include <wx/some_header_file.h>')
c = module.find('wxBitmapBundle')
assert isinstance(c, etgtools.ClassDef)
c.find('wxBitmapBundle').findOverload('xpm').ignore()
c.find('FromSVG').findOverload('char *data, const wxSize &sizeDef').ignore()
c.find('FromImpl.impl').transfer = True
# Allow on-the-fly creation of a wx.BitmapBundle from a wx.Bitmap, wx.Icon
# or a wx.Image
c.convertFromPyObject = tools.AutoConversionInfo(
('wx.Bitmap', 'wx.Icon', ),
"""\
// Check for type compatibility
if (!sipIsErr) {
if (sipCanConvertToType(sipPy, sipType_wxBitmap, SIP_NO_CONVERTORS))
return 1;
if (sipCanConvertToType(sipPy, sipType_wxIcon, SIP_NO_CONVERTORS))
return 1;
if (sipCanConvertToType(sipPy, sipType_wxImage, SIP_NO_CONVERTORS))
return 1;
if (sipCanConvertToType(sipPy, sipType_wxBitmapBundle, SIP_NO_CONVERTORS))
return 1;
return 0;
}
// Otherwise, a conversion is needed
int state = 0;
// TODO: A macro for these nearly identical statements would be a good idea...
if (sipCanConvertToType(sipPy, sipType_wxBitmap, SIP_NO_CONVERTORS)) {
wxBitmap* obj = reinterpret_cast<wxBitmap*>(
sipConvertToType(sipPy, sipType_wxBitmap, sipTransferObj, SIP_NO_CONVERTORS, &state, sipIsErr));
*sipCppPtr = new wxBitmapBundle(*obj);
sipReleaseType(obj, sipType_wxBitmap, state);
return sipGetState(sipTransferObj);
}
if (sipCanConvertToType(sipPy, sipType_wxIcon, SIP_NO_CONVERTORS)) {
wxIcon* obj = reinterpret_cast<wxIcon*>(
sipConvertToType(sipPy, sipType_wxIcon, sipTransferObj, SIP_NO_CONVERTORS, &state, sipIsErr));
*sipCppPtr = new wxBitmapBundle(*obj);
sipReleaseType(obj, sipType_wxIcon, state);
return sipGetState(sipTransferObj);
}
if (sipCanConvertToType(sipPy, sipType_wxImage, SIP_NO_CONVERTORS)) {
wxImage* obj = reinterpret_cast<wxImage*>(
sipConvertToType(sipPy, sipType_wxImage, sipTransferObj, SIP_NO_CONVERTORS, &state, sipIsErr));
*sipCppPtr = new wxBitmapBundle(*obj);
sipReleaseType(obj, sipType_wxImage, state);
return sipGetState(sipTransferObj);
}
// The final option is that it is already a wxBitmapBundle, so just fetch the pointer and return
*sipCppPtr = reinterpret_cast<wxBitmapBundle*>(
sipConvertToType(sipPy, sipType_wxBitmapBundle, sipTransferObj, SIP_NO_CONVERTORS, 0, sipIsErr));
return 0; // not a new instance
""")
c = module.find('wxBitmapBundleImpl')
assert isinstance(c, etgtools.ClassDef)
m = MethodDef(name='~wxBitmapBundleImpl', isDtor=True, isVirtual=True, protection='protected')
c.addItem(m)
c.find('DoGetPreferredSize').ignore(False)
c.find('GetIndexToUpscale').ignore(False)
c.find('GetNextAvailableScale').ignore(False)
c.find('GetNextAvailableScale.i').inOut = True
c.find('GetNextAvailableScale.i').name = 'idx'
#-----------------------------------------------------------------
tools.doCommonTweaks(module)
tools.runGenerators(module)
#---------------------------------------------------------------------------
if __name__ == '__main__':
run()
|