"""\ Perl generator functions for spacers @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 PerlSpacerGenerator(wcodegen.PerlWidgetCodeWriter): # spacers are generally handled by a hack: # The the implementations of add_sizeritem() contains more details. # The code generation code is already implemented in base class. pass # end of class PerlSpacerGenerator def initialize(): klass = 'spacer' common.class_names['EditSpacer'] = klass common.register('perl', klass, PerlSpacerGenerator(klass))