help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Help-smalltalk] [PATCH 10/15] gtktools: Move GtkListModel from VisualGS


From: Holger Hans Peter Freyther
Subject: [Help-smalltalk] [PATCH 10/15] gtktools: Move GtkListModel from VisualGST to GTKTools
Date: Mon, 8 Apr 2013 11:30:26 +0200

From: Holger Hans Peter Freyther <address@hidden>

2013-03-30  Holger Hans Peter Freyther  <address@hidden>

        * GtkListModel.st: Renamed from packages/visualgst/GtkListModel.st.
        * package.xml: Add GtkListModel.

2013-03-30  Holger Hans Peter Freyther  <address@hidden>

        * Debugger/GtkContextWidget.st: Use GTKTools namespace.
        * GtkHistoryWidget.st: Use GTKTools namespace.
        * GtkSimpleListWidget.st: Use GTKTools namespace.
        * GtkVariableTrackerWidget.st: Use GTKTools namespace.
        * Image/GtkImageWidget.st: Use GTKTools namespace.
        * Implementors/GtkImageResultsWidget.st: Use GTKTools namespace.
        * Inspector/GtkInspectorWidget.st: Use GTKTools namespace.
        * StBrowser/GtkCategoryWidget.st: Use GTKTools namespace.
        * StBrowser/GtkMethodWidget.st: Use GTKTools namespace.
        * package.xml: Remove moved files.
        * GtkListModel.st: Renamed to packages/gtktools/GtkListModel.st.
---
 packages/gtktools/ChangeLog                        |    5 +
 packages/gtktools/GtkListModel.st                  |   97 +++++++++++++++++++
 packages/gtktools/Makefile.frag                    |    2 +-
 packages/gtktools/package.xml                      |    1 +
 packages/visualgst/ChangeLog                       |   14 +++
 packages/visualgst/Debugger/GtkContextWidget.st    |    2 +-
 packages/visualgst/GtkHistoryWidget.st             |    2 +-
 packages/visualgst/GtkListModel.st                 |   98 --------------------
 packages/visualgst/GtkSimpleListWidget.st          |    2 +-
 packages/visualgst/GtkVariableTrackerWidget.st     |    2 +-
 packages/visualgst/Image/GtkImageWidget.st         |    2 +-
 .../Implementors/GtkImageResultsWidget.st          |    2 +-
 packages/visualgst/Inspector/GtkInspectorWidget.st |    2 +-
 packages/visualgst/Makefile.frag                   |    2 +-
 packages/visualgst/StBrowser/GtkCategoryWidget.st  |    2 +-
 packages/visualgst/StBrowser/GtkMethodWidget.st    |    2 +-
 packages/visualgst/package.xml                     |    2 -
 17 files changed, 128 insertions(+), 111 deletions(-)
 create mode 100644 packages/gtktools/GtkListModel.st
 delete mode 100644 packages/visualgst/GtkListModel.st

diff --git a/packages/gtktools/ChangeLog b/packages/gtktools/ChangeLog
index 1299e7f..8cb59f2 100644
--- a/packages/gtktools/ChangeLog
+++ b/packages/gtktools/ChangeLog
@@ -1,5 +1,10 @@
 2013-03-30  Holger Hans Peter Freyther  <address@hidden>
 
+       * GtkListModel.st: Renamed from packages/visualgst/GtkListModel.st.
+       * package.xml: Add GtkListModel.
+
+2013-03-30  Holger Hans Peter Freyther  <address@hidden>
+
        * GtkAbstractConcreteWidget.st: Renamed from 
packages/visualgst/GtkAbstractConcreteWidget.st.
        * GtkConcreteWidget.st: Renamed from 
packages/visualgst/GtkConcreteWidget.st.
        * GtkEntryDialog.st: Renamed from packages/visualgst/GtkEntryDialog.st.
diff --git a/packages/gtktools/GtkListModel.st 
b/packages/gtktools/GtkListModel.st
new file mode 100644
index 0000000..ecc7fc4
--- /dev/null
+++ b/packages/gtktools/GtkListModel.st
@@ -0,0 +1,97 @@
+Object subclass: GtkListModel [
+
+    GtkListModel class >> on: aGtkListStore [
+       <category: 'instance creation'>
+
+       ^ super new
+           initialize;
+           gtkModel: aGtkListStore;
+           yourself
+    ]
+
+    | contentsBlock item model |
+
+    initialize [
+       <category: 'initialization'>
+
+    ]
+
+    gtkModel: aGtkListStore [
+       <category: 'accessing'>
+
+       model := aGtkListStore
+    ]
+
+    item: anObject [
+       <category: 'accessing'>
+
+       item := anObject
+    ]
+
+    item [
+       <category: 'accessing'>
+
+       ^ item
+    ]
+
+    contentsBlock: aBlock [
+       <category: 'accessing'>
+
+       contentsBlock := aBlock
+    ]
+
+    contentsBlock [
+       <category: 'accessing'>
+
+       ^ contentsBlock
+    ]
+
+    append: anItem [
+       <category: 'model'>
+
+       model appendItem: ((self contentsBlock value: anItem) copyWith: anItem)
+    ]
+
+    remove: anObject [
+       <category: 'model'>
+
+       | iter |
+       (iter := self findIter: anObject) ifNil: [ self error: 'item not found' 
].
+       model remove: iter
+    ]
+
+    clear [
+       <category: 'model'>
+
+       model clear
+    ]
+
+    refresh [
+       <category: 'model'>
+
+       self clear.
+       self item ifNil: [ ^ self ].
+       self item do: [ :each | self append: each ]
+    ]
+
+    hasItem: anObject [
+        <category: 'item selection'>
+
+        self findIter: anObject ifAbsent: [ ^ false ].
+        ^ true
+    ]
+
+    findIter: anObject ifAbsent: aBlock [
+       <category: 'item selection'>
+
+       model do: [ :elem :iter |
+           elem last = anObject ifTrue: [ ^ iter ] ].
+       aBlock value
+    ]
+
+    findIter: anObject [
+       <category: 'item selection'>
+
+       ^ self findIter: anObject ifAbsent: [ self error: 'Item not found' ]
+    ]
+]
diff --git a/packages/gtktools/Makefile.frag b/packages/gtktools/Makefile.frag
index e758dbc..85d55ca 100644
--- a/packages/gtktools/Makefile.frag
+++ b/packages/gtktools/Makefile.frag
@@ -1,5 +1,5 @@
 GTKTools_FILES = \
-packages/gtktools/GtkMainWindow.st 
packages/gtktools/GtkAbstractConcreteWidget.st 
packages/gtktools/GtkConcreteWidget.st packages/gtktools/GtkEntryDialog.st 
packages/gtktools/Tests/GtkConcreteWidgetTest.st
+packages/gtktools/GtkMainWindow.st 
packages/gtktools/GtkAbstractConcreteWidget.st 
packages/gtktools/GtkConcreteWidget.st packages/gtktools/GtkEntryDialog.st 
packages/gtktools/GtkListModel.st 
packages/gtktools/Tests/GtkConcreteWidgetTest.st
 $(GTKTools_FILES):
 $(srcdir)/packages/gtktools/stamp-classes: $(GTKTools_FILES)
        touch $(srcdir)/packages/gtktools/stamp-classes
