forked from bonzini/gst-visualgst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.st
268 lines (268 loc) · 11.5 KB
/
package.st
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
Eval [
PackageBuilder new
name: 'VisualGST';
namespace: 'VisualGST';
prereq: 'Parser';
prereq: 'GTK';
prereq: 'Cairo';
prereq: 'SUnit';
prereq: 'DebugTools';
prereq: 'Announcements';
provides: 'Browser';
testsBelow: 'Tests' matching: '*.st';
filein: 'Notification/AbstractEvent.st';
filein: 'Notification/AddedEvent.st';
filein: 'Notification/CommentedEvent.st';
filein: 'Notification/DoItEvent.st';
filein: 'Notification/SystemEventManager.st';
filein: 'Notification/EventMultiplexer.st';
filein: 'Notification/EventDispatcher.st';
filein: 'Notification/ModifiedEvent.st';
filein: 'Notification/ModifiedClassDefinitionEvent.st';
filein: 'Notification/RecategorizedEvent.st';
filein: 'Notification/RemovedEvent.st';
filein: 'Notification/RenamedEvent.st';
filein: 'Notification/ReorganizedEvent.st';
filein: 'Notification/SystemChangeNotifier.st';
filein: 'GtkAnnouncer.st';
filein: 'GtkNamespaceSelectionChanged.st';
filein: 'GtkClassSelectionChanged.st';
filein: 'Commands/Command.st';
filein: 'Commands/SmalltalkMenus/DoItCommand.st';
filein: 'Commands/SmalltalkMenus/DebugItCommand.st';
filein: 'Commands/SmalltalkMenus/PrintItCommand.st';
filein: 'Commands/SmalltalkMenus/InspectItCommand.st';
filein: 'Commands/SmalltalkMenus/AcceptItCommand.st';
filein: 'Commands/SmalltalkMenus/CancelCommand.st';
filein: 'Commands/HistoryCommands/HistoryBackCommand.st';
filein: 'Commands/HistoryCommands/HistoryDisplayCommand.st';
filein: 'Commands/HistoryCommands/HistoryForwardCommand.st';
filein: 'Commands/TabsMenus/CloseTabCommand.st';
filein: 'Commands/TabsMenus/NextTabCommand.st';
filein: 'Commands/TabsMenus/PreviousTabCommand.st';
filein: 'Commands/NamespaceMenus/NamespaceCommand.st';
filein: 'Commands/NamespaceMenus/InspectNamespaceCommand.st';
filein: 'Commands/NamespaceMenus/FileoutNamespaceCommand.st';
filein: 'Commands/NamespaceMenus/AddNamespaceCommand.st';
filein: 'Commands/NamespaceMenus/DeleteNamespaceCommand.st';
filein: 'Commands/NamespaceMenus/RenameNamespaceCommand.st';
filein: 'Commands/ClassMenus/ClassCommand.st';
filein: 'Commands/ClassMenus/InspectClassCommand.st';
filein: 'Commands/ClassMenus/FileoutClassCommand.st';
filein: 'Commands/ClassMenus/AddClassCommand.st';
filein: 'Commands/ClassMenus/DeleteClassCommand.st';
filein: 'Commands/ClassMenus/RenameClassCommand.st';
filein: 'Commands/CategoryMenus/CategoryCommand.st';
filein: 'Commands/CategoryMenus/FileoutCategoryCommand.st';
filein: 'Commands/CategoryMenus/AddCategoryCommand.st';
filein: 'Commands/CategoryMenus/RenameCategoryCommand.st';
filein: 'Commands/MethodMenus/MethodCommand.st';
filein: 'Commands/MethodMenus/FileoutMethodCommand.st';
filein: 'Commands/MethodMenus/InspectMethodCommand.st';
filein: 'Commands/MethodMenus/DeleteMethodCommand.st';
filein: 'Commands/MethodMenus/DebugTestCommand.st';
filein: 'Commands/ToolsMenus/OpenAssistantCommand.st';
filein: 'Commands/ToolsMenus/OpenWebBrowserCommand.st';
filein: 'Commands/EditMenus/CancelEditCommand.st';
filein: 'Commands/EditMenus/UndoEditCommand.st';
filein: 'Commands/EditMenus/RedoEditCommand.st';
filein: 'Commands/EditMenus/CutEditCommand.st';
filein: 'Commands/EditMenus/CopyEditCommand.st';
filein: 'Commands/EditMenus/PasteEditCommand.st';
filein: 'Commands/EditMenus/SelectAllEditCommand.st';
filein: 'Commands/EditMenus/FindEditCommand.st';
filein: 'Commands/EditMenus/ReplaceEditCommand.st';
filein: 'Commands/DebugMenus/DebugCommand.st';
filein: 'Commands/DebugMenus/ContinueDebugCommand.st';
filein: 'Commands/DebugMenus/StepIntoDebugCommand.st';
filein: 'Commands/DebugMenus/StepToDebugCommand.st';
filein: 'Menus/MenuBuilder.st';
filein: 'Menus/MenuSeparator.st';
filein: 'Menus/ToolbarSeparator.st';
filein: 'Menus/LauncherToolbar.st';
filein: 'Menus/DebuggerToolbar.st';
filein: 'Menus/NamespaceMenus.st';
filein: 'Menus/ClassMenus.st';
filein: 'Menus/CategoryMenus.st';
filein: 'Menus/ContextMenus.st';
filein: 'Menus/MethodMenus.st';
filein: 'Menus/EditMenus.st';
filein: 'Menus/SmalltalkMenus.st';
filein: 'Menus/ToolsMenus.st';
filein: 'Menus/HistoryMenus.st';
filein: 'Menus/TabsMenus.st';
filein: 'Menus/InspectorMenus.st';
filein: 'Menus/TextMenus.st';
filein: 'Menus/WorkspaceVariableMenus.st';
filein: 'Menus/SimpleWorkspaceMenus.st';
filein: 'Menus/WorkspaceMenus.st';
filein: 'FakeNamespace.st';
filein: 'Category/ClassCategory.st';
filein: 'Category/AbstractNamespace.st';
filein: 'Category/Class.st';
filein: 'GtkAbstractConcreteWidget.st';
filein: 'GtkConcreteWidget.st';
filein: 'GtkScrollTreeWidget.st';
filein: 'GtkSimpleListWidget.st';
filein: 'GtkEntryWidget.st';
filein: 'GtkSidebarWidget.st';
filein: 'GtkHSidebarWidget.st';
filein: 'GtkVSidebarWidget.st';
filein: 'Model/GtkColumnType.st';
filein: 'Model/GtkColumnTextType.st';
filein: 'Model/GtkColumnPixbufType.st';
filein: 'Model/GtkColumnOOPType.st';
filein: 'GtkListModel.st';
filein: 'GtkTreeModel.st';
filein: 'Text/GtkTextWidget.st';
filein: 'GtkPackageBuilderWidget.st';
filein: 'GtkMainWindow.st';
filein: 'GtkVisualGSTTool.st';
filein: 'GtkBrowsingTool.st';
filein: 'GtkLauncher.st';
filein: 'Text/GtkTextPluginWidget.st';
filein: 'Text/GtkFindWidget.st';
filein: 'Text/GtkReplaceWidget.st';
filein: 'Text/GtkSaveTextWidget.st';
filein: 'GtkNotebookWidget.st';
filein: 'Image/GtkImageModel.st';
filein: 'Image/GtkImageWidget.st';
filein: 'Debugger/GtkContextWidget.st';
filein: 'Debugger/GtkDebugger.st';
filein: 'State/BrowserState.st';
filein: 'State/NamespaceState.st';
filein: 'State/ClassState.st';
filein: 'State/CategoryState.st';
filein: 'State/MethodState.st';
filein: 'GtkWorkspaceWidget.st';
filein: 'GtkTranscriptWidget.st';
filein: 'StBrowser/GtkCategorizedNamespaceWidget.st';
filein: 'StBrowser/GtkCategorizedClassWidget.st';
filein: 'StBrowser/GtkCategoryWidget.st';
filein: 'StBrowser/GtkMethodWidget.st';
filein: 'Text/GtkSourceCodeWidget.st';
filein: 'StBrowser/GtkClassHierarchyWidget.st';
filein: 'GtkHistoryWidget.st';
filein: 'Inspector/GtkInspector.st';
filein: 'StBrowser/GtkClassBrowserWidget.st';
filein: 'GtkEntryDialog.st';
filein: 'HistoryStack.st';
filein: 'Undo/UndoStack.st';
filein: 'Undo/UndoCommand.st';
filein: 'Undo/AddNamespaceUndoCommand.st';
filein: 'Undo/RenameNamespaceUndoCommand.st';
filein: 'Undo/DeleteNamespaceUndoCommand.st';
filein: 'Source/SourceFormatter.st';
filein: 'Source/NamespaceHeaderSource.st';
filein: 'Source/NamespaceSource.st';
filein: 'Source/ClassHeaderSource.st';
filein: 'Source/ClassSource.st';
filein: 'Source/CategorySource.st';
filein: 'Source/MethodSource.st';
filein: 'Source/PackageSource.st';
filein: 'Source/BrowserMethodSource.st';
filein: 'Undo/AddClassUndoCommand.st';
filein: 'Undo/RenameClassUndoCommand.st';
filein: 'Undo/DeleteClassUndoCommand.st';
filein: 'AbstractFinder.st';
filein: 'NamespaceFinder.st';
filein: 'ClassFinder.st';
filein: 'MethodFinder.st';
filein: 'GtkWebBrowser.st';
filein: 'GtkWebView.st';
filein: 'Extensions.st';
filein: 'GtkAssistant.st';
filein: 'Undo/RenameCategoryUndoCommand.st';
filein: 'Undo/AddMethodUndoCommand.st';
filein: 'Undo/DeleteMethodUndoCommand.st';
filein: 'WorkspaceVariableTracker.st';
filein: 'GtkVariableTrackerWidget.st';
filein: 'SyntaxHighlighter.st';
filein: 'Undo/Text/InsertTextCommand.st';
filein: 'Undo/Text/DeleteTextCommand.st';
filein: 'Undo/Text/ReplaceTextCommand.st';
filein: 'Clock/GtkClock.st';
filein: 'Inspector/GtkInspectorSourceWidget.st';
filein: 'Inspector/GtkInspectorBrowserWidget.st';
filein: 'Inspector/GtkInspectorWidget.st';
filein: 'Inspector/GtkObjectInspectorView.st';
filein: 'Inspector/GtkCompiledMethodInspectorView.st';
filein: 'Inspector/GtkCompiledBlockInspectorView.st';
filein: 'Inspector/GtkSequenceableCollectionInspectorView.st';
filein: 'Inspector/GtkSetInspectorView.st';
filein: 'Inspector/GtkDictionaryInspectorView.st';
filein: 'Inspector/GtkCharacterInspectorView.st';
filein: 'Inspector/GtkIntegerInspectorView.st';
filein: 'Inspector/GtkFloatInspectorView.st';
filein: 'Implementors/GtkImageResultsWidget.st';
filein: 'Implementors/GtkImplementorResultsWidget.st';
filein: 'Implementors/GtkSenderResultsWidget.st';
filein: 'Notification/Kernel/AbstractNamespace.st';
filein: 'Notification/Kernel/Metaclass.st';
filein: 'Notification/Kernel/Class.st';
filein: 'Notification/Kernel/MethodDictionary.st';
filein: 'Debugger/GtkStackInspectorView.st';
filein: 'Debugger/GtkStackInspector.st';
filein: 'Tetris/HighScores.st';
filein: 'Tetris/Score.st';
filein: 'Tetris/TetrisPieceWidget.st';
filein: 'Tetris/BlockWidget.st';
filein: 'Tetris/TetrisField.st';
filein: 'Tetris/TetrisPiece.st';
filein: 'Tetris/TetrisPieceI.st';
filein: 'Tetris/TetrisPieceJ.st';
filein: 'Tetris/TetrisPieceL.st';
filein: 'Tetris/TetrisPieceO.st';
filein: 'Tetris/TetrisPieceS.st';
filein: 'Tetris/TetrisPieceT.st';
filein: 'Tetris/TetrisPieceZ.st';
filein: 'Tetris/Tetris.st';
filein: 'SUnit/TestBacktraceLog.st';
filein: 'SUnit/GtkSUnitResultWidget.st';
filein: 'GtkClassSUnitWidget.st';
filein: 'GtkMethodSUnitWidget.st';
filein: 'SUnit/GtkSUnit.st';
filein: 'Commands/OpenBrowserCommand.st';
filein: 'Commands/OpenTabbedBrowserCommand.st';
filein: 'Commands/GoToCommand.st';
filein: 'Commands/ToolsMenus/OpenSUnitCommand.st';
filein: 'Commands/ToolsMenus/OpenBottomPaneCommand.st';
filein: 'Commands/OpenWorkspaceCommand.st';
filein: 'Commands/ToolsMenus/OpenImplementorCommand.st';
filein: 'Commands/ToolsMenus/OpenSenderCommand.st';
filein: 'Commands/ToolsMenus/OpenPackageBuilderCommand.st';
filein: 'Commands/SaveImageCommand.st';
filein: 'Commands/SaveImageAsCommand.st';
filein: 'Commands/InspectorMenus/InspectorBackCommand.st';
filein: 'Commands/InspectorMenus/InspectorDiveCommand.st';
filein: 'Commands/WorkspaceMenus/DeleteItemCommand.st';
filein: 'Commands/WorkspaceMenus/InspectItemCommand.st';
filein: 'Commands/WorkspaceMenus/WorkspaceVariableCommand.st';
ressource: 'Icons/category.gif';
ressource: 'Icons/namespace.gif';
ressource: 'Icons/go-bottom.png';
ressource: 'Icons/go-down.png';
ressource: 'Icons/go-first.png';
ressource: 'Icons/go-home.png';
ressource: 'Icons/go-jump.png';
ressource: 'Icons/go-last.png';
ressource: 'Icons/go-next.png';
ressource: 'Icons/go-previous.png';
ressource: 'Icons/go-run.png';
ressource: 'Icons/go-top.png';
ressource: 'Icons/go-up.png';
ressource: 'Icons/NUnit.Failed.png';
ressource: 'Icons/NUnit.Loading.png';
ressource: 'Icons/NUnit.None.png';
ressource: 'Icons/NUnit.NotRun.png';
ressource: 'Icons/NUnit.Running.png';
ressource: 'Icons/NUnit.SuccessAndFailed.png';
ressource: 'Icons/NUnit.Success.png';
ressource: 'Icons/extension.png';
ressource: 'Icons/overridden.png';
ressource: 'Icons/override.png';
ressource: 'Icons/visualgst.png';
start: 'VisualGST.GtkLauncher open.
GTK.Gtk main';
buildXml
]