Newer
Older
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
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
bl_info = {
'name': "Class Viewer",
'author': "Mackraken", "batFinger"
'version': (0, 1, 2),
'blender': (2, 5, 8),
'api': 37702,
'location': "Text Editor > Toolbar, Text Editor > Right Click",
'warning': "",
'description': "List text's classes and definitions",
'wiki_url': "https://sites.google.com/site/aleonserra/home/scripts/class-viewer",
'category': "Development"}
import bpy
#lists all defs, comment or classes
#space = current text editor
#sort = sort result
#tipo = kind of struct to look for
#escape = character right next to the class or def name
def getfunc(space, sort, tipo="def ", escape= ""):
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
if space.type=="TEXT_EDITOR":
if space.text!=None:
txt = space.text
for i, l in enumerate(txt.lines):
try:
line = l.body
except:
line=""
if line[0:len(tipo)]==tipo:
end = line.find(escape)
if end==0:
func = line[len(tipo)::]
else:
func = line[len(tipo):end]
defs.append([func, i+1])
if sort: defs.sort()
return defs
class TEXT_OT_Jumptoline(bpy.types.Operator):
bl_label = "Jump"
bl_idname = "text.jumptoline"
__doc__ = "Jump to line"
line = bpy.props.IntProperty(default=-1)
@classmethod
def poll(cls, context):
if context.area.spaces[0].type!="TEXT_EDITOR":
return False
else:
return context.area.spaces[0].text!=None
def execute(self, context):
scn = context.scene
if self.line!=-1:
bpy.ops.text.jump(line=self.line)
return {'FINISHED'}
class CommentsMenu(bpy.types.Menu):
bl_idname = "OBJECT_MT_select_comments"
bl_label = "Select"
@classmethod
def poll(cls, context):
if context.area.spaces[0].type!="TEXT_EDITOR":
return False
else:
return context.area.spaces[0].text!=None
def draw(self, context):
layout = self.layout
space = context.area.spaces[0]
items = getfunc(space, 1, "### ", "")
for it in items:
layout.operator("text.jumptoline",text=it[0]).line = it[1]
class DefsMenu(bpy.types.Menu):
bl_idname = "OBJECT_MT_select_defs"
bl_label = "Select"
tipo = bpy.props.BoolProperty(default=False)
@classmethod
def poll(cls, context):
if context.area.spaces[0].type!="TEXT_EDITOR":
return False
else:
return context.area.spaces[0].text!=None
def draw(self, context):
scn = context.scene
layout = self.layout
space = context.area.spaces[0]
tipo = self.tipo
items = getfunc(space, 1, "def ", "(")
for it in items:
layout.operator("text.jumptoline",text=it[0]).line = it[1]
class ClassesMenu(bpy.types.Menu):
bl_idname = "OBJECT_MT_select_classes"
bl_label = "Select"
@classmethod
def poll(cls, context):
if context.area.spaces[0].type!="TEXT_EDITOR":
return False
else:
return context.area.spaces[0].text!=None
def draw(self, context):
layout = self.layout
space = context.area.spaces[0]
items = getfunc(space, 1, "class ", "(")
for it in items:
layout.operator("text.jumptoline",text=it[0]).line = it[1]
def GotoComments(self, context):
self.layout.menu("OBJECT_MT_select_comments", text="Comments", icon='PLUGIN')
return False
def GotoDefs(self, context):
self.layout.menu("OBJECT_MT_select_defs", text="Defs", icon='PLUGIN')
return False
def GotoClasses(self, context):
self.layout.menu("OBJECT_MT_select_classes", text="Classes", icon='PLUGIN')
return False
classes = [TEXT_OT_Jumptoline, ClassesMenu, DefsMenu, CommentsMenu]
def register():
for c in classes:
bpy.utils.register_class(c)
bpy.types.TEXT_MT_toolbox.append(GotoComments)
bpy.types.TEXT_MT_toolbox.append(GotoDefs)
bpy.types.TEXT_MT_toolbox.append(GotoClasses)
def unregister():
for c in classes:
bpy.utils.unregister_class(c)
bpy.types.TEXT_MT_toolbox.remove(GotoComments)
bpy.types.TEXT_MT_toolbox.remove(GotoDefs)
bpy.types.TEXT_MT_toolbox.remove(GotoClasses)
if __name__ == "__main__":
register()