File: lisp_codegen.py

package info (click to toggle)
wxglade 1%3A1.1.1%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,592 kB
  • sloc: python: 30,644; javascript: 740; makefile: 169; cpp: 99; perl: 90; lisp: 62; xml: 61; sh: 3
file content (39 lines) | stat: -rw-r--r-- 1,256 bytes parent folder | download | duplicates (3)
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
"""\
Lisp generator functions for CustomWidget objects

@copyright: 2002-2004 D. H. aka crazyinsomniac on sourceforge
@copyright: 2014-2016 Carsten Grohmann
@copyright: 2017 Dietmar Schwertberger
@license: MIT (see LICENSE.txt) - THIS PROGRAM COMES WITH NO WARRANTY
"""


import common
import wcodegen
from .codegen import format_ctor_arguments


class LispCustomWidgetGenerator(wcodegen.LispWidgetCodeWriter):

    def get_code(self, widget):
        init = []
        id_name, id = self.codegen.generate_code_id(widget)

        if not widget.parent_window.IS_CLASS:
            parent = '(object-%s self)' % self.codegen._format_name(widget.parent_window.name)
        else:
            parent = 'nil'

        if id_name: init.append(id_name)
        arguments = format_ctor_arguments( widget.arguments, parent, id, widget.size )
        widget_name = self.codegen._format_name(widget.name)
        init.append( '(setf %s (%s_Create %s))\n' % (widget_name, widget.instance_class, " ".join(arguments)) )
        init += self.codegen.generate_code_common_properties(widget)

        return init, []


def initialize():
    klass = 'CustomWidget'
    common.class_names[klass] = klass
    common.register('lisp', klass, LispCustomWidgetGenerator(klass) )