-
Notifications
You must be signed in to change notification settings - Fork 8
/
ClassBrowser.py
215 lines (177 loc) · 7.82 KB
/
ClassBrowser.py
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
#----------------------------------------------------------------------
# Name: ClassBrowser.py
# Purpose:
#
# Author: Riaan Booysen
#
# Created: 1999
# RCS-ID: $Id$
# Copyright: (c) 1999 - 2007 Riaan Booysen
# Licence: GPL
#----------------------------------------------------------------------
#Boa:Frame:ClassBrowserFrame
import os, pyclbr, sys
import wx
import Preferences, Utils, Plugins
from Preferences import IS
from Utils import _
[wxID_CLASSBROWSERFRAME, wxID_CLASSBROWSERFRAMEHIERARCHY,
wxID_CLASSBROWSERFRAMEPAGES, wxID_CLASSBROWSERFRAMESTATUSBAR,
wxID_CLASSBROWSERFRAMETREE,
] = [wx.NewId() for _init_ctrls in range(5)]
class ClassBrowserFrame(wx.Frame, Utils.FrameRestorerMixin):
def _init_coll_pages_Pages(self, parent):
# generated method, don't edit
parent.AddPage(imageId=-1, page=self.hierarchy, select=True,
text=_('Hierarchy'))
parent.AddPage(imageId=-1, page=self.tree, select=False, text=_('Modules'))
def _init_ctrls(self, prnt):
# generated method, don't edit
wx.Frame.__init__(self, id=wxID_CLASSBROWSERFRAME, name='', parent=prnt,
pos=wx.Point(475, 238), size=wx.Size(299, 497),
style=wx.DEFAULT_FRAME_STYLE | Preferences.childFrameStyle,
title=_('wxPython Class Browser'))
self.SetClientSize(wx.Size(291, 470))
self.Bind(wx.EVT_CLOSE, self.OnCloseWindow)
self.statusBar = wx.StatusBar(id=wxID_CLASSBROWSERFRAMESTATUSBAR,
name='statusBar', parent=self, style=wx.ST_SIZEGRIP)
self.SetStatusBar(self.statusBar)
self.pages = wx.Notebook(id=wxID_CLASSBROWSERFRAMEPAGES, name='pages',
parent=self, pos=wx.Point(0, 0), size=wx.Size(291, 450), style=0)
self.hierarchy = wx.TreeCtrl(id=wxID_CLASSBROWSERFRAMEHIERARCHY,
name='hierarchy', parent=self.pages, pos=wx.Point(0, 0),
size=wx.Size(283, 424), style=wx.TR_HAS_BUTTONS)
self.tree = wx.TreeCtrl(id=wxID_CLASSBROWSERFRAMETREE, name='tree',
parent=self.pages, pos=wx.Point(0, 0), size=wx.Size(283, 424),
style=wx.TR_HAS_BUTTONS)
self._init_coll_pages_Pages(self.pages)
def __init__(self, parent):
self._init_ctrls(parent)
self.winConfOption = 'classbrowser'
self.loadDims()
self.SetIcon(IS.load('Images/Icons/ClassBrowser.ico'))
self.classes = {}
for module in ('wx', 'wx.html', 'wx.calendar', 'wx.grid', 'wx.stc',
'wx.gizmos', 'wx.wizard'):
self.classes.update(pyclbr.readmodule(module))
tID =wx.NewId()
root = self.hierarchy.AddRoot('wx.Object')
clsDict = {}
for i in self.classes.keys():
travTilBase(i, self.classes, clsDict)
buildTree(self.hierarchy, root, clsDict)
self.hierarchy.Expand(root)
tID =wx.NewId()
root = self.tree.AddRoot(_('Modules'))
modules = {}
moduleName = ''
for className in self.classes.keys():
moduleName = os.path.basename(self.classes[className].file)
if not moduleName in modules:
modules[moduleName] = {}
modules[moduleName][className] = {}
modules[moduleName][className]['Properties'] = {}
modules[moduleName][className]['Methods'] = {}
modules[moduleName][className]['Built-in'] = {}
for method in self.classes[className].methods.keys():
if (method[:2] == '__'):
modules[moduleName][className]['Built-in'][method] = self.classes[className].lineno
elif (method[:3] == 'Get'):
if 'Set'+method[3:] in self.classes[className].methods:
modules[moduleName][className]['Properties'][method[3:]] = self.classes[className].lineno
else:
modules[moduleName][className]['Methods'][method] = self.classes[className].lineno
elif (method[:3] == 'Set'):
if 'Get'+method[3:] in self.classes[className].methods:
modules[moduleName][className]['Properties'][method[3:]] = self.classes[className].lineno
else:
modules[moduleName][className]['Methods'][method] = self.classes[className].lineno
else:
modules[moduleName][className]['Methods'][method] = self.classes[className].lineno
moduleLst = modules.keys()
moduleLst.sort()
for module in moduleLst:
roots = self.tree.AppendItem(root, module)
classLst = modules[module].keys()
classLst.sort()
for classes in classLst:
aClass = self.tree.AppendItem(roots, classes)
methItem = self.tree.AppendItem(aClass, _('Methods'))
for methods in modules[module][classes]['Methods'].keys():
methodsItem = self.tree.AppendItem(methItem, methods)
propItem = self.tree.AppendItem(aClass, _('Properties'))
for properties in modules[module][classes]['Properties'].keys():
propertyItem = self.tree.AppendItem(propItem, properties)
bInItem = self.tree.AppendItem(aClass, _('Built-in'))
for builtIns in modules[module][classes]['Built-in'].keys():
builtInItem = self.tree.AppendItem(bInItem, builtIns)
suprItem = self.tree.AppendItem(aClass, _('Super'))
for supers in self.classes[classes].super:
try:
superItem = self.tree.AppendItem(suprItem, supers.name)
except AttributeError:
superItem = self.tree.AppendItem(suprItem, supers)
self.tree.Expand(root)
def setDefaultDimensions(self):
self.SetDimensions(0, Preferences.underPalette,
Preferences.inspWidth,
Preferences.bottomHeight)
def OnCloseWindow(self, event):
self.Show(True)
self.Show(False)
if __name__ == '__main__':
self.Destroy()
def findInsertModules(name, tree):
ri = tree.GetRootItem()
item = ri
found = False
while item:
item = tree.GetNextSibling(item)
if tree.GetItemText(item) == name:
found = True
return item
return tree.AddRoot(name)
def travTilBase(name, classes, root):
if not name in classes:
if not name in root:
root[name] = {}
return root[name]
elif len(classes[name].super) == 0:
if not name in root:
root[name] = {}
return root[name]
else:
super1 = classes[name].super[0]
if type(super1) != type(''):
super1 = super1.name
c = travTilBase(super1, classes, root)
if not name in c:
c[name] = {}
return c[name]
def buildTree(tree, parent, dict):
items = dict.keys()
items.sort()
for item in items:
child = tree.AppendItem(parent, item)
if len(dict[item].keys()):
buildTree(tree, child, dict[item])
#-------------------------------------------------------------------------------
def openClassBrowser(editor):
palette = editor.palette
if not palette.browser:
wx.BeginBusyCursor()
try:
palette.browser = ClassBrowserFrame(palette)
finally:
wx.EndBusyCursor()
palette.browser.restore()
# pyclbr doesn't work without source
if not hasattr(sys, 'frozen'):
Plugins.registerTool(_('wxPython class browser'), openClassBrowser,
'Images/Shared/ClassBrowser.png')
#-------------------------------------------------------------------------------
if __name__ == '__main__':
app = wx.PySimpleApp()
frame = ClassBrowserFrame(None)
frame.Show(True)
app.MainLoop()