⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 codegen.py

📁 用python写的ide开发环境,巨强大,不过需要wxpython的支持
💻 PY
字号:
# codegen.py: code generator functions for wxStaticText objects# $Id: codegen.py,v 1.14 2007/03/27 07:01:52 agriggio Exp $## Copyright (c) 2002-2007 Alberto Griggio <agriggio@users.sourceforge.net># License: MIT (see license.txt)# THIS PROGRAM COMES WITH NO WARRANTYimport commonclass PythonCodeGenerator:    def get_code(self, obj):        pygen = common.code_writers['python']        prop = obj.properties        attribute = pygen.test_attribute(obj)        id_name, id = pygen.generate_code_id(obj)         label = pygen.quote_str(prop.get('label', ''))        if not obj.parent.is_toplevel: parent = 'self.%s' % obj.parent.name        else: parent = 'self'        style = prop.get("style")        if style: style = ", style=%s" % pygen.cn_f(style)        else: style = ''        init = []        if id_name: init.append(id_name)        if attribute: prefix = 'self.'        else: prefix = ''        klass = obj.klass        if klass == obj.base: klass = pygen.cn(klass)        init.append('%s%s = %s(%s, %s, %s%s)\n' %                    (prefix, obj.name, klass, parent, id, label, style))        props_buf = pygen.generate_common_properties(obj)        if not attribute:            # the object doesn't have to be stored as an attribute of the            # custom class, but it is just considered part of the layout            return [], [], init + props_buf        return init, props_buf, []# end of class PythonCodeGeneratorclass CppCodeGenerator:    def get_code(self, obj):        """\        generates the C++ code for wxStaticText objects        """        cppgen = common.code_writers['C++']        prop = obj.properties        id_name, id = cppgen.generate_code_id(obj)         if id_name: ids = [ id_name ]        else: ids = []        attribute = cppgen.test_attribute(obj)        label = cppgen.quote_str(prop.get('label', ''))        if not obj.parent.is_toplevel: parent = '%s' % obj.parent.name        else: parent = 'this'        extra = ''        style = prop.get("style")        if style: extra = ', wxDefaultPosition, wxDefaultSize, %s' % style        if attribute: prefix = ''        else: prefix = '%s* ' % obj.klass        init = ['%s%s = new %s(%s, %s, %s%s);\n' %                (prefix, obj.name, obj.klass, parent, id, label, extra) ]        props_buf = cppgen.generate_common_properties(obj)        if not attribute:            return [], ids, [], init + props_buf        return init, ids, props_buf, []# end of class CppCodeGeneratordef xrc_code_generator(obj):    xrcgen = common.code_writers['XRC']    class XrcCodeGenerator(xrcgen.DefaultXrcObject):        def write(self, *args, **kwds):            try: del self.properties['attribute']            except KeyError: pass            xrcgen.DefaultXrcObject.write(self, *args, **kwds)    return XrcCodeGenerator(obj)def initialize():    common.class_names['EditStaticText'] = 'wxStaticText'    pygen = common.code_writers.get("python")    if pygen:        pygen.add_widget_handler('wxStaticText', PythonCodeGenerator())    cppgen = common.code_writers.get('C++')    if cppgen:        cppgen.add_widget_handler('wxStaticText', CppCodeGenerator())    xrcgen = common.code_writers.get('XRC')    if xrcgen:        xrcgen.add_widget_handler('wxStaticText', xrc_code_generator)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -