From 5a51263adc6d2e8ee7ea0dac4d92a66755c07cb1 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Wed, 30 Jul 2014 00:54:50 -0400 Subject: Renamed the controls* and containers* files to basicctrls* and containerctrls*, respectively, in preparation for the widget hierarchy redo. --- redo/containers.go | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 redo/containers.go (limited to 'redo/containers.go') diff --git a/redo/containers.go b/redo/containers.go deleted file mode 100644 index ec44501..0000000 --- a/redo/containers.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 rename? -// TODO implement containerShow()/containerHide() on this -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() -} -- cgit v1.2.3