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
|
#----------------------------------------------------------------------
# Name: ClassBrowser.py
# Purpose:
#
# Author: Riaan Booysen
#
# Created: 1999
# RCS-ID: $Id: ClassBrowser.py,v 1.19 2004/08/16 13:15:38 riaan Exp $
# Copyright: (c) 1999 - 2004 Riaan Booysen
# Licence: GPL
#----------------------------------------------------------------------
#Boa:Frame:ClassBrowserFrame
import os, pyclbr
from wxPython.wx import *
import Preferences, Utils
from Preferences import IS
[wxID_CLASSBROWSERFRAME, wxID_CLASSBROWSERFRAMEHIERARCHY,
wxID_CLASSBROWSERFRAMEPAGES, wxID_CLASSBROWSERFRAMESTATUSBAR,
wxID_CLASSBROWSERFRAMETREE,
] = map(lambda _init_ctrls: wxNewId(), range(5))
class ClassBrowserFrame(wxFrame, Utils.FrameRestorerMixin):
def _init_coll_pages_Pages(self, parent):
# generated method, don't edit
parent.AddPage(select=true, imageId=-1, page=self.hierarchy,
text='Hierarchy')
parent.AddPage(select=false, imageId=-1, page=self.tree,
text='Modules')
def _init_utils(self):
# generated method, don't edit
pass
def _init_ctrls(self, prnt):
# generated method, don't edit
wxFrame.__init__(self, id=wxID_CLASSBROWSERFRAME, name='', parent=prnt,
pos=wxPoint(475, 238), size=wxSize(299, 497),
style=wxDEFAULT_FRAME_STYLE | Preferences.childFrameStyle,
title='wxPython Class Browser')
self._init_utils()
self.SetClientSize(wxSize(291, 470))
EVT_CLOSE(self, self.OnCloseWindow)
self.statusBar = wxStatusBar(id=wxID_CLASSBROWSERFRAMESTATUSBAR,
name='statusBar', parent=self, style=wxST_SIZEGRIP)
self.SetStatusBar(self.statusBar)
self.pages = wxNotebook(id=wxID_CLASSBROWSERFRAMEPAGES, name='pages',
parent=self, pos=wxPoint(0, 0), size=wxSize(291, 450), style=0)
self.hierarchy = wxTreeCtrl(id=wxID_CLASSBROWSERFRAMEHIERARCHY,
name='hierarchy', parent=self.pages, pos=wxPoint(0, 0),
size=wxSize(283, 424), style=wxTR_HAS_BUTTONS,
validator=wxDefaultValidator)
self.tree = wxTreeCtrl(id=wxID_CLASSBROWSERFRAMETREE, name='tree',
parent=self.pages, pos=wxPoint(0, 0), size=wxSize(283, 424),
style=wxTR_HAS_BUTTONS, validator=wxDefaultValidator)
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 ('wxPython.wx', 'wxPython.utils', 'wxPython.html',
'wxPython.htmlhelp', 'wxPython.help', 'wxPython.calendar',
'wxPython.grid', 'wxPython.ogl', 'wxPython.stc',
'wxPython.gizmos', 'wxPython.wizard'):
self.classes.update(pyclbr.readmodule(module))
tID = wxNewId()
root = self.hierarchy.AddRoot('wxObject')
clsDict = {}
for i in self.classes.keys():
travTilBase(i, self.classes, clsDict)
buildTree(self.hierarchy, root, clsDict)
self.hierarchy.Expand(root)
tID = wxNewId()
root = self.tree.AddRoot('Modules')
modules = {}
moduleName = ''
for className in self.classes.keys():
moduleName = os.path.basename(self.classes[className].file)
if not modules.has_key(moduleName):
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 self.classes[className].methods.has_key('Set'+method[3:]):
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 self.classes[className].methods.has_key('Get'+method[3:]):
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 classes.has_key(name):
if not root.has_key(name):
root[name] = {}
return root[name]
elif len(classes[name].super) == 0:
if not root.has_key(name):
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 c.has_key(name):
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:
wxBeginBusyCursor()
try:
palette.browser = ClassBrowserFrame(palette)
finally:
wxEndBusyCursor()
palette.browser.restore()
from Models import EditorHelper
EditorHelper.editorToolsReg.append( ('wxPython class browser', openClassBrowser,
'Images/Shared/ClassBrowser.png') )
if __name__ == '__main__':
app = wxPySimpleApp()
frame = ClassBrowserFrame(None)
frame.Show(true)
app.MainLoop()
|