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

📄 lisp_codegen.py

📁 用python写的ide开发环境,巨强大,不过需要wxpython的支持
💻 PY
字号:
# lisp_codegen.py : lisp generator functions for spacers# $Id: lisp_codegen.py,v 1.2 2007/02/09 22:24:06 dinogen Exp $## Copyright (c) 2002-2004 D.H. aka crazyinsomniac on sourceforge.net# License: MIT (see license.txt)# THIS PROGRAM COMES WITH NO WARRANTYimport commonclass LispCodeGenerator:    def get_code(self, spacer):        prop = spacer.properties        width = prop.get('width', '0')        height = prop.get('height', '0')        # we must use the hack in plgen.add_sizeritem (see pl_codegen.py)        spacer.name = '%s, %s' % (width, height)        return [], [], []# end of class LispCodeGeneratordef initialize():    common.class_names['EditSpacer'] = 'spacer'    plgen = common.code_writers.get('lisp')    if plgen:        plgen.add_widget_handler('spacer', LispCodeGenerator())

⌨️ 快捷键说明

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