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 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
|
import os, pprint
from repr import Repr
from wxPython.wx import *
from wxPython.lib.stattext import wxGenStaticText
import Preferences, Utils
from Preferences import IS
from Explorers import Explorer
from Breakpoint import bplist
SEL_STATE = wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED
class DebuggerListCtrl(wxListView, Utils.ListCtrlSelectionManagerMix):
def __init__(self, parent, wId):
wxListView.__init__(self, parent, wId,
style=wxLC_REPORT|wxLC_SINGLE_SEL|wxLC_VRULES|wxCLIP_CHILDREN)
Utils.ListCtrlSelectionManagerMix.__init__(self)
wxID_STACKVIEW = wxNewId()
class StackViewCtrl(DebuggerListCtrl):
def __init__(self, parent, flist, debugger):
DebuggerListCtrl.__init__(self, parent, wxID_STACKVIEW)
self.InsertColumn(0, 'Frame', wxLIST_FORMAT_LEFT, 150)
self.InsertColumn(1, 'Line', wxLIST_FORMAT_LEFT, 35)
self.InsertColumn(2, 'Code', wxLIST_FORMAT_LEFT, 300)
EVT_LIST_ITEM_SELECTED(self, wxID_STACKVIEW, self.OnStackItemSelected)
EVT_LEFT_DCLICK(self, self.OnGotoSource)
self.flist = flist
self.debugger = debugger
self.stack = []
def load_stack(self, stack, index=None):
import linecache
self.stack = stack
data = []
pos = 0
count = self.GetItemCount()
for entry in stack:
lineno = entry['lineno']
modname = entry['modname']
filename = entry['client_filename']
funcname = entry['funcname']
sourceline = linecache.getline(filename, lineno)
sourceline = sourceline.strip()
if funcname in ("?", "", None):
#item = "%s, line %d: %s" % (modname, lineno, sourceline)
attrib = modname
else:
#item = "%s.%s(), line %d: %s" % (modname, funcname,
# lineno, sourceline)
# XXX methods will be shown as "module.function"
# when maybe they ought to be shown as "module.class.method".
attrib = modname + '.' + funcname
#if pos == index:
# item = "> " + item
if pos >= count:
# Insert.
self.InsertStringItem(pos, attrib)
count = count + 1
else:
# Update.
self.SetStringItem(pos, 0, attrib, -1)
self.SetStringItem(pos, 1, `lineno`, -1)
self.SetStringItem(pos, 2, sourceline, -1)
pos = pos + 1
while pos < count:
self.DeleteItem(count - 1)
count = count - 1
def OnStackItemSelected(self, event):
selection = self.getSelection()
stacklen = len(self.stack)
if 0 <= selection < stacklen:
self.debugger.invalidatePanes()
self.debugger.updateSelectedPane()
def selectCurrentEntry(self):
selection = self.getSelection()
newsel = self.GetItemCount() - 1
if newsel != selection:
if selection >= 0:
item = self.GetItem(selection)
item.m_state = item.m_state & ~wxLIST_STATE_SELECTED
self.SetItem(item)
if newsel >= 0:
item = self.GetItem(newsel)
item.m_state = item.m_state | wxLIST_STATE_SELECTED
self.SetItem(item)
if newsel >= 0:
self.EnsureVisible(newsel)
def OnGotoSource(self, event=None):
selection = self.getSelection()
if selection != -1:
entry = self.stack[selection]
lineno = entry['lineno']
modname = entry['modname']
filename = entry['client_filename']
if not filename:
return
editor = self.debugger.editor
editor.SetFocus()
try:
editor.openOrGotoModule(filename)
except Explorer.TransportLoadError, err:
serverPath = entry['filename']
if serverPath[0] == '<' and serverPath[-1] == '>':
wxLogError('Not a source file: %s, probably an executed '
'string.'%serverPath)
return
res = wxMessageBox('Could not open file: %s.\n\nIf This is a '
'server path for which you\nhave not defined a mapping '
'click "Yes" to browse to the file to the mapping can '
'be computed.\nPress "No" to open the path dialog.'%filename,
'File Open Error, try to compute path?',
wxICON_WARNING | wxYES_NO | wxCANCEL)
if res == wxYES:
clientPath = editor.openFileDlg(curfile=os.path.basename(filename))
if clientPath:
clientPath = prevClientPath = Explorer.splitURI(clientPath)[2]
prevServerPath = serverPath
while 1:
serverPath, serverBase = os.path.split(serverPath)
clientPath, clientBase = os.path.split(clientPath)
if serverBase != clientBase:
paths = self.debugger.serverClientPaths[:]
paths.append( (prevServerPath, prevClientPath) )
if self.debugger.OnPathMappings(paths=paths):
self.refreshClientFilenames()
break
if not serverPath or not clientPath:
wxLogError('Paths are identical')
break
prevClientPath = clientPath
prevServerPath = serverPath
elif res == wxNO:
if self.debugger.OnPathMappings():
self.refreshClientFilenames()
return
model = editor.getActiveModulePage().model
view = model.getSourceView()
if view is not None:
view.focus()
view.SetFocus()
view.selectLine(lineno - 1)
def refreshClientFilenames(self):
for entry in self.stack:
entry['client_filename'] = \
self.debugger.serverFNToClientFN(entry['filename'])
[wxID_BREAKVIEW, wxID_BREAKSOURCE, wxID_BREAKEDIT, wxID_BREAKDELETE,
wxID_BREAKENABLED, wxID_BREAKREFRESH, wxID_BREAKIGNORE] = Utils.wxNewIds(7)
class BreakViewCtrl(DebuggerListCtrl):
def __init__(self, parent, debugger):
DebuggerListCtrl.__init__(self, parent, wxID_BREAKVIEW)
self.InsertColumn(0, 'Module', wxLIST_FORMAT_LEFT, 90)
self.InsertColumn(1, 'Line', wxLIST_FORMAT_CENTER, 40)
self.InsertColumn(2, 'Ignore', wxLIST_FORMAT_CENTER, 45)
self.InsertColumn(3, 'Hits', wxLIST_FORMAT_CENTER, 45)
self.InsertColumn(4, 'Condition', wxLIST_FORMAT_LEFT, 250)
self.brkImgLst = wxImageList(16, 16)
self.brkImgLst.Add(IS.load('Images/Debug/Breakpoint-red.png'))
self.brkImgLst.Add(IS.load('Images/Debug/Breakpoint-yellow.png'))
self.brkImgLst.Add(IS.load('Images/Debug/Breakpoint-gray.png'))
self.brkImgLst.Add(IS.load('Images/Debug/Breakpoint-blue.png'))
EVT_LEFT_DCLICK(self, self.OnGotoSource)
self.debugger = debugger
self.menu = wxMenu()
self.menu.Append(wxID_BREAKSOURCE, 'Goto source')
self.menu.Append(wxID_BREAKREFRESH, 'Refresh')
self.menu.Append(-1, '-')
self.menu.Append(wxID_BREAKIGNORE, 'Edit ignore count')
self.menu.Append(wxID_BREAKEDIT, 'Edit condition')
self.menu.Append(wxID_BREAKDELETE, 'Delete')
self.menu.Append(-1, '-')
self.menu.Append(wxID_BREAKENABLED, 'Enabled', '', true)
self.menu.Check(wxID_BREAKENABLED, true)
EVT_MENU(self, wxID_BREAKSOURCE, self.OnGotoSourceRight)
EVT_MENU(self, wxID_BREAKREFRESH, self.OnRefresh)
EVT_MENU(self, wxID_BREAKIGNORE, self.OnEditIgnore)
EVT_MENU(self, wxID_BREAKEDIT, self.OnEditCondition)
EVT_MENU(self, wxID_BREAKDELETE, self.OnDelete)
EVT_MENU(self, wxID_BREAKENABLED, self.OnToggleEnabled)
self.pos = None
self.setPopupMenu(self.menu)
self.AssignImageList(self.brkImgLst, wxIMAGE_LIST_SMALL)
self.bps = []
self.stats_map = {}
def destroy(self):
self.menu.Destroy()
self.brkImgLst = None
def updateBreakpointStats(self, stats):
"""Received from debugger.
stats is a list of mappings."""
stats_map = {}
for item in stats:
fn = item['client_filename']
lineno = item['lineno']
stats_map[(fn, lineno)] = item
if not bplist.hasBreakpoint(fn, lineno):
# A hard breakpoint was hit and a new breakpoint was created.
bplist.addBreakpoint(fn, lineno)
self.stats_map = stats_map
def refreshList(self):
self.DeleteAllItems()
bps = bplist.getBreakpointList()
# Sort by filename and lineno.
bps.sort(lambda a, b:
cmp((a['filename'], a['lineno']),
(b['filename'], b['lineno'])))
self.bps = bps
for p in range(len(bps)):
bp = bps[p]
# setup prelim image
imgIdx = 0
if not bp['enabled']: imgIdx = 2
elif bp['temporary']: imgIdx = 3
self.InsertImageStringItem(
p, os.path.basename(bp['filename']), imgIdx)
self.SetStringItem(p, 1, str(bp['lineno']))
hits = ''
ignore = ''
cond = ''
if self.stats_map:
item = self.stats_map.get((bp['filename'], bp['lineno']), None)
if item is not None:
hits = str(item['hits'])
ignore = str(item['ignore'])
cond = item['cond'] or ''
self.SetStringItem(p, 2, ignore)
self.SetStringItem(p, 3, hits)
self.SetStringItem(p, 4, cond)
def addBreakpoint(self, filename, lineno):
self.refreshList()
def selectBreakpoint(self, filename, lineno):
idx = 0
for bp in self.bps:
if bp['filename']==filename and bp['lineno']==lineno:
self.SetItemState(idx, SEL_STATE, SEL_STATE)
self.EnsureVisible(idx)
return
idx = idx + 1
def OnGotoSource(self, event=None):
sel = self.getSelection()
if sel != -1:
self.gotoSourceForItem(sel)
def OnGotoSourceRight(self, event):
sel = self.getSelection()
if sel != -1:
self.gotoSourceForItem(sel)
def gotoSourceForItem(self, sel):
bp = self.bps[sel]
filename = bp['filename']
if not filename:
return
editor = self.debugger.editor
editor.SetFocus()
model, ctrlr = editor.openOrGotoModule(filename)
view = model.getSourceView()
if view is not None:
view.focus()
view.GotoLine(bp['lineno'] - 1)
def OnDelete(self, event):
sel = self.getSelection()
if sel != -1:
bp = self.bps[sel]
filename = bp['filename']
bplist.deleteBreakpoints(filename, bp['lineno'])
# Delete in debug server
server_fn = self.debugger.clientFNToServerFN(filename)
self.debugger.invokeInDebugger(
'clearBreakpoints', (server_fn, bp['lineno']))
# Unmark the breakpoint in the editor (if open)
sourceView = self.debugger.getEditorSourceView(filename)
if sourceView:
sourceView.deleteBreakMarkers(bp['lineno'])
#self.debugger.requestDebuggerStatus()
self.refreshList()
def OnRefresh(self, event):
self.refreshList()
def OnToggleEnabled(self, event):
sel = self.getSelection()
if sel != -1:
bp = self.bps[sel]
filename = bp['filename']
lineno = bp['lineno']
enabled = bp['enabled'] = not bp['enabled']
bplist.enableBreakpoints(filename, lineno, enabled)
server_fn = self.debugger.clientFNToServerFN(filename)
self.debugger.invokeInDebugger(
'enableBreakpoints', (server_fn, lineno, enabled))
self.refreshList()
sourceView = self.debugger.getEditorSourceView(filename)
if sourceView:
sourceView.deleteBreakMarkers(bp['lineno'])
sourceView.setBreakMarker(bp)
def getPopupMenu(self):
wxYield()
sel = self.getSelection()
self.menu.Enable(wxID_BREAKSOURCE, sel != -1)
self.menu.Enable(wxID_BREAKIGNORE, sel != -1)
self.menu.Enable(wxID_BREAKEDIT, sel != -1)
self.menu.Enable(wxID_BREAKDELETE, sel != -1)
self.menu.Enable(wxID_BREAKENABLED, sel != -1)
if sel != -1:
bp = self.bps[sel]
self.menu.Check(wxID_BREAKENABLED, bp['enabled'])
return DebuggerListCtrl.getPopupMenu(self)
def OnEditCondition(self, event):
sel = self.getSelection()
if sel != -1:
bp = self.bps[sel]
filename = bp['filename']
lineno = bp['lineno']
cond = bp['cond']
dlg = wxTextEntryDialog(self, 'Condition to break on:',
'Change condition', cond)
try:
if dlg.ShowModal() == wxID_OK:
cond = dlg.GetValue().strip()
bplist.conditionalBreakpoints(filename, lineno, cond)
# Update debug server
server_fn = self.debugger.clientFNToServerFN(filename)
self.debugger.invokeInDebugger(
'conditionalBreakpoints', (server_fn, lineno, cond))
self.debugger.requestDebuggerStatus()
#self.refreshList()
finally:
dlg.Destroy()
def OnEditIgnore(self, event):
sel = self.getSelection()
if sel != -1:
bp = self.bps[sel]
filename = bp['filename']
lineno = bp['lineno']
ignore = bp['ignore']
dlg = wxTextEntryDialog(self, 'Number of hits to ignore:',
'Change ignore count', `ignore`)
try:
if dlg.ShowModal() == wxID_OK:
ignore = int(dlg.GetValue())
# Update debugger list and debug server
bplist.ignoreBreakpoints(filename, lineno, ignore)
server_fn = self.debugger.clientFNToServerFN(filename)
self.debugger.invokeInDebugger(
'ignoreBreakpoints', (server_fn, lineno, ignore))
self.debugger.requestDebuggerStatus()
#self.refreshList()
finally:
dlg.Destroy()
# XXX Expose classes' dicts as indented items
wxID_NSVIEW = wxNewId()
class NamespaceViewCtrl(DebuggerListCtrl):
def __init__(self, parent, debugger, is_local, name):
DebuggerListCtrl.__init__(self, parent, wxID_NSVIEW)
self.InsertColumn(0, 'Attribute', wxLIST_FORMAT_LEFT, 125)
self.InsertColumn(1, 'Value', wxLIST_FORMAT_LEFT, 200)
self.is_local = is_local
self.menu = wxMenu()
idAs = wxNewId()
idA = wxNewId()
self.menu.Append(idAs, 'Add as watch')
self.menu.Append(idA, 'Add a %s watch' % name)
EVT_MENU(self, idAs, self.OnAddAsWatch)
EVT_MENU(self, idA, self.OnAddAWatch)
outputId = wxNewId()
self.menu.Append(outputId, 'Write value to Output')
EVT_MENU(self, outputId, self.OnValueToOutput)
EVT_LEFT_DCLICK(self, self.OnDoubleClick)
self.pos = None
self.setPopupMenu(self.menu)
self.repr = Repr()
self.repr.maxstring = 100
self.repr.maxother = 100
self.names = []
self.debugger = debugger
def destroy(self):
self.menu.Destroy()
def showLoading(self):
self.DeleteAllItems()
self.InsertStringItem(0, '...')
def load_dict(self, nsdict, force=0):
self.DeleteAllItems()
if not nsdict:
pass
else:
self.names = nsdict.keys()
self.names.sort()
row = 0
for name in self.names:
svalue = nsdict[name]
self.InsertStringItem(row, name)
self.SetStringItem(row, 1, svalue, -1)
row = row + 1
def OnAddAsWatch(self, event):
selected = self.getSelection()
if selected != -1:
name = self.names[selected]
self.debugger.add_watch(name, self.is_local)
def OnAddAWatch(self, event):
self.debugger.add_watch('', self.is_local)
def OnValueToOutput(self, event):
selected = self.getSelection()
if selected != -1:
name = self.names[selected]
self.debugger.valueToOutput(name)
def OnDoubleClick(self, event):
if event.ControlDown():
self.OnValueToOutput(event)
else:
self.OnAddAsWatch(event)
wxID_WATCHVIEW = wxNewId()
class WatchViewCtrl(DebuggerListCtrl):
def __init__(self, parent, images, debugger):
DebuggerListCtrl.__init__(self, parent, wxID_WATCHVIEW)
self.InsertColumn(0, 'Attribute', wxLIST_FORMAT_LEFT, 125)
self.InsertColumn(1, 'Value', wxLIST_FORMAT_LEFT, 200)
self.repr = Repr()
self.repr.maxstring = 60
self.repr.maxother = 60
self.debugger = debugger
self.watches = []
self.AssignImageList(images, wxIMAGE_LIST_SMALL)
self.menu = wxMenu()
wid = wxNewId()
self.menu.Append(wid, 'Add local watch')
EVT_MENU(self, wid, self.OnAddLocal)
wid = wxNewId()
self.menu.Append(wid, 'Add global watch')
EVT_MENU(self, wid, self.OnAddGlobal)
self.editId = wxNewId()
self.menu.Append(self.editId, 'Edit watch')
EVT_MENU(self, self.editId, self.OnEdit)
self.outputId = wxNewId()
self.menu.Append(self.outputId, 'Write value to Output')
EVT_MENU(self, self.outputId, self.OnValueToOutput)
self.deleteId = wxNewId()
self.menu.Append(self.deleteId, 'Delete')
EVT_MENU(self, self.deleteId, self.OnDelete)
self.expandId = wxNewId()
self.menu.Append(self.expandId, 'Expand')
EVT_MENU(self, self.expandId, self.OnExpand)
wid = wxNewId()
self.menu.Append(wid, 'Delete All')
EVT_MENU(self, wid, self.OnDeleteAll)
EVT_LEFT_DCLICK(self, self.OnDoubleClick)
self.pos = None
self.setPopupMenu(self.menu)
def destroy(self):
self.menu.Destroy()
def add_watch(self, name, local, pos=-1):
if name:
if pos < 0 or pos >= len(self.watches):
self.watches.append((name, local))
pos = len(self.watches)-1
else:
self.watches.insert(pos, (name, local))
else:
dlg = wxTextEntryDialog(
self, 'Expression:', 'Add a watch:', '')
try:
if dlg.ShowModal() == wxID_OK:
self.watches.append((dlg.GetValue(), local))
pos = len(self.watches)-1
finally:
dlg.Destroy()
#self.SetItemState(pos, SEL_STATE, SEL_STATE)
#self.EnsureVisible(pos)
def showLoading(self):
self.load_dict(None, loading=1)
def load_dict(self, svalues, force=0, loading=0):
count = self.GetItemCount()
row = 0
for name, local in self.watches:
if svalues:
svalue = svalues.get(name, '???')
elif loading:
svalue = '...'
else:
svalue = '???'
if local:
idx = 3
else:
idx = 4
if row >= count:
# Insert.
self.InsertImageStringItem(row, name, idx)
count = count + 1
else:
# Update.
self.SetStringItem(row, 0, name, idx)
self.SetStringItem(row, 1, svalue, idx)
row = row + 1
while row < count:
self.DeleteItem(count - 1)
count = count - 1
def OnAddLocal(self, event):
self.add_watch('', true)
self.debugger.updateSelectedPane(force=1)
def OnAddGlobal(self, event):
self.add_watch('', false)
self.debugger.updateSelectedPane(force=1)
def OnEdit(self, event):
selected = self.getSelection()
if selected != -1:
name, local = self.watches[selected]
dlg = wxTextEntryDialog(
self, 'Expression:', 'Edit watch:', name)
try:
if dlg.ShowModal() == wxID_OK:
self.watches[selected] = (dlg.GetValue(), local)
self.debugger.updateSelectedPane(force=1)
finally:
dlg.Destroy()
def OnDelete(self, event):
selected = self.getSelection()
if selected != -1:
del self.watches[selected]
self.DeleteItem(selected)
self.debugger.updateSelectedPane(force=1)
def OnDeleteAll(self, event):
del self.watches[:]
self.DeleteAllItems()
def OnExpand(self, event):
selected = self.getSelection()
if selected != -1:
name, local = self.watches[selected]
self.debugger.requestWatchSubobjects(name, local, selected + 1)
def getPopupMenu(self):
sel = self.getSelection()
self.menu.Enable(self.editId, sel != -1)
self.menu.Enable(self.deleteId, sel != -1)
self.menu.Enable(self.expandId, sel != -1)
return DebuggerListCtrl.getPopupMenu(self)
def OnValueToOutput(self, event):
selected = self.getSelection()
if selected != -1:
name = self.watches[selected][0]
self.debugger.valueToOutput(name)
def OnDoubleClick(self, event):
if event.ControlDown():
self.OnValueToOutput(event)
else:
self.OnEdit(event)
class DebugStatusBar(wxStatusBar):
def __init__(self, parent):
wxStatusBar.__init__(self, parent, -1, style=0)
self.SetFieldsCount(2)
self.SetMinHeight(30)
#self.SetStatusWidths([-1, -1, 16])
self.stateCols = {'except': wxColour(0xFF, 0xFF, 0x44),#wxNamedColour('yellow'),
'info': wxNamedColour('white'),
'break': wxColour(0xFF, 0x44, 0x44),#wxNamedColour('red'),
'busy': wxColour(0xBB, 0xE0, 0xFF)}
self.instr_ptr = wxGenStaticText(self, -1, ' ',
style=wxALIGN_CENTER|wxST_NO_AUTORESIZE)
self.instr_ptr.SetBackgroundColour(wxColour(0xEE, 0xEE, 0xEE))
self._setCtrlDims(self.instr_ptr, self.GetFieldRect(0))
self.state = wxGenStaticText(self, -1, 'Ready.',
style=wxALIGN_CENTER|wxST_NO_AUTORESIZE)
self.state.SetBackgroundColour(self.stateCols['info'])
self._setCtrlDims(self.state, self.GetFieldRect(1))
dc = wxClientDC(self)
dc.SetFont(self.GetFont())
(w,h) = dc.GetTextExtent('X')
h = int(h * 1.8)
self.SetSize(wxSize(100, h))
EVT_SIZE(self, self.OnSize)
def _setCtrlDims(self, ctrl, rect):
ctrl.SetDimensions(rect.x+2, rect.y+2, rect.width-4, rect.height-4)
def updateState(self, message, sts_type='except'):
if message:
self.state.SetBackgroundColour(self.stateCols[sts_type])
else:
self.state.SetBackgroundColour(self.stateCols['info'])
self.state.SetLabel(message)
self.state.SetToolTipString(message)
self._setCtrlDims(self.state, self.GetFieldRect(1))
def updateInstructionPtr(self, status):
self.instr_ptr.SetLabel(status)
self._setCtrlDims(self.instr_ptr, self.GetFieldRect(0))
def OnSize(self, event):
self._setCtrlDims(self.instr_ptr, self.GetFieldRect(0))
self._setCtrlDims(self.state, self.GetFieldRect(1))
|