diff --git a/packages/gtktools/package.xml b/packages/gtktools/package.xml
index 35c3414..eddaf13 100644
--- a/packages/gtktools/package.xml
+++ b/packages/gtktools/package.xml
@@ -7,6 +7,7 @@
   <filein>GtkAbstractConcreteWidget.st</filein>
   <filein>GtkConcreteWidget.st</filein>
   <filein>GtkEntryDialog.st</filein>
+  <filein>GtkListModel.st</filein>
 
   <test>
     <sunit>
diff --git a/packages/visualgst/ChangeLog b/packages/visualgst/ChangeLog
index a2d935f..5b6ab83 100644
--- a/packages/visualgst/ChangeLog
+++ b/packages/visualgst/ChangeLog
@@ -1,5 +1,19 @@
 2013-03-30  Holger Hans Peter Freyther  <address@hidden>
 
+       * Debugger/GtkContextWidget.st: Use GTKTools namespace.
+       * GtkHistoryWidget.st: Use GTKTools namespace.
+       * GtkSimpleListWidget.st: Use GTKTools namespace.
+       * GtkVariableTrackerWidget.st: Use GTKTools namespace.
+       * Image/GtkImageWidget.st: Use GTKTools namespace.
+       * Implementors/GtkImageResultsWidget.st: Use GTKTools namespace.
+       * Inspector/GtkInspectorWidget.st: Use GTKTools namespace.
+       * StBrowser/GtkCategoryWidget.st: Use GTKTools namespace.
+       * StBrowser/GtkMethodWidget.st: Use GTKTools namespace.
+       * package.xml: Remove moved files.
+       * GtkListModel.st: Renamed to packages/gtktools/GtkListModel.st.
+
+2013-03-30  Holger Hans Peter Freyther  <address@hidden>
+
        * Commands/CategoryMenus/AddCategoryCommand.st: Use GTKTools namespace.
        * Commands/CategoryMenus/RenameCategoryCommand.st: Use GTKTools 
namespace.
        * Commands/ClassMenus/AddClassCommand.st: Use GTKTools namespace.
diff --git a/packages/visualgst/Debugger/GtkContextWidget.st 
b/packages/visualgst/Debugger/GtkContextWidget.st
index 86bd2d9..4af9bb6 100644
--- a/packages/visualgst/Debugger/GtkContextWidget.st
+++ b/packages/visualgst/Debugger/GtkContextWidget.st
@@ -43,7 +43,7 @@ GTKTools.GtkConcreteWidget subclass: GtkContextWidget [
         contextTree := GtkScrollTreeWidget createListWithModel: 
{{GtkColumnTextType title: 'Contexts'}}.
         contextTree connectToWhenPopupMenu: (ContextMenus on: self).
         contextTree treeView getSelection setMode: GTK.Gtk gtkSelectionBrowse.
-        (model := GtkListModel on: contextTree treeView getModel)
+        (model := GTKTools.GtkListModel on: contextTree treeView getModel)
                                         contentsBlock: [ :each | {each 
printString} ].
         ^ contextTree mainWidget
     ]
diff --git a/packages/visualgst/GtkHistoryWidget.st 
b/packages/visualgst/GtkHistoryWidget.st
index 571548b..f0736ae 100644
--- a/packages/visualgst/GtkHistoryWidget.st
+++ b/packages/visualgst/GtkHistoryWidget.st
@@ -29,7 +29,7 @@ GTKTools.GtkConcreteWidget subclass: GtkHistoryWidget [
                             yourself.
         widget getSelection setMode: GTK.Gtk gtkSelectionBrowse.
         widget getSelection connectSignal: 'changed' to: self selector: 
#onSelectionChanged.
-        (model := GtkListModel on: widget getModel)
+        (model := GTKTools.GtkListModel on: widget getModel)
                                         contentsBlock: [ :each | {each name 
displayString} ].
         ^ GTK.GtkScrolledWindow withChild: widget
     ]
diff --git a/packages/visualgst/GtkListModel.st 
b/packages/visualgst/GtkListModel.st
deleted file mode 100644
index 32ac085..0000000
--- a/packages/visualgst/GtkListModel.st
+++ /dev/null
@@ -1,98 +0,0 @@
-Object subclass: GtkListModel [
-
-    GtkListModel class >> on: aGtkListStore [
-       <category: 'instance creation'>
-
-       ^ super new
-           initialize;
-           gtkModel: aGtkListStore;
-           yourself
-    ]
-
-    | contentsBlock item model |
-
-    initialize [
-       <category: 'initialization'>
-
-    ]
-
-    gtkModel: aGtkListStore [
-       <category: 'accessing'>
-
-       model := aGtkListStore
-    ]
-
-    item: anObject [
-       <category: 'accessing'>
-
-       item := anObject
-    ]
-
-    item [
-       <category: 'accessing'>
-
-       ^ item
-    ]
-
-    contentsBlock: aBlock [
-       <category: 'accessing'>
-
-       contentsBlock := aBlock
-    ]
-
-    contentsBlock [
-       <category: 'accessing'>
-
-       ^ contentsBlock
-    ]
-
-    append: anItem [
-       <category: 'model'>
-
-       model appendItem: ((self contentsBlock value: anItem) copyWith: anItem)
-    ]
-
-    remove: anObject [
-       <category: 'model'>
-
-       | iter |
-       (iter := self findIter: anObject) ifNil: [ self error: 'item not found' 
].
-       model remove: iter
-    ]
-
-    clear [
-       <category: 'model'>
-
-       model clear
-    ]
-
-    refresh [
-       <category: 'model'>
-
-       self clear.
-       self item ifNil: [ ^ self ].
-       self item do: [ :each | self append: each ]
-    ]
-
-    hasItem: anObject [
-        <category: 'item selection'>
-
-        self findIter: anObject ifAbsent: [ ^ false ].
-        ^ true
-    ]
-
-    findIter: anObject ifAbsent: aBlock [
-       <category: 'item selection'>
-
-       model do: [ :elem :iter |
-           elem last = anObject ifTrue: [ ^ iter ] ].
-       aBlock value
-    ]
-
-    findIter: anObject [
-       <category: 'item selection'>
-
-       ^ self findIter: anObject ifAbsent: [ self error: 'Item not found' ]
-    ]
-]
-
diff --git a/packages/visualgst/GtkSimpleListWidget.st 
b/packages/visualgst/GtkSimpleListWidget.st
index 6c1f9b9..fba980e 100644
--- a/packages/visualgst/GtkSimpleListWidget.st
+++ b/packages/visualgst/GtkSimpleListWidget.st
@@ -10,7 +10,7 @@ GtkScrollTreeWidget subclass: GtkSimpleListWidget [
         <category: 'user interface'>
 
         self treeView getSelection setMode: GTK.Gtk gtkSelectionBrowse.
-        (GtkListModel on: self treeView getModel)
+        (GTKTools.GtkListModel on: self treeView getModel)
                                         contentsBlock: [ :each | {each 
displayString} ]
     ]
 ]
