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
|
# A stab at a python debugger
import Res
import Qd
import Dlg
import Win
import FrameWork
import EasyDialogs
import sys
import TwitCore
from mac_widgets import MT_AnyList, MT_IndexList, MT_IconTextWidget
# Our dialogs
ID_STACK=513
I_STACK_TITLE=1
I_STACK=2
I_VARS_TITLE=3
I_VARS=4
I_SOURCE_TITLE=5
I_SOURCE=6
I_EXC_TITLE=7
I_EXC=8
I_EXCVALUE_TITLE=9
I_EXCVALUE=10
I_BROWSE=11
I_RULER1=12
I_RULER2=13
I_STATE_TITLE=14
I_STATE=15
I_SHOW_COMPLEX=16
I_SHOW_SYSTEM=17
I_EDIT=18
class StackBrowser(FrameWork.DialogWindow, TwitCore.StackBrowser):
"""The stack-browser dialog - mac-dependent part"""
def open(self):
FrameWork.DialogWindow.open(self, ID_STACK)
self.SetPort()
Qd.TextFont(3)
Qd.TextSize(9)
self.mi_open()
def create_items(self):
"""Create the lists we need"""
tp, h, rect = self.wid.GetDialogItem(I_STACK)
self.stack = MT_IndexList(self.wid, rect, 2)
tp, h, rect = self.wid.GetDialogItem(I_VARS)
self.vars = MT_AnyList(self.wid, rect, 2)
tp, h, rect = self.wid.GetDialogItem(I_SOURCE)
self.source = MT_IconTextWidget(self.wid, rect)
def setsource(self, msg):
tp, h, rect = self.wid.GetDialogItem(I_SOURCE_TITLE)
if self.cur_source:
Dlg.SetDialogItemText(h, self.cur_source)
else:
Dlg.SetDialogItemText(h, msg)
self.source.setcontent(self.cur_source)
def setexception(self, name, value):
if name == None:
self.wid.HideDialogItem(I_EXC)
self.wid.HideDialogItem(I_EXC_TITLE)
value = None
else:
self.wid.ShowDialogItem(I_EXC)
self.wid.ShowDialogItem(I_EXC_TITLE)
tp, h, rect = self.wid.GetDialogItem(I_EXC)
Dlg.SetDialogItemText(h, name)
if value == None:
self.wid.HideDialogItem(I_EXCVALUE)
self.wid.HideDialogItem(I_EXCVALUE_TITLE)
else:
self.wid.ShowDialogItem(I_EXCVALUE)
self.wid.ShowDialogItem(I_EXCVALUE_TITLE)
tp, h, rect = self.wid.GetDialogItem(I_EXCVALUE)
Dlg.SetDialogItemText(h, value)
def setprogramstate(self, msg):
tp, h, rect = self.wid.GetDialogItem(I_STATE)
Dlg.SetDialogItemText(h, msg)
def do_itemhit(self, item, event):
(what, message, when, where, modifiers) = event
Qd.SetPort(self.wid)
where = Qd.GlobalToLocal(where)
if item == I_STACK:
new_stackitem, double = self.stack.click(where, 0)
self.click_stack(new_stackitem)
elif item == I_VARS:
new_var, double = self.vars.click(where, 0)
if double:
self.click_var(new_var)
elif item == I_SOURCE:
lineno, inborder = self.source.click(where, 0)
if lineno <> None and lineno >= 0:
self.click_source(lineno, inborder)
elif item == I_BROWSE:
self.click_browse()
elif item == I_SHOW_COMPLEX:
self.show_complex = not self.show_complex
self.setup_frame()
elif item == I_SHOW_SYSTEM:
self.show_system = not self.show_system
self.setup_frame()
elif item == I_EDIT:
self.click_edit()
def set_var_buttons(self):
tp, h, rect = self.wid.GetDialogItem(I_SHOW_COMPLEX)
h.as_Control().SetControlValue(self.show_complex)
tp, h, rect = self.wid.GetDialogItem(I_SHOW_SYSTEM)
h.as_Control().SetControlValue(self.show_system)
def do_rawupdate(self, window, event):
Qd.SetPort(self.wid)
rgn = self.wid.GetWindowPort().visRgn
tp, h, rect = self.wid.GetDialogItem(I_RULER1)
Qd.MoveTo(rect[0], rect[1])
Qd.LineTo(rect[2], rect[1])
tp, h, rect = self.wid.GetDialogItem(I_RULER2)
Qd.MoveTo(rect[0], rect[1])
Qd.LineTo(rect[2], rect[1])
self.stack.update(rgn)
self.vars.update(rgn)
self.source.update(rgn)
def force_redraw(self):
Qd.SetPort(self.wid)
Win.InvalRgn(self.wid.GetWindowPort().visRgn)
def do_activate(self, activate, event):
self.stack.activate(activate)
self.vars.activate(activate)
self.source.activate(activate)
def close(self):
self.source.close()
del self.stack
del self.vars
del self.source
self.do_postclose()
|