Files
Phoenix/etg/metafile.py
2020-03-10 11:41:39 -07:00

78 lines
2.2 KiB
Python

#---------------------------------------------------------------------------
# Name: etg/metafile.py
# Author: Robin Dunn
# Dietmar Schwertberger
#
# Created: 01-Nov-2015
# Copyright: (c) 2015-2020 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------
import etgtools
import etgtools.tweaker_tools as tools
PACKAGE = "wx"
MODULE = "_core"
NAME = "metafile" # 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 = [ 'wxMetafile',
'wxMetafileDC',
]
stubCode = """\
#if !wxUSE_METAFILE
class wxMetafile : public wxObject
{
public:
wxMetafile(const wxString& filename = wxEmptyString) { wxPyRaiseNotImplemented(); }
~wxMetafile() {}
bool IsOk() { return false; }
bool Play(wxDC* dc) { return false; }
bool SetClipboard(int width = 0, int height = 0) { return false; }
};
class wxMetafileDC : public wxMemoryDC
{
public:
wxMetafileDC(const wxString& filename = wxEmptyString) { wxPyRaiseNotImplemented(); }
~wxMetafileDC() {}
wxMetafile* Close() { return NULL; }
};
#endif
"""
#---------------------------------------------------------------------------
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/metafile.h>')
module.addHeaderCode(stubCode)
c = module.find('wxMetafile')
c.addPrivateCopyCtor()
c = module.find('wxMetafileDC')
c.addPrivateCopyCtor()
module.find("wxMakeMetafilePlaceable").ignore()
#-----------------------------------------------------------------
tools.doCommonTweaks(module)
tools.runGenerators(module)
#---------------------------------------------------------------------------
if __name__ == '__main__':
run()