summaryrefslogtreecommitdiff
path: root/table.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-02-17 17:19:31 -0500
committerPietro Gagliardi <[email protected]>2015-02-17 17:19:31 -0500
commitdc32a0e27a14d21fbbe7943a5904d48836b94dd7 (patch)
tree0e2fd96ac0933721c479da9f2879ebcf1e400346 /table.go
parent62d9ae07ade0857e838e5e10502a34501f88fd04 (diff)
More ImageList removal.
Diffstat (limited to 'table.go')
-rw-r--r--table.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/table.go b/table.go
index 38e6292..ec5bf83 100644
--- a/table.go
+++ b/table.go
@@ -10,7 +10,7 @@ import (
// Table is a Control that displays a list of like-structured data in a grid where each row represents an item and each column represents a bit of data.
// Tables store and render a slice of struct values.
-// Each field of the struct of type ImageIndex is rendered as an icon from the Table's ImageList.
+// Each field of the struct of type *image.RGBA is rendered as an icom.
// Each field whose type is bool or equivalent to bool is rendered as a checkbox.
// All other fields are rendered as strings formatted with package fmt's %v format specifier.
//
@@ -37,10 +37,6 @@ type Table interface {
// Do not call this outside a Lock()..Unlock() or RLock()..RUnlock() pair.
Data() interface{}
- // LoadImageList loads the given ImageList into the Table.
- // This function copies; changes to the ImageList made later will not be reflected by the Table.
- LoadImageList(imagelist ImageList)
-
// Selected and Select get and set the currently selected item in the Table.
// Selected returns -1 if no item is selected.
// Pass -1 to Select to deselect all items.