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
|
"""\
Code generator functions for wxGauge objects
@copyright: 2002-2007 Alberto Griggio
@copyright: 2014-2016 Carsten Grohmann
@license: MIT (see LICENSE.txt) - THIS PROGRAM COMES WITH NO WARRANTY
"""
import common
import wcodegen
class PythonGaugeGenerator(wcodegen.PythonWidgetCodeWriter):
tmpl = '%(name)s = %(klass)s(%(parent)s, %(id)s, %(range)s%(style)s)\n'
def _prepare_tmpl_content(self, obj):
wcodegen.PythonWidgetCodeWriter._prepare_tmpl_content(self, obj)
self.tmpl_dict['range'] = obj.range
return
class CppGaugeGenerator(wcodegen.CppWidgetCodeWriter):
tmpl = '%(name)s = new %(klass)s(%(parent)s, %(id)s, %(range)s%(style)s);\n'
def _prepare_tmpl_content(self, obj):
wcodegen.CppWidgetCodeWriter._prepare_tmpl_content(self, obj)
self.tmpl_dict['range'] = obj.range
return
def xrc_code_generator(obj):
xrcgen = common.code_writers['XRC']
class XrcCodeGenerator(xrcgen.DefaultXrcObject):
def write(self, out_file, ntabs):
style = self.widget.properties["style"].get_string_value()
properties = {"style":style}
xrcgen.DefaultXrcObject.write(self, out_file, ntabs, properties)
return XrcCodeGenerator(obj)
def initialize():
klass = 'wxGauge'
common.class_names['EditGauge'] = klass
common.register('python', klass, PythonGaugeGenerator(klass))
common.register('C++', klass, CppGaugeGenerator(klass))
common.register('XRC', klass, xrc_code_generator)
|