summaryrefslogtreecommitdiff
path: root/redo/containerctrls.go
diff options
context:
space:
mode:
Diffstat (limited to 'redo/containerctrls.go')
-rw-r--r--redo/containerctrls.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/redo/containerctrls.go b/redo/containerctrls.go
deleted file mode 100644
index 9b0c0b1..0000000
--- a/redo/containerctrls.go
+++ /dev/null
@@ -1,25 +0,0 @@
-// 25 july 2014
-
-package ui
-
-// Tab is a Control that contains multiple pages of tabs, each containing a single Control.
-// You can add and remove tabs from the Tab at any time.
-//
-// [TODO if each tab of your Tab is going to have the same content Controls, then use LikeTab instead, to conserve resources]
-type Tab interface {
- Control
-
- // Append adds a new tab to Tab.
- // The tab is added to the end of the current list of tabs.
- Append(name string, control Control)
-
- // Delete removes the given tab.
- // It panics if index is out of range.
-// Delete(index int)
-//TODO
-}
-
-// NewTab creates a new Tab with no tabs.
-func NewTab() Tab {
- return newTab()
-}