This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author markroseman
Recipients giampaolo.rodola, gpolo, markroseman, roger.serwy, terry.reedy
Date 2015-08-26.15:49:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440604172.06.0.931372069486.issue9262@psf.upfronthosting.co.za>
In-reply-to
Content
Have attached uitabs.py.  From the header comments:

Standalone 'tabs' widget to switch between multiple different views.

Unlike the Tkinter ttk.Notebook widget, this widget is suitable for
displaying a potentially large number of tabs, as might be found in a
tabbed editor. If there are too many tabs to show based on the available
width, the remainder can be viewed via a popup menu on the last tab.

Tabs can be rearranged by dragging, closed, or new tabs added. Each tab
can have a title which is displayed in the tab, a tooltip for when the
mouse hovers over the tab, and a 'dirty' indicator that can be used to
indicate files needing to be saved.

The appearance and behaviour of the tabs is strongly influenced by the
TextMate editor on Mac OS X.

Implementation is via a single Tkinter canvas.

Unlike many other tabbed widgets, this widget does not take care of
actually switching content being displayed; this is left to the caller.

A UITabsObserver (see below) must be provided to the widget, and is
used to notify the caller when changes are made that must be reflected
in other parts of the user interface.
History
Date User Action Args
2015-08-26 15:49:32markrosemansetrecipients: + markroseman, terry.reedy, giampaolo.rodola, gpolo, roger.serwy
2015-08-26 15:49:32markrosemansetmessageid: <1440604172.06.0.931372069486.issue9262@psf.upfronthosting.co.za>
2015-08-26 15:49:32markrosemanlinkissue9262 messages
2015-08-26 15:49:31markrosemancreate