From: Barry Warsaw Date: Fri, 2 Oct 1998 16:05:48 +0000 (+0000) Subject: Added the ListViewer X-Git-Tag: v1.5.2a2~167 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd36d6eccd5c1d79a8bc1e273124e752c218a578;p=python Added the ListViewer --- diff --git a/Tools/pynche/PyncheWidget.py b/Tools/pynche/PyncheWidget.py index 2222c05490..b367fc2f6a 100644 --- a/Tools/pynche/PyncheWidget.py +++ b/Tools/pynche/PyncheWidget.py @@ -15,6 +15,7 @@ class PyncheWidget: self.__sb = switchboard self.__version = version self.__textwin = None + self.__listwin = None # create the first and top window root = self.__root = Tk(className='Pynche') root.protocol('WM_DELETE_WINDOW', self.__quit) @@ -51,6 +52,9 @@ class PyncheWidget: viewmenu.add_command(label='Text Window...', command=self.__popup_text, underline=0) + viewmenu.add_command(label='Color List Window...', + command=self.__popup_listwin, + underline=0) # # Help menu # @@ -98,3 +102,10 @@ email: bwarsaw@python.org''') self.__textwin = TextViewer(self.__sb, self.__root) self.__sb.add_view(self.__textwin) self.__textwin.deiconify() + + def __popup_listwin(self, event=None): + if not self.__listwin: + from ListViewer import ListViewer + self.__listwin = ListViewer(self.__sb, self.__root) + self.__sb.add_view(self.__listwin) + self.__listwin.deiconify()