diff --git a/packages/visualgst/GtkVariableTrackerWidget.st 
b/packages/visualgst/GtkVariableTrackerWidget.st
index 041162a..86d0446 100644
--- a/packages/visualgst/GtkVariableTrackerWidget.st
+++ b/packages/visualgst/GtkVariableTrackerWidget.st
@@ -29,7 +29,7 @@ GTKTools.GtkConcreteWidget subclass: GtkVariableTrackerWidget 
[
         widget := GtkScrollTreeWidget createListWithModel: {{GtkColumnTextType 
title: 'Variable'}. {GtkColumnTextType title: 'Value'}}.
         widget connectToWhenPopupMenu: (WorkspaceVariableMenus on: self).
         widget treeView getSelection setMode: GTK.Gtk gtkSelectionBrowse.
-        (model := GtkListModel on: widget treeView getModel)
+        (model := GTKTools.GtkListModel on: widget treeView getModel)
                                         contentsBlock: [ :each | {each 
asString. (object instVarNamed: each) displayString} ].
         ^ widget mainWidget
     ]
diff --git a/packages/visualgst/Image/GtkImageWidget.st 
b/packages/visualgst/Image/GtkImageWidget.st
index 6b5dc78..95e06dd 100644
--- a/packages/visualgst/Image/GtkImageWidget.st
+++ b/packages/visualgst/Image/GtkImageWidget.st
@@ -35,7 +35,7 @@ GTKTools.GtkConcreteWidget subclass: GtkImageWidget [
 
         imageTree := (GTK.GtkTreeView createListWithModel: {{GtkColumnTextType 
title: 'Methods and Classes'}}).
         imageTree setSearchEntry: searchEntry.
-        [ (model := GtkListModel on: imageTree getModel)
+        [ (model := GTKTools.GtkListModel on: imageTree getModel)
                                        item: (image := GtkImage new);
                                         contentsBlock: [ :each | {each 
displayString} ];
                                        refresh ] fork.
diff --git a/packages/visualgst/Implementors/GtkImageResultsWidget.st 
b/packages/visualgst/Implementors/GtkImageResultsWidget.st
index 0901c53..457c31c 100644
--- a/packages/visualgst/Implementors/GtkImageResultsWidget.st
+++ b/packages/visualgst/Implementors/GtkImageResultsWidget.st
@@ -12,7 +12,7 @@ GTKTools.GtkConcreteWidget subclass: GtkImageResultsWidget [
 
         resultTree := GTK.GtkTreeView createListWithModel: {{GtkColumnTextType 
title: 'Methods and Classes'}}.
         resultTree getSelection setMode: GTK.Gtk gtkSelectionBrowse.
-        (model := GtkListModel on: resultTree getModel)
+        (model := GTKTools.GtkListModel on: resultTree getModel)
                                         contentsBlock: [ :each | {each 
asString} ].
         ^ GTK.GtkScrolledWindow withChild: resultTree
     ]
diff --git a/packages/visualgst/Inspector/GtkInspectorWidget.st 
b/packages/visualgst/Inspector/GtkInspectorWidget.st
index 83a2364..833504b 100644
--- a/packages/visualgst/Inspector/GtkInspectorWidget.st
+++ b/packages/visualgst/Inspector/GtkInspectorWidget.st
@@ -53,7 +53,7 @@ GTKTools.GtkConcreteWidget subclass: GtkInspectorWidget [
 
         inspectorTree := GtkScrollTreeWidget createListWithModel: 
{{GtkColumnTextType title: 'Variables'}}.
         inspectorTree connectToWhenPopupMenu: (InspectorMenus on: self).
-        (model := GtkListModel on: inspectorTree treeView getModel)
+        (model := GTKTools.GtkListModel on: inspectorTree treeView getModel)
                                         contentsBlock: [ :each | {each 
displayString} ].
         ^ inspectorTree mainWidget
     ]
diff --git a/packages/visualgst/Makefile.frag b/packages/visualgst/Makefile.frag
index a6487e6..b26d26e 100644
--- a/packages/visualgst/Makefile.frag
+++ b/packages/visualgst/Makefile.frag
@@ -1,5 +1,5 @@
 VisualGST_FILES = \
-packages/visualgst/Notification/AbstractEvent.st 
packages/visualgst/Notification/AddedEvent.st 
packages/visualgst/Notification/CommentedEvent.st 
packages/visualgst/Notification/DoItEvent.st 
packages/visualgst/Notification/SystemEventManager.st 
packages/visualgst/Notification/EventMultiplexer.st 
packages/visualgst/Notification/EventDispatcher.st 
packages/visualgst/Notification/ModifiedEvent.st 
packages/visualgst/Notification/ModifiedClassDefinitionEvent.st 
packages/visualgst/Notification/RecategorizedEvent.st 
packages/visualgst/Notification/RemovedEvent.st 
packages/visualgst/Notification/RenamedEvent.st 
packages/visualgst/Notification/ReorganizedEvent.st 
packages/visualgst/Notification/SystemChangeNotifier.st 
packages/visualgst/GtkAnnouncer.st 
packages/visualgst/GtkNamespaceSelectionChanged.st 
packages/visualgst/GtkClassSelectionChanged.st 
packages/visualgst/Commands/Command.st 
packages/visualgst/Commands/SmalltalkMenus/DoItCommand.st 
packages/visualgst/Commands/SmalltalkMenus/DebugI
 tCommand.st packages/visualgst/Commands/SmalltalkMenus/PrintItCommand.st 
packages/visualgst/Commands/SmalltalkMenus/InspectItCommand.st 
packages/visualgst/Commands/SmalltalkMenus/AcceptItCommand.st 
packages/visualgst/Commands/SmalltalkMenus/CancelCommand.st 
packages/visualgst/Commands/HistoryCommands/HistoryBackCommand.st 
packages/visualgst/Commands/HistoryCommands/HistoryDisplayCommand.st 
packages/visualgst/Commands/HistoryCommands/HistoryForwardCommand.st 
packages/visualgst/Commands/TabsMenus/CloseTabCommand.st 
packages/visualgst/Commands/TabsMenus/NextTabCommand.st 
packages/visualgst/Commands/TabsMenus/PreviousTabCommand.st 
packages/visualgst/Commands/NamespaceMenus/NamespaceCommand.st 
packages/visualgst/Commands/NamespaceMenus/InspectNamespaceCommand.st 
packages/visualgst/Commands/NamespaceMenus/FileoutNamespaceCommand.st 
packages/visualgst/Commands/NamespaceMenus/AddNamespaceCommand.st 
packages/visualgst/Commands/NamespaceMenus/DeleteNamespaceCommand.st 
packages/visualgst/Comma
 nds/NamespaceMenus/RenameNamespaceCommand.st 
packages/visualgst/Commands/ClassMenus/ClassCommand.st 
packages/visualgst/Commands/ClassMenus/InspectClassCommand.st 
packages/visualgst/Commands/ClassMenus/FileoutClassCommand.st 
packages/visualgst/Commands/ClassMenus/AddClassCommand.st 
packages/visualgst/Commands/ClassMenus/DeleteClassCommand.st 
packages/visualgst/Commands/ClassMenus/RenameClassCommand.st 
packages/visualgst/Commands/CategoryMenus/CategoryCommand.st 
packages/visualgst/Commands/CategoryMenus/FileoutCategoryCommand.st 
packages/visualgst/Commands/CategoryMenus/AddCategoryCommand.st 
packages/visualgst/Commands/CategoryMenus/RenameCategoryCommand.st 
packages/visualgst/Commands/MethodMenus/MethodCommand.st 
packages/visualgst/Commands/MethodMenus/FileoutMethodCommand.st 
packages/visualgst/Commands/MethodMenus/InspectMethodCommand.st 
packages/visualgst/Commands/MethodMenus/DeleteMethodCommand.st 
packages/visualgst/Commands/MethodMenus/DebugTestCommand.st 
packages/visualgst/Comman
 ds/ToolsMenus/OpenAssistantCommand.st 
packages/visualgst/Commands/ToolsMenus/OpenWebBrowserCommand.st 
packages/visualgst/Commands/EditMenus/CancelEditCommand.st 
packages/visualgst/Commands/EditMenus/UndoEditCommand.st 
packages/visualgst/Commands/EditMenus/RedoEditCommand.st 
packages/visualgst/Commands/EditMenus/CutEditCommand.st 
packages/visualgst/Commands/EditMenus/CopyEditCommand.st 
packages/visualgst/Commands/EditMenus/PasteEditCommand.st 
packages/visualgst/Commands/EditMenus/SelectAllEditCommand.st 
packages/visualgst/Commands/EditMenus/FindEditCommand.st 
packages/visualgst/Commands/EditMenus/ReplaceEditCommand.st 
packages/visualgst/Commands/DebugMenus/DebugCommand.st 
packages/visualgst/Commands/DebugMenus/ContinueDebugCommand.st 
packages/visualgst/Commands/DebugMenus/StepIntoDebugCommand.st 
packages/visualgst/Commands/DebugMenus/StepToDebugCommand.st 
packages/visualgst/Menus/MenuBuilder.st 
packages/visualgst/Menus/MenuSeparator.st 
packages/visualgst/Menus/ToolbarSeparator.st pac
 kages/visualgst/Menus/LauncherToolbar.st 
packages/visualgst/Menus/DebuggerToolbar.st 
packages/visualgst/Menus/NamespaceMenus.st 
packages/visualgst/Menus/ClassMenus.st 
packages/visualgst/Menus/CategoryMenus.st 
packages/visualgst/Menus/ContextMenus.st 
packages/visualgst/Menus/MethodMenus.st packages/visualgst/Menus/EditMenus.st 
packages/visualgst/Menus/SmalltalkMenus.st 
packages/visualgst/Menus/ToolsMenus.st packages/visualgst/Menus/HistoryMenus.st 
packages/visualgst/Menus/TabsMenus.st 
packages/visualgst/Menus/InspectorMenus.st 
packages/visualgst/Menus/TextMenus.st 
packages/visualgst/Menus/WorkspaceVariableMenus.st 
packages/visualgst/Menus/SimpleWorkspaceMenus.st 
packages/visualgst/Menus/WorkspaceMenus.st packages/visualgst/FakeNamespace.st 
packages/visualgst/Category/ClassCategory.st 
packages/visualgst/Category/AbstractNamespace.st 
packages/visualgst/Category/Class.st packages/visualgst/GtkScrollTreeWidget.st 
packages/visualgst/GtkSimpleListWidget.st packages/visualgst/GtkEntryWidget
 .st packages/visualgst/GtkSidebarWidget.st 
packages/visualgst/GtkHSidebarWidget.st packages/visualgst/GtkVSidebarWidget.st 
packages/visualgst/Model/GtkColumnType.st 
packages/visualgst/Model/GtkColumnTextType.st 
packages/visualgst/Model/GtkColumnPixbufType.st 
packages/visualgst/Model/GtkColumnOOPType.st packages/visualgst/GtkListModel.st 
packages/visualgst/GtkTreeModel.st packages/visualgst/Text/GtkTextWidget.st 
packages/visualgst/GtkPackageBuilderWidget.st 
packages/visualgst/GtkVisualGSTTool.st packages/visualgst/GtkBrowsingTool.st 
packages/visualgst/GtkLauncher.st 
packages/visualgst/Text/GtkTextPluginWidget.st 
packages/visualgst/Text/GtkFindWidget.st 
packages/visualgst/Text/GtkReplaceWidget.st 
packages/visualgst/Text/GtkSaveTextWidget.st 
packages/visualgst/GtkNotebookWidget.st 
packages/visualgst/Image/GtkImageModel.st 
packages/visualgst/Image/GtkImageWidget.st 
packages/visualgst/Debugger/GtkContextWidget.st 
packages/visualgst/Debugger/GtkDebugger.st packages/visualgst/State/Browser
 State.st packages/visualgst/State/NamespaceState.st 
packages/visualgst/State/ClassState.st 
packages/visualgst/State/CategoryState.st 
packages/visualgst/State/MethodState.st 
packages/visualgst/GtkWorkspaceWidget.st 
packages/visualgst/GtkTranscriptWidget.st 
packages/visualgst/StBrowser/GtkCategorizedNamespaceWidget.st 
packages/visualgst/StBrowser/GtkCategorizedClassWidget.st 
packages/visualgst/StBrowser/GtkCategoryWidget.st 
packages/visualgst/StBrowser/GtkMethodWidget.st 
packages/visualgst/Text/GtkSourceCodeWidget.st 
packages/visualgst/StBrowser/GtkClassHierarchyWidget.st 
packages/visualgst/GtkHistoryWidget.st 
packages/visualgst/Inspector/GtkInspector.st 
packages/visualgst/StBrowser/GtkClassBrowserWidget.st 
packages/visualgst/HistoryStack.st packages/visualgst/Undo/UndoStack.st 
packages/visualgst/Undo/UndoCommand.st 
packages/visualgst/Undo/AddNamespaceUndoCommand.st 
packages/visualgst/Undo/RenameNamespaceUndoCommand.st 
packages/visualgst/Undo/DeleteNamespaceUndoCommand.st packages/vis
 ualgst/Source/SourceFormatter.st 
packages/visualgst/Source/NamespaceHeaderSource.st 
packages/visualgst/Source/NamespaceSource.st 
packages/visualgst/Source/ClassHeaderSource.st 
packages/visualgst/Source/ClassSource.st 
packages/visualgst/Source/CategorySource.st 
packages/visualgst/Source/MethodSource.st 
packages/visualgst/Source/PackageSource.st 
packages/visualgst/Source/BrowserMethodSource.st 
packages/visualgst/Undo/AddClassUndoCommand.st 
packages/visualgst/Undo/RenameClassUndoCommand.st 
packages/visualgst/Undo/DeleteClassUndoCommand.st 
packages/visualgst/AbstractFinder.st packages/visualgst/NamespaceFinder.st 
packages/visualgst/ClassFinder.st packages/visualgst/MethodFinder.st 
packages/visualgst/GtkWebBrowser.st packages/visualgst/GtkWebView.st 
packages/visualgst/Extensions.st packages/visualgst/GtkAssistant.st 
packages/visualgst/Undo/RenameCategoryUndoCommand.st 
packages/visualgst/Undo/AddMethodUndoCommand.st 
packages/visualgst/Undo/DeleteMethodUndoCommand.st packages/visualgst/Wor
 kspaceVariableTracker.st packages/visualgst/GtkVariableTrackerWidget.st 
packages/visualgst/SyntaxHighlighter.st 
packages/visualgst/Undo/Text/InsertTextCommand.st 
packages/visualgst/Undo/Text/DeleteTextCommand.st 
packages/visualgst/Undo/Text/ReplaceTextCommand.st 
packages/visualgst/Clock/GtkClock.st 
packages/visualgst/Inspector/GtkInspectorSourceWidget.st 
packages/visualgst/Inspector/GtkInspectorBrowserWidget.st 
packages/visualgst/Inspector/GtkInspectorWidget.st 
packages/visualgst/Inspector/GtkObjectInspectorView.st 
packages/visualgst/Inspector/GtkCompiledMethodInspectorView.st 
packages/visualgst/Inspector/GtkCompiledBlockInspectorView.st 
packages/visualgst/Inspector/GtkSequenceableCollectionInspectorView.st 
packages/visualgst/Inspector/GtkSetInspectorView.st 
packages/visualgst/Inspector/GtkDictionaryInspectorView.st 
packages/visualgst/Inspector/GtkCharacterInspectorView.st 
packages/visualgst/Inspector/GtkIntegerInspectorView.st 
packages/visualgst/Inspector/GtkFloatInspectorView.st p
 ackages/visualgst/Implementors/GtkImageResultsWidget.st 
packages/visualgst/Implementors/GtkImplementorResultsWidget.st 
packages/visualgst/Implementors/GtkSenderResultsWidget.st 
packages/visualgst/Notification/Kernel/AbstractNamespace.st 
packages/visualgst/Notification/Kernel/Metaclass.st 
packages/visualgst/Notification/Kernel/Class.st 
packages/visualgst/Notification/Kernel/MethodDictionary.st 
packages/visualgst/Debugger/GtkStackInspectorView.st 
packages/visualgst/Debugger/GtkStackInspector.st 
packages/visualgst/Tetris/HighScores.st packages/visualgst/Tetris/Score.st 
packages/visualgst/Tetris/TetrisPieceWidget.st 
packages/visualgst/Tetris/BlockWidget.st 
packages/visualgst/Tetris/TetrisField.st 
packages/visualgst/Tetris/TetrisPiece.st 
packages/visualgst/Tetris/TetrisPieceI.st 
packages/visualgst/Tetris/TetrisPieceJ.st 
packages/visualgst/Tetris/TetrisPieceL.st 
packages/visualgst/Tetris/TetrisPieceO.st 
packages/visualgst/Tetris/TetrisPieceS.st 
packages/visualgst/Tetris/TetrisPieceT.st pa
 ckages/visualgst/Tetris/TetrisPieceZ.st packages/visualgst/Tetris/Tetris.st 
packages/visualgst/SUnit/TestBacktraceLog.st 
packages/visualgst/SUnit/GtkSUnitResultWidget.st 
packages/visualgst/GtkClassSUnitWidget.st 
packages/visualgst/GtkMethodSUnitWidget.st packages/visualgst/SUnit/GtkSUnit.st 
packages/visualgst/Commands/OpenBrowserCommand.st 
packages/visualgst/Commands/OpenTabbedBrowserCommand.st 
packages/visualgst/Commands/ToolsMenus/OpenSUnitCommand.st 
packages/visualgst/Commands/ToolsMenus/OpenBottomPaneCommand.st 
packages/visualgst/Commands/OpenWorkspaceCommand.st 
packages/visualgst/Commands/ToolsMenus/OpenImplementorCommand.st 
packages/visualgst/Commands/ToolsMenus/OpenSenderCommand.st 
packages/visualgst/Commands/ToolsMenus/OpenPackageBuilderCommand.st 
packages/visualgst/Commands/SaveImageCommand.st 
packages/visualgst/Commands/SaveImageAsCommand.st 
packages/visualgst/Commands/InspectorMenus/InspectorBackCommand.st 
packages/visualgst/Commands/InspectorMenus/InspectorDiveCommand.st
  packages/visualgst/Commands/WorkspaceMenus/DeleteItemCommand.st 
packages/visualgst/Commands/WorkspaceMenus/InspectItemCommand.st 
packages/visualgst/Commands/WorkspaceMenus/WorkspaceVariableCommand.st 
packages/visualgst/Icons/category.gif packages/visualgst/Icons/namespace.gif 
packages/visualgst/Icons/go-bottom.png packages/visualgst/Icons/go-down.png 
packages/visualgst/Icons/go-first.png packages/visualgst/Icons/go-home.png 
packages/visualgst/Icons/go-jump.png packages/visualgst/Icons/go-last.png 
packages/visualgst/Icons/go-next.png packages/visualgst/Icons/go-previous.png 
packages/visualgst/Icons/go-run.png packages/visualgst/Icons/go-top.png 
packages/visualgst/Icons/go-up.png packages/visualgst/Icons/NUnit.Failed.png 
packages/visualgst/Icons/NUnit.Loading.png 
packages/visualgst/Icons/NUnit.None.png 
packages/visualgst/Icons/NUnit.NotRun.png 
packages/visualgst/Icons/NUnit.Running.png 
packages/visualgst/Icons/NUnit.SuccessAndFailed.png 
packages/visualgst/Icons/NUnit.Success.png pack
 ages/visualgst/Icons/extension.png packages/visualgst/Icons/overridden.png 
packages/visualgst/Icons/override.png packages/visualgst/Icons/visualgst.png 
packages/visualgst/Tests/AddNamespaceUndoCommandTest.st 
packages/visualgst/Tests/GtkMethodWidgetTest.st 
packages/visualgst/Tests/CompiledMethodTest.st 
packages/visualgst/Tests/ExtractLiteralsTest.st 
packages/visualgst/Tests/CategoryTest.st 
packages/visualgst/Tests/GtkScrollTreeWidgetTest.st 
packages/visualgst/Tests/MenuBuilderTest.st 
packages/visualgst/Tests/GtkAssistantTest.st 
packages/visualgst/Tests/GtkSimpleListWidgetTest.st 
packages/visualgst/Tests/EmptyTest.st 
packages/visualgst/Tests/AddClassUndoCommandTest.st 
packages/visualgst/Tests/GtkCategoryWidgetTest.st 
packages/visualgst/Tests/StateTest.st packages/visualgst/Tests/FinderTest.st 
packages/visualgst/Tests/PragmaTest.st 
packages/visualgst/Tests/GtkCategorizedNamespaceWidgetTest.st 
packages/visualgst/Tests/GtkCategorizedClassWidgetTest.st
+packages/visualgst/Notification/AbstractEvent.st 
packages/visualgst/Notification/AddedEvent.st 
packages/visualgst/Notification/CommentedEvent.st 
packages/visualgst/Notification/DoItEvent.st 
packages/visualgst/Notification/SystemEventManager.st 
packages/visualgst/Notification/EventMultiplexer.st 
packages/visualgst/Notification/EventDispatcher.st 
packages/visualgst/Notification/ModifiedEvent.st 
packages/visualgst/Notification/ModifiedClassDefinitionEvent.st 
packages/visualgst/Notification/RecategorizedEvent.st 
packages/visualgst/Notification/RemovedEvent.st 
packages/visualgst/Notification/RenamedEvent.st 
packages/visualgst/Notification/ReorganizedEvent.st 
packages/visualgst/Notification/SystemChangeNotifier.st 
packages/visualgst/GtkAnnouncer.st 
packages/visualgst/GtkNamespaceSelectionChanged.st 
packages/visualgst/GtkClassSelectionChanged.st 
packages/visualgst/Commands/Command.st 
packages/visualgst/Commands/SmalltalkMenus/DoItCommand.st 
packages/visualgst/Commands/SmalltalkMenus/DebugI
 tCommand.st packages/visualgst/Commands/SmalltalkMenus/PrintItCommand.st 
packages/visualgst/Commands/SmalltalkMenus/InspectItCommand.st 
packages/visualgst/Commands/SmalltalkMenus/AcceptItCommand.st 
packages/visualgst/Commands/SmalltalkMenus/CancelCommand.st 
packages/visualgst/Commands/HistoryCommands/HistoryBackCommand.st 
packages/visualgst/Commands/HistoryCommands/HistoryDisplayCommand.st 
packages/visualgst/Commands/HistoryCommands/HistoryForwardCommand.st 
packages/visualgst/Commands/TabsMenus/CloseTabCommand.st 
packages/visualgst/Commands/TabsMenus/NextTabCommand.st 
packages/visualgst/Commands/TabsMenus/PreviousTabCommand.st 
packages/visualgst/Commands/NamespaceMenus/NamespaceCommand.st 
packages/visualgst/Commands/NamespaceMenus/InspectNamespaceCommand.st 
packages/visualgst/Commands/NamespaceMenus/FileoutNamespaceCommand.st 
packages/visualgst/Commands/NamespaceMenus/AddNamespaceCommand.st 
packages/visualgst/Commands/NamespaceMenus/DeleteNamespaceCommand.st 
packages/visualgst/Comma
 nds/NamespaceMenus/RenameNamespaceCommand.st 
packages/visualgst/Commands/ClassMenus/ClassCommand.st 
packages/visualgst/Commands/ClassMenus/InspectClassCommand.st 
packages/visualgst/Commands/ClassMenus/FileoutClassCommand.st 
packages/visualgst/Commands/ClassMenus/AddClassCommand.st 
packages/visualgst/Commands/ClassMenus/DeleteClassCommand.st 
packages/visualgst/Commands/ClassMenus/RenameClassCommand.st 
packages/visualgst/Commands/CategoryMenus/CategoryCommand.st 
packages/visualgst/Commands/CategoryMenus/FileoutCategoryCommand.st 
packages/visualgst/Commands/CategoryMenus/AddCategoryCommand.st 
packages/visualgst/Commands/CategoryMenus/RenameCategoryCommand.st 
packages/visualgst/Commands/MethodMenus/MethodCommand.st 
packages/visualgst/Commands/MethodMenus/FileoutMethodCommand.st 
packages/visualgst/Commands/MethodMenus/InspectMethodCommand.st 
packages/visualgst/Commands/MethodMenus/DeleteMethodCommand.st 
packages/visualgst/Commands/MethodMenus/DebugTestCommand.st 
packages/visualgst/Comman
 ds/ToolsMenus/OpenAssistantCommand.st 
packages/visualgst/Commands/ToolsMenus/OpenWebBrowserCommand.st 
packages/visualgst/Commands/EditMenus/CancelEditCommand.st 
packages/visualgst/Commands/EditMenus/UndoEditCommand.st 
packages/visualgst/Commands/EditMenus/RedoEditCommand.st 
packages/visualgst/Commands/EditMenus/CutEditCommand.st 
packages/visualgst/Commands/EditMenus/CopyEditCommand.st 
packages/visualgst/Commands/EditMenus/PasteEditCommand.st 
packages/visualgst/Commands/EditMenus/SelectAllEditCommand.st 
packages/visualgst/Commands/EditMenus/FindEditCommand.st 
packages/visualgst/Commands/EditMenus/ReplaceEditCommand.st 
packages/visualgst/Commands/DebugMenus/DebugCommand.st 
packages/visualgst/Commands/DebugMenus/ContinueDebugCommand.st 
packages/visualgst/Commands/DebugMenus/StepIntoDebugCommand.st 
packages/visualgst/Commands/DebugMenus/StepToDebugCommand.st 
packages/visualgst/Menus/MenuBuilder.st 
packages/visualgst/Menus/MenuSeparator.st 
packages/visualgst/Menus/ToolbarSeparator.st pac
 kages/visualgst/Menus/LauncherToolbar.st 
packages/visualgst/Menus/DebuggerToolbar.st 
packages/visualgst/Menus/NamespaceMenus.st 
packages/visualgst/Menus/ClassMenus.st 
packages/visualgst/Menus/CategoryMenus.st 
packages/visualgst/Menus/ContextMenus.st 
packages/visualgst/Menus/MethodMenus.st packages/visualgst/Menus/EditMenus.st 
packages/visualgst/Menus/SmalltalkMenus.st 
packages/visualgst/Menus/ToolsMenus.st packages/visualgst/Menus/HistoryMenus.st 
packages/visualgst/Menus/TabsMenus.st 
packages/visualgst/Menus/InspectorMenus.st 
packages/visualgst/Menus/TextMenus.st 
packages/visualgst/Menus/WorkspaceVariableMenus.st 
packages/visualgst/Menus/SimpleWorkspaceMenus.st 
packages/visualgst/Menus/WorkspaceMenus.st packages/visualgst/FakeNamespace.st 
packages/visualgst/Category/ClassCategory.st 
packages/visualgst/Category/AbstractNamespace.st 
packages/visualgst/Category/Class.st packages/visualgst/GtkScrollTreeWidget.st 
packages/visualgst/GtkSimpleListWidget.st packages/visualgst/GtkEntryWidget
 .st packages/visualgst/GtkSidebarWidget.st 
packages/visualgst/GtkHSidebarWidget.st packages/visualgst/GtkVSidebarWidget.st 
packages/visualgst/Model/GtkColumnType.st 
packages/visualgst/Model/GtkColumnTextType.st 
packages/visualgst/Model/GtkColumnPixbufType.st 
packages/visualgst/Model/GtkColumnOOPType.st packages/visualgst/GtkTreeModel.st 
packages/visualgst/Text/GtkTextWidget.st 
packages/visualgst/GtkPackageBuilderWidget.st 
packages/visualgst/GtkVisualGSTTool.st packages/visualgst/GtkBrowsingTool.st 
packages/visualgst/GtkLauncher.st 
packages/visualgst/Text/GtkTextPluginWidget.st 
packages/visualgst/Text/GtkFindWidget.st 
packages/visualgst/Text/GtkReplaceWidget.st 
packages/visualgst/Text/GtkSaveTextWidget.st 
packages/visualgst/GtkNotebookWidget.st 
packages/visualgst/Image/GtkImageModel.st 
packages/visualgst/Image/GtkImageWidget.st 
packages/visualgst/Debugger/GtkContextWidget.st 
packages/visualgst/Debugger/GtkDebugger.st 
packages/visualgst/State/BrowserState.st packages/visualgst/State/N
 amespaceState.st packages/visualgst/State/ClassState.st 
packages/visualgst/State/CategoryState.st 
packages/visualgst/State/MethodState.st 
packages/visualgst/GtkWorkspaceWidget.st 
packages/visualgst/GtkTranscriptWidget.st 
packages/visualgst/StBrowser/GtkCategorizedNamespaceWidget.st 
packages/visualgst/StBrowser/GtkCategorizedClassWidget.st 
packages/visualgst/StBrowser/GtkCategoryWidget.st 
packages/visualgst/StBrowser/GtkMethodWidget.st 
packages/visualgst/Text/GtkSourceCodeWidget.st 
packages/visualgst/StBrowser/GtkClassHierarchyWidget.st 
packages/visualgst/GtkHistoryWidget.st 
packages/visualgst/Inspector/GtkInspector.st 
packages/visualgst/StBrowser/GtkClassBrowserWidget.st 
packages/visualgst/HistoryStack.st packages/visualgst/Undo/UndoStack.st 
packages/visualgst/Undo/UndoCommand.st 
packages/visualgst/Undo/AddNamespaceUndoCommand.st 
packages/visualgst/Undo/RenameNamespaceUndoCommand.st 
packages/visualgst/Undo/DeleteNamespaceUndoCommand.st 
packages/visualgst/Source/SourceFormatter.st pa
 ckages/visualgst/Source/NamespaceHeaderSource.st 
packages/visualgst/Source/NamespaceSource.st 
packages/visualgst/Source/ClassHeaderSource.st 
packages/visualgst/Source/ClassSource.st 
packages/visualgst/Source/CategorySource.st 
packages/visualgst/Source/MethodSource.st 
packages/visualgst/Source/PackageSource.st 
packages/visualgst/Source/BrowserMethodSource.st 
packages/visualgst/Undo/AddClassUndoCommand.st 
packages/visualgst/Undo/RenameClassUndoCommand.st 
packages/visualgst/Undo/DeleteClassUndoCommand.st 
packages/visualgst/AbstractFinder.st packages/visualgst/NamespaceFinder.st 
packages/visualgst/ClassFinder.st packages/visualgst/MethodFinder.st 
packages/visualgst/GtkWebBrowser.st packages/visualgst/GtkWebView.st 
packages/visualgst/Extensions.st packages/visualgst/GtkAssistant.st 
packages/visualgst/Undo/RenameCategoryUndoCommand.st 
packages/visualgst/Undo/AddMethodUndoCommand.st 
packages/visualgst/Undo/DeleteMethodUndoCommand.st 
packages/visualgst/WorkspaceVariableTracker.st packages/v
 isualgst/GtkVariableTrackerWidget.st packages/visualgst/SyntaxHighlighter.st 
packages/visualgst/Undo/Text/InsertTextCommand.st 
packages/visualgst/Undo/Text/DeleteTextCommand.st 
packages/visualgst/Undo/Text/ReplaceTextCommand.st 
packages/visualgst/Clock/GtkClock.st 
packages/visualgst/Inspector/GtkInspectorSourceWidget.st 
packages/visualgst/Inspector/GtkInspectorBrowserWidget.st 
packages/visualgst/Inspector/GtkInspectorWidget.st 
packages/visualgst/Inspector/GtkObjectInspectorView.st 
packages/visualgst/Inspector/GtkCompiledMethodInspectorView.st 
packages/visualgst/Inspector/GtkCompiledBlockInspectorView.st 
packages/visualgst/Inspector/GtkSequenceableCollectionInspectorView.st 
packages/visualgst/Inspector/GtkSetInspectorView.st 
packages/visualgst/Inspector/GtkDictionaryInspectorView.st 
packages/visualgst/Inspector/GtkCharacterInspectorView.st 
packages/visualgst/Inspector/GtkIntegerInspectorView.st 
packages/visualgst/Inspector/GtkFloatInspectorView.st 
packages/visualgst/Implementors/GtkI
 mageResultsWidget.st 
packages/visualgst/Implementors/GtkImplementorResultsWidget.st 
packages/visualgst/Implementors/GtkSenderResultsWidget.st 
packages/visualgst/Notification/Kernel/AbstractNamespace.st 
packages/visualgst/Notification/Kernel/Metaclass.st 
packages/visualgst/Notification/Kernel/Class.st 
packages/visualgst/Notification/Kernel/MethodDictionary.st 
packages/visualgst/Debugger/GtkStackInspectorView.st 
packages/visualgst/Debugger/GtkStackInspector.st 
packages/visualgst/Tetris/HighScores.st packages/visualgst/Tetris/Score.st 
packages/visualgst/Tetris/TetrisPieceWidget.st 
packages/visualgst/Tetris/BlockWidget.st 
packages/visualgst/Tetris/TetrisField.st 
packages/visualgst/Tetris/TetrisPiece.st 
packages/visualgst/Tetris/TetrisPieceI.st 
packages/visualgst/Tetris/TetrisPieceJ.st 
packages/visualgst/Tetris/TetrisPieceL.st 
packages/visualgst/Tetris/TetrisPieceO.st 
packages/visualgst/Tetris/TetrisPieceS.st 
packages/visualgst/Tetris/TetrisPieceT.st packages/visualgst/Tetris/TetrisPiece
 Z.st packages/visualgst/Tetris/Tetris.st 
packages/visualgst/SUnit/TestBacktraceLog.st 
packages/visualgst/SUnit/GtkSUnitResultWidget.st 
packages/visualgst/GtkClassSUnitWidget.st 
packages/visualgst/GtkMethodSUnitWidget.st packages/visualgst/SUnit/GtkSUnit.st 
packages/visualgst/Commands/OpenBrowserCommand.st 
packages/visualgst/Commands/OpenTabbedBrowserCommand.st 
packages/visualgst/Commands/ToolsMenus/OpenSUnitCommand.st 
packages/visualgst/Commands/ToolsMenus/OpenBottomPaneCommand.st 
packages/visualgst/Commands/OpenWorkspaceCommand.st 
packages/visualgst/Commands/ToolsMenus/OpenImplementorCommand.st 
packages/visualgst/Commands/ToolsMenus/OpenSenderCommand.st 
packages/visualgst/Commands/ToolsMenus/OpenPackageBuilderCommand.st 
packages/visualgst/Commands/SaveImageCommand.st 
packages/visualgst/Commands/SaveImageAsCommand.st 
packages/visualgst/Commands/InspectorMenus/InspectorBackCommand.st 
packages/visualgst/Commands/InspectorMenus/InspectorDiveCommand.st 
packages/visualgst/Commands/Worksp
 aceMenus/DeleteItemCommand.st 
packages/visualgst/Commands/WorkspaceMenus/InspectItemCommand.st 
packages/visualgst/Commands/WorkspaceMenus/WorkspaceVariableCommand.st 
packages/visualgst/Icons/category.gif packages/visualgst/Icons/namespace.gif 
packages/visualgst/Icons/go-bottom.png packages/visualgst/Icons/go-down.png 
packages/visualgst/Icons/go-first.png packages/visualgst/Icons/go-home.png 
packages/visualgst/Icons/go-jump.png packages/visualgst/Icons/go-last.png 
packages/visualgst/Icons/go-next.png packages/visualgst/Icons/go-previous.png 
packages/visualgst/Icons/go-run.png packages/visualgst/Icons/go-top.png 
packages/visualgst/Icons/go-up.png packages/visualgst/Icons/NUnit.Failed.png 
packages/visualgst/Icons/NUnit.Loading.png 
packages/visualgst/Icons/NUnit.None.png 
packages/visualgst/Icons/NUnit.NotRun.png 
packages/visualgst/Icons/NUnit.Running.png 
packages/visualgst/Icons/NUnit.SuccessAndFailed.png 
packages/visualgst/Icons/NUnit.Success.png 
packages/visualgst/Icons/extension.png 
 packages/visualgst/Icons/overridden.png packages/visualgst/Icons/override.png 
packages/visualgst/Icons/visualgst.png 
packages/visualgst/Tests/AddNamespaceUndoCommandTest.st 
packages/visualgst/Tests/GtkMethodWidgetTest.st 
packages/visualgst/Tests/CompiledMethodTest.st 
packages/visualgst/Tests/ExtractLiteralsTest.st 
packages/visualgst/Tests/CategoryTest.st 
packages/visualgst/Tests/GtkScrollTreeWidgetTest.st 
packages/visualgst/Tests/MenuBuilderTest.st 
packages/visualgst/Tests/GtkAssistantTest.st 
packages/visualgst/Tests/GtkSimpleListWidgetTest.st 
packages/visualgst/Tests/EmptyTest.st 
packages/visualgst/Tests/AddClassUndoCommandTest.st 
packages/visualgst/Tests/GtkCategoryWidgetTest.st 
packages/visualgst/Tests/StateTest.st packages/visualgst/Tests/FinderTest.st 
packages/visualgst/Tests/PragmaTest.st 
packages/visualgst/Tests/GtkCategorizedNamespaceWidgetTest.st 
packages/visualgst/Tests/GtkCategorizedClassWidgetTest.st
 $(VisualGST_FILES):
 $(srcdir)/packages/visualgst/stamp-classes: $(VisualGST_FILES)
        touch $(srcdir)/packages/visualgst/stamp-classes
diff --git a/packages/visualgst/StBrowser/GtkCategoryWidget.st 
b/packages/visualgst/StBrowser/GtkCategoryWidget.st
index 8a0196c..caa8c59 100644
--- a/packages/visualgst/StBrowser/GtkCategoryWidget.st
+++ b/packages/visualgst/StBrowser/GtkCategoryWidget.st
@@ -74,7 +74,7 @@ GTKTools.GtkConcreteWidget subclass: GtkCategoryWidget [
        categoryTree := GtkScrollTreeWidget createListWithModel: 
{{GtkColumnTextType title: 'Method categories'}}.
        categoryTree treeView getSelection setMode: GTK.Gtk gtkSelectionBrowse.
        categoryTree connectToWhenPopupMenu: (CategoryMenus on: self).
-        (model := GtkListModel on: categoryTree treeView getModel)
+        (model := GTKTools.GtkListModel on: categoryTree treeView getModel)
                                         contentsBlock: [ :each | {each 
displayString} ].
        ^ categoryTree mainWidget
     ]
diff --git a/packages/visualgst/StBrowser/GtkMethodWidget.st 
b/packages/visualgst/StBrowser/GtkMethodWidget.st
index 3b4cd4f..3487ebf 100644
--- a/packages/visualgst/StBrowser/GtkMethodWidget.st
+++ b/packages/visualgst/StBrowser/GtkMethodWidget.st
@@ -100,7 +100,7 @@ GTKTools.GtkConcreteWidget subclass: GtkMethodWidget [
        methodTree := GtkScrollTreeWidget createListWithModel: 
{{GtkColumnPixbufType visible. GtkColumnTextType title: 'Methods'}}.
         methodTree connectToWhenPopupMenu: (MethodMenus on: self).
        methodTree treeView getSelection setMode: GTK.Gtk gtkSelectionBrowse.
-       (model := GtkListModel on: methodTree treeView getModel)
+       (model := GTKTools.GtkListModel on: methodTree treeView getModel)
                                        contentsBlock: [ :each | {each 
methodViewIcon. each selector asString} ].
        ^ methodTree mainWidget
     ]
diff --git a/packages/visualgst/package.xml b/packages/visualgst/package.xml
index 91a2415..fdfb6fe 100644
--- a/packages/visualgst/package.xml
+++ b/packages/visualgst/package.xml
@@ -167,7 +167,6 @@
   <filein>Model/GtkColumnTextType.st</filein>
   <filein>Model/GtkColumnPixbufType.st</filein>
   <filein>Model/GtkColumnOOPType.st</filein>
-  <filein>GtkListModel.st</filein>
   <filein>GtkTreeModel.st</filein>
   <filein>Text/GtkTextWidget.st</filein>
   <filein>GtkPackageBuilderWidget.st</filein>
@@ -389,7 +388,6 @@
   <file>Model/GtkColumnTextType.st</file>
   <file>Model/GtkColumnPixbufType.st</file>
   <file>Model/GtkColumnOOPType.st</file>
-  <file>GtkListModel.st</file>
   <file>GtkTreeModel.st</file>
   <file>Text/GtkTextWidget.st</file>
   <file>GtkPackageBuilderWidget.st</file>
-- 
1.7.10.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]