From 9044b8e5e3b367824445842d8227728387f29255 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Mon, 5 Oct 1998 21:14:46 +0000 Subject: [PATCH] Added details window --- Tools/pynche/PyncheWidget.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Tools/pynche/PyncheWidget.py b/Tools/pynche/PyncheWidget.py index 66c219f72c9..7c709352c50 100644 --- a/Tools/pynche/PyncheWidget.py +++ b/Tools/pynche/PyncheWidget.py @@ -19,6 +19,7 @@ class PyncheWidget: self.__version = version self.__textwin = None self.__listwin = None + self.__detailswin = None # create the first and top window root = self.__root = Tk(className='Pynche') root.protocol('WM_DELETE_WINDOW', self.__quit) @@ -58,7 +59,9 @@ class PyncheWidget: viewmenu.add_command(label='Color List Window...', command=self.__popup_listwin, underline=0) - # + viewmenu.add_command(label='Details Window...', + command=self.__popup_details, + underline=0) # # Help menu # helpbtn = Menubutton(menubar, text='Help', @@ -112,3 +115,10 @@ email: bwarsaw@python.org''') self.__listwin = ListViewer(self.__sb, self.__root) self.__sb.add_view(self.__listwin) self.__listwin.deiconify() + + def __popup_details(self, event=None): + if not self.__detailswin: + from DetailsViewer import DetailsViewer + self.__detailswin = DetailsViewer(self.__sb, self.__root) + self.__sb.add_view(self.__detailswin) + self.__detailswin.deiconify()