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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
|
"""\
Python code generator
@copyright: John Dubery
@copyright: 2002-2007 Alberto Griggio
@copyright: 2012-2016 Carsten Grohmann
@copyright: 2016-2021 Dietmar Schwertberger
@license: MIT (see LICENSE.txt) - THIS PROGRAM COMES WITH NO WARRANTY
"""
import os, os.path, random, re
from codegen import BaseLangCodeWriter, BaseSourceFileContent
import wcodegen
import compat
class SourceFileContent(BaseSourceFileContent):
rec_block_start = re.compile(
r'^(?P<spaces>\s*)' # leading spaces
r'#\s*' # comment sign
r'begin\s+wxGlade:\s*' # "begin wxGlade:" statement and trailing spaces
r'(?P<classname>[a-zA-Z_]+\w*)??' # class or function name (non-greedy)
r'[.]?' # separator between class and function / block (non-greedy)
r'(?P<block>\w+)' # function / block name
r'\s*$' ) # trailing spaces
rec_block_end = re.compile(
r'^\s*' # leading spaces
r'#\s*' # comment sign
r'end\s+wxGlade' # "end exGlade" statement
r'\s*$' ) # trailing spaces
# Less precise regex, but matches definitions with base classes having module qualified names.
rec_class_decl = re.compile(
r'^class\s+([a-zA-Z_]\w*)\s*(\([\s\w.,]*\))?:' # starting wihth "class <name>" statement
r'\s*$' ) # tailing spaces
rec_event_handler = re.compile(
r'^\s+' # leading spaces (mandatory)
r'def\s+(?P<handler>[A-Za-z_]+\w*)' # event handler name
r'\s*' # optional spaces
r'\(.*\)(?:\s*->\s*None)*:' # function parameters; optional PEP 3107 function annotations
r'\s*' # optional spaces
r'#\s*wxGlade:\s*(?P<class>\w+)\.<event_handler>' # wxGlade event handler statement with class name
r'\s*$' ) # trailing spaces
def build_untouched_content(self):
BaseSourceFileContent.build_untouched_content(self)
inside_block = False
inside_triple_quote = False
triple_quote_str = None
tmp_in = self._load_file(self.name)
out_lines = []
check_old_methods = [] # list of indices with __set_properties or __do_layout
for line in tmp_in:
if line.endswith("\r\n"): # normalize line ending for files on Windows
line = "%s\n"%line[:-2]
quote_index = -1
if not inside_triple_quote:
triple_dquote_index = line.find('"""')
triple_squote_index = line.find("'''")
if triple_squote_index == -1:
quote_index = triple_dquote_index
tmp_quote_str = '"""'
elif triple_dquote_index == -1:
quote_index = triple_squote_index
tmp_quote_str = "'''"
else:
quote_index, tmp_quote_str = min( (triple_squote_index, "'''"),
(triple_dquote_index, '"""') )
if not inside_triple_quote and quote_index != -1:
inside_triple_quote = True
triple_quote_str = tmp_quote_str
if inside_triple_quote:
end_index = line.rfind(triple_quote_str)
if quote_index < end_index and end_index != -1:
inside_triple_quote = False
result = self.rec_class_decl.match(line)
if not inside_triple_quote and not inside_block and result:
if not self.class_name:
# this is the first class declared in the file: insert the new ones before this
out_lines.append('<%swxGlade insert new_classes>' % self.nonce)
self.new_classes_inserted = True
self.class_name = result.group(1)
self.class_name = self.format_classname(self.class_name)
self.classes.add( self.class_name ) # add the found class to the list of classes of this module
out_lines.append(line)
elif not inside_block:
result = self.rec_block_start.match(line)
if not inside_triple_quote and result:
# replace the lines inside a wxGlade block with a tag that will be used later by add_class
spaces = result.group('spaces')
which_class = result.group('classname')
which_block = result.group('block')
if not which_class:
which_class = self.class_name
else:
which_class = self.format_classname(which_class)
self.spaces[which_class] = spaces
inside_block = True
if not self.class_name:
out_lines.append('<%swxGlade replace %s>' % (self.nonce, which_block))
else:
if which_block in ("__do_layout","__set_properties"):
# probably to be removed
check_old_methods.append( len(out_lines) )
out_lines.append('<%swxGlade replace %s %s>' % (self.nonce, which_class, which_block))
else:
result = self.rec_event_handler.match(line)
if not inside_triple_quote and result:
which_handler = result.group('handler')
which_class = self.format_classname(result.group('class'))
self.event_handlers.setdefault( which_class, set() ).add( which_handler )
if self.class_name and self.is_end_of_class(line):
# add extra event handlers here...
out_lines.append('<%swxGlade event_handlers %s>' % (self.nonce, self.class_name))
out_lines.append(line)
else:
# ignore all the lines inside a wxGlade block
if self.rec_block_end.match(line):
inside_block = False
if not self.new_classes_inserted:
# if we are here, the previous ``version'' of the file did not contain any class,
# so we must add the new_classes tag at the end of the file
out_lines.append('<%swxGlade insert new_classes>' % self.nonce)
# when moving from 0.9 to 1.0: remove empty methods "__do_layout" and "__set_properties"
while check_old_methods:
i = check_old_methods.pop(-1)
if len(out_lines)==i+1 or not out_lines[i+1].strip() or out_lines[i+1].lstrip().startswith("def"):
self._remove_method(out_lines, i-1, i)
# set the ``persistent'' content of the file
self.content = out_lines #"".join(out_lines)
def format_classname(self, class_name):
"""Format class name read from existing source file.
If we're in a subpackage, we should include the package name in the class name."""
if not self.multiple_files:
return class_name
name = self.name
if self.out_dir:
name = name.replace(self.out_dir, '')
pkg = os.path.dirname(name).replace(os.sep, '.')
if pkg.startswith('.'):
pkg = pkg[1:]
if pkg:
return pkg + '.' + class_name
else:
return class_name
class PythonCodeWriter(BaseLangCodeWriter, wcodegen.PythonMixin):
"Code writer class for writing Python code out of the designed GUI elements"
_code_statements = {'backgroundcolour': "%(objname)s.SetBackgroundColour(%(value)s)\n",
'contentnotfound': "pass",
'disabled': "%(objname)s.Enable(False)\n",
'extraproperties': "%(objname)s.Set%(propname_cap)s(%(value)s)\n",
'focused': "%(objname)s.SetFocus()\n",
'foregroundcolour': "%(objname)s.SetForegroundColour(%(value)s)\n",
'hidden': "%(objname)s.Hide()\n",
'setfont': "%(objname)s.SetFont(%(cnfont)s(%(size)s, %(family)s, "
"%(style)s, %(weight)s, %(underlined)s, %(face)s))\n",
'tooltip': "%(objname)s.SetToolTipString(%(tooltip)s)\n",
'wxcolour': "wxColour(%(value)s)",
'wxnullcolour': "wxNullColour"}
if compat.IS_CLASSIC:
_code_statements['wxsystemcolour'] = "wxSystemSettings_GetColour(%(value)s)"
_code_statements['tooltip_3' ] = "%(objname)s.SetToolTip(wx.ToolTip(%(tooltip)s))\n"
else:
_code_statements['wxsystemcolour'] = "wxSystemSettings.GetColour(%(value)s)"
_code_statements['tooltip_3' ] = "%(objname)s.SetToolTip(%(tooltip)s)\n"
class_separator = '.'
indent_level_func_body = 2
name_ctor = '__init__'
if compat.PYTHON2:
shebang = '#!/usr/bin/env python\n'
else:
shebang = '#!/usr/bin/env python3\n'
SourceFileContent = SourceFileContent
tmpl_encoding = "# -*- coding: %s -*-\n#\n"
tmpl_class_end = '\n%(comment)s end of class %(klass)s\n'
tmpl_class_end_nomarker = '\n'
tmpl_func_empty = '%(tab)spass\n'
tmpl_sizeritem = '%s.Add(%s, %s, %s, %s)\n'
tmpl_sizeritem_button = '%s.AddButton(%s)\n'
tmpl_gridbagsizeritem = '%s.Add(%s, %s, %s, %s, %s)\n'
if compat.IS_CLASSIC:
tmpl_gridbagsizerspacer = '%s.Add((%s, %s), %s, %s, %s, %s)\n'
else:
tmpl_gridbagsizerspacer = '%s.Add(%s, %s, %s, %s, %s, %s)\n'
tmpl_style = '%(tab)skwds["style"] = %(style)s\n'
tmpl_toplevel_style = '%(tab)skwds["style"] = kwds.get("style", 0) | %(style)s\n'
tmpl_style0 = '%(tab)skwds["style"] = 0\n'
tmpl_toplevel_style0 = '%(tab)skwds["style"] = kwds.get("style", 0)\n'
tmpl_appfile = """\
%(overwrite)s\
%(header_lines)s\
%(import_gettext)s\
from %(top_win_module)s import %(top_win_class)s\n\n"""
def _get_app_template(self, app, top_win):
'build template string for application'
klass = app.klass
if not self.app_name and not app.klass: return None
ret = ['']
if klass:
# create application class
if top_win and top_win.WX_CLASS=="wxDialog":
# use ShowModal()/Destroy for dialogs
show_code = ['%(tab)s%(tab)sself.%(top_win)s.ShowModal()',
'%(tab)s%(tab)sself.%(top_win)s.Destroy()']
else:
# use Show() for other toplevel windows
show_code = ['%(tab)s%(tab)sself.%(top_win)s.Show()']
ret += ['class %(klass)s(%(cn_wxApp)s):',
'%(tab)sdef OnInit(self):',
'%(tab)s%(tab)sself.%(top_win)s = %(top_win_class)s(None, %(cn_wxIDANY)s, "")',
'%(tab)s%(tab)sself.SetTopWindow(self.%(top_win)s)'
] + show_code + [
'%(tab)s%(tab)sreturn True',
'']
if self._mark_blocks:
ret.append( '# end of class %(klass)s\n' )
if self.app_name:
# instantiate application class or PySimpleApp
ret.append( 'if __name__ == "__main__":' )
if self._use_gettext:
ret.append( '%(tab)sgettext.install("%(textdomain)s") # replace with the appropriate catalog name\n' )
if klass:
ret.append( '%(tab)s%(name)s = %(klass)s(0)' )
ret.append( '%(tab)s%(name)s.MainLoop()' )
else:
# use PySimpleApp
if top_win and top_win.WX_CLASS=="wxDialog":
show_code = ['%(tab)s%(top_win)s.ShowModal()',
'%(tab)s%(top_win)s.Destroy()']
else:
show_code = ['%(tab)s%(top_win)s.Show()']
ret += ['%(tab)s%(name)s = wx.PySimpleApp()',
'%(tab)s%(top_win)s = %(top_win_class)s(None, %(cn_wxIDANY)s, "")',
'%(tab)s%(name)s.SetTopWindow(%(top_win)s)'
] + show_code + [
'%(tab)s%(name)s.MainLoop()']
ret.append('')
return '\n'.join(ret)
def init_lang(self, app):
if self.preview and compat.PYTHON2:
self.header_lines.append('from __future__ import print_function\n')
self.header_lines.append('import wx\n')
def add_app(self, app, top_win):
# add language specific mappings
self.lang_mapping = { 'cn_wxApp': self.cn('wxApp'), 'cn_wxIDANY': self.cn('wxID_ANY'), 'import_gettext': ''}
# Add gettext import statements
if self._use_gettext:
if self.multiple_files:
self.lang_mapping['import_gettext'] = 'import gettext\n'
else:
self.dependencies.add( 'import gettext\n' )
BaseLangCodeWriter.add_app(self, app, top_win)
def generate_code_ctor(self, code_obj, is_new, tab):
# generate code for the class constructor, including all children
code_lines = []
write = lambda s: code_lines.append(s if s.strip() else '\n')
builder = self.obj_builders[code_obj.WX_CLASS]
mycn = getattr(builder, 'cn', self.cn)
mycn_f = getattr(builder, 'cn_f', self.cn_f)
fmt_klass = self.cn_class( code_obj.get_prop_value("class", code_obj.WX_CLASS) )
# custom base classes support
custom_base = None
if code_obj.check_prop_nodefault('custom_base') and not self.preview:
custom_base = code_obj.custom_base.strip() or None
# generate constructor code
if is_new:
base = mycn(code_obj.WX_CLASS)
if custom_base: base = ", ".join([b.strip() for b in custom_base.split(',')])
write('\nclass %s(%s):\n' % (self.get_class(fmt_klass), base))
write(self.tabs(1) + 'def __init__(self, *args, **kwds):\n')
elif custom_base:
# custom base classes set, but "overwrite existing sources" not set. Issue a warning about this
self.warning( '%s has custom base classes, but you are not overwriting '
'existing sources: please check that the resulting code is correct!' % code_obj.name )
if self._mark_blocks:
# __init__ begin tag
write(self.tmpl_block_begin % {'class_separator': self.class_separator, 'comment_sign': self.comment_sign,
'function':self.name_ctor, 'klass':fmt_klass, 'tab':tab} )
# the optional initial code from the code properties
if self._check_code_prop(code_obj, "extracode_pre"):
for l in code_obj.properties["extracode_pre"].get_lines():
write(tab + l)
style_p = code_obj.properties.get("style")
if style_p:
style = style_p.get_string_value()
m_style = mycn_f( style )
stmt_style = self._format_style(style, code_obj)
if stmt_style:
write(stmt_style % {'style': m_style, 'tab': tab} )
# initialise custom base class
if custom_base:
bases = [b.strip() for b in custom_base.split(',')]
for i, b in enumerate(bases):
if not i:
write(tab + '%s.__init__(self, *args, **kwds)\n' % b)
else:
write(tab + '%s.__init__(self)\n' % b)
else:
write(tab + '%s.__init__(self, *args, **kwds)\n' % mycn(code_obj.WX_CLASS))
# set size here to avoid problems with splitter windows
if code_obj.check_prop('size'):
write( tab + self.generate_code_size(code_obj) )
if code_obj.check_prop('min_size'):
write( tab + self.generate_code_size(code_obj, code_obj.min_size, "SetMinSize") )
for l in builder.get_properties_code(code_obj):
write(tab + l)
if self._check_code_prop(code_obj, "extraproperties"):
for l in self.generate_code_extraproperties(code_obj):
write(tab + l)
# the initial and final code for the contained elements
for l in self.classes[code_obj].init:
write(tab + l)
if self.classes[code_obj].final:
write(tab + "\n")
for l in self.classes[code_obj].final:
write(tab + l)
# now check if there is initial and final code for the element itself
for l in builder.get_init_code(code_obj):
write(tab+l)
for l in builder.get_layout_code(code_obj):
write(tab + l)
# the optional final code from the code properties
if self._check_code_prop(code_obj, "extracode_post"):
for l in code_obj.properties["extracode_post"].get_lines():
write(tab + l)
return code_lines
def generate_code_event_bind(self, code_obj, tab, event_handlers):
code_lines = []
if event_handlers: code_lines.append('\n')
for obj, event, handler, unused in event_handlers:
if obj is None: continue # bound already, the entry is just for creation of the method stub
if isinstance(obj, str):
obj_name_id = "id=%s"%obj # mainly for toolbar
else:
obj_name_id = self.format_generic_access(obj) # e.g. 'self.button_1' or 'self' for toplevels
if not handler.startswith("lambda "):
handler = 'self.%s'%handler
if 'EVT_NAVIGATION_KEY' in event:
tmpl = '%(tab)sself.Bind(%(event)s, %(handler)s)\n'
else:
tmpl = '%(tab)s%(obj_name_id)s.Bind(%(event)s, %(handler)s)\n'
lines = [tmpl % {'tab':tab, 'event':self.cn(event), 'handler':handler, 'obj_name_id':obj_name_id}]
if self.preview:
# for preview we add an exception handler as the event may be unknown for this wx version or at all
indent = self.tabs(1) # one additional level
lines.insert(0, '%stry:\n'%tab)
lines[1] = indent + lines[1] # indent by one level
lines.append( '%sexcept:\n'%tab )
lines.append( '%s%sprint("could not bind event %s - ignoring error for preview")\n'%(indent, tab, event) )
code_lines += lines
return code_lines
def generate_code_event_handler(self, code_obj, is_new, tab, prev_src, event_handlers):
# generate default event handler, calling event.Skip()
# Python has two indentation levels
# 1st) for function declaration
# 2nd) for function body
stub = [self.tabs(1), "def %(handler)s(self, event):"]
if self._mark_blocks: stub.append(" # wxGlade: %(klass)s.<event_handler>")
stub.append( """\n%(tab)sprint("Event handler '%(handler)s' not implemented!")\n""" )
stub.append( '%(tab)sevent.Skip()\n' )
self.tmpl_func_event_stub = "".join(stub)
event_handlers = [handler for handler in event_handlers if not handler[2].startswith("lambda ")]
return BaseLangCodeWriter.generate_code_event_handler( self, code_obj, is_new, tab, prev_src, event_handlers )
def generate_code_id(self, obj, id=None):
if obj and self.preview:
return '', '-1' # never generate ids for preview code
if id is None:
id = obj.window_id
if not id:
if obj is not None and obj.check_prop_truth("stockitem"):
return '', self.cn("wxID_" + obj.stockitem)
return '', self.cn('wxID_ANY')
id = str(id)
tokens = id.split('=', 1)
if len(tokens) != 2:
return '', self.cn(tokens[0]) # we assume name is declared elsewhere
name, val = tokens
if not name:
return '', self.cn(val)
name = name.strip()
val = val.strip()
if val == '?':
val = self.cn('wxNewId()')
else:
val = self.cn(val)
# check to see if we have to make the var global or not...
if '.' in name:
return '%s = %s\n' % (name, val), name
return 'global %s; %s = %s\n' % (name, name, val), name
def generate_code_size(self, obj, size=None, method=None):
objname = self.format_generic_access(obj)
if size is None:
size = obj.properties["size"].get_string_value()
use_dialog_units = (size[-1] == 'd')
if method is None:
method = 'SetMinSize' if obj.parent_window else 'SetSize'
if use_dialog_units:
if compat.IS_CLASSIC:
return '%s.%s(%s(%s, (%s)))\n' % ( objname, method, self.cn('wxDLG_SZE'), objname, size[:-1] )
else:
return '%s.%s(%s(%s, %s(%s)))\n' % ( objname, method, self.cn('wxDLG_UNIT'), objname, self.cn("wxSize"), size[:-1] )
else:
return '%s.%s((%s))\n' % (objname, method, size)
def _quote_str(self, s):
"""Escape all unicode characters to there unicode code points in form of \\uxxxx.
The returned string is a pure ascii string.
Normal ascii characters like \\n or \\t won't be escaped.
note: wxGlade don't handles file encoding well currently. Thereby we escape all unicode characters.
note: The string 's' is encoded with self.app_encoding already.
see: BaseLangCodeWriter._quote_str for additional details
_recode_x80_xff()"""
# convert all strings to unicode first
if not isinstance(s, compat.unicode):
s = s.decode(self.app_encoding)
# check if it's pure ascii
try:
dummy = s.encode('ascii')
if self._use_gettext:
return '_("%s")' % s
else:
return '"%s"' % s
except UnicodeError:
pass
# escape the unicode characters if given encoding requires it
try:
s.encode(self.app_encoding)
except UnicodeEncodeError:
s = s.encode('raw-unicode-escape')
s = self._recode_x80_xff(s)
s = s.decode("ASCII")
# convert unicode strings to pure ascii
# use "raw-unicode-escape" just escaped unicode characters and not default escape sequences
if self._use_gettext:
return '_(u"%s")' % s # XXX omit u for Python 3
else:
return 'u"%s"' % s # XXX omit u for Python 3
def add_object_format_name(self, name):
return '#self.%s' % name
def _format_classattr(self, obj):
res = BaseLangCodeWriter._format_classattr(self, obj)
if not res:
return res
elif obj.name.startswith('self.'):
return obj.name
# spacer.name is "<width>, <height>" already, but wxPython expect a tuple instead of two single values
elif obj.WX_CLASS in ('spacer','sizerslot'):
return '(%s)' % obj.name
elif self.store_as_attr(obj):
return 'self.%s' % obj.name
return obj.name
def _format_import(self, klass):
return 'from %s import %s\n' % (klass, self.get_class(klass))
def _get_class_filename(self, klass):
return os.path.join( self.out_dir, klass.replace('.', os.sep) + '.py' )
def format_generic_access(self, obj):
ret = self.get_cached(obj, 'attribute_access')
if ret is not None: return ret
ret = obj.IS_CLASS and 'self' or self._format_classattr(obj)
return self.cache(obj, 'attribute_access', ret)
writer = PythonCodeWriter() # The code writer is an instance of PythonCodeWriter.
language = writer.language # Language generated by this code generator
|