diff --git a/Iceberg-TipUI.package/IceTipRepositoryBrowser.class/instance/newSidebarTreeDataSource.st b/Iceberg-TipUI.package/IceTipRepositoryBrowser.class/instance/newSidebarTreeDataSource.st index f98373b593..54efdaed8d 100644 --- a/Iceberg-TipUI.package/IceTipRepositoryBrowser.class/instance/newSidebarTreeDataSource.st +++ b/Iceberg-TipUI.package/IceTipRepositoryBrowser.class/instance/newSidebarTreeDataSource.st @@ -1,6 +1,6 @@ private factory newSidebarTreeDataSource - ^ IceTipTreeOutlineDataSource new + ^ IceTipTreeDataSource new tool: self; rootForItems: self model repositoryModelsByGroup; childrenBlock: [ :each | each children ]; diff --git a/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/README.md b/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/README.md deleted file mode 100644 index a2a17cf4a7..0000000000 --- a/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/README.md +++ /dev/null @@ -1 +0,0 @@ -I'm a tree datasource to generate an Outline component. diff --git a/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/instance/cellColumn.row..st b/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/instance/cellColumn.row..st deleted file mode 100644 index a3d7d0c8e1..0000000000 --- a/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/instance/cellColumn.row..st +++ /dev/null @@ -1,8 +0,0 @@ -accessing -cellColumn: column row: rowIndex - | item | - - item := self elementAt: rowIndex. - ^ item depth = 0 - ifTrue: [ self newRootCellFor: item ] - ifFalse: [ self newCellFor: item ] \ No newline at end of file diff --git a/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/instance/cellIndentFor..st b/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/instance/cellIndentFor..st deleted file mode 100644 index b08be96e7c..0000000000 --- a/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/instance/cellIndentFor..st +++ /dev/null @@ -1,3 +0,0 @@ -accessing -cellIndentFor: item - ^ ((item depth - 1) * 16) + 3 \ No newline at end of file diff --git a/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/instance/newRootCellFor..st b/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/instance/newRootCellFor..st deleted file mode 100644 index 45411f268e..0000000000 --- a/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/instance/newRootCellFor..st +++ /dev/null @@ -1,10 +0,0 @@ -private factory -newRootCellFor: item - | cell | - - cell := FTIndentedCellMorph new. - (self iconFor: item data) - ifNotNil: [ :icon | cell addMorphBack: icon asMorph ]. - cell addMorphBack: (self toString: item data) asMorph asReadOnlyMorph. - - ^ cell \ No newline at end of file diff --git a/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/properties.json b/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/properties.json deleted file mode 100644 index 9f3d02e1c0..0000000000 --- a/Iceberg-TipUI.package/IceTipTreeOutlineDataSource.class/properties.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "commentStamp" : "EstebanLorenzano 3/8/2018 16:22", - "super" : "IceTipTreeDataSource", - "category" : "Iceberg-TipUI-View-DataSource", - "classinstvars" : [ ], - "pools" : [ ], - "classvars" : [ ], - "instvars" : [ - "selectedItems" - ], - "name" : "IceTipTreeOutlineDataSource", - "type" : "normal" -} \ No newline at end of file