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
|
"""\
Perl generator functions for wxButton objects
@copyright: 2002-2004 D. H. aka crazyinsomniac on sourceforge
@copyright: 2014-2016 Carsten Grohmann
@license: MIT (see LICENSE.txt) - THIS PROGRAM COMES WITH NO WARRANTY
"""
import common
import wcodegen
class PerlButtonGenerator(wcodegen.PerlWidgetCodeWriter):
tmpl = '%(name)s = %(klass)s->new(%(parent)s, %(id)s, %(label)s%(style)s);\n'
prefix_style = True
def _prepare_tmpl_content(self, obj):
wcodegen.PerlWidgetCodeWriter._prepare_tmpl_content(self, obj)
if obj.check_prop_truth("stockitem"):
self.tmpl_dict['label'] = self.codegen.quote_str('')
self.tmpl_dict['id_number'] = self.codegen.cn("wxID_" + obj.stockitem)
self.tmpl_dict['id'] = self.tmpl_dict['id_number']
self.has_setdefault = obj.default
return
def initialize():
klass = 'wxButton'
common.class_names['EditButton'] = klass
common.register('perl', klass, PerlButtonGenerator(klass))
|