Get rid of options menu. Move "New x Window" stuff to file menu.
authorsls <sls>
Sun, 4 Jun 1995 08:05:35 +0000 (08:05 +0000)
committersls <sls>
Sun, 4 Jun 1995 08:05:35 +0000 (08:05 +0000)
tkinspect.tcl

index 40f0980b6f853cd00004422777de7bec6d7bcab2..a25c423f7931cf504ed6d2b3938c74f062faac1c 100644 (file)
@@ -46,7 +46,6 @@ proc tkinspect_about {} {
 dialog tkinspect_main {
     param default_lists "procs_list globals_list windows_list"
     param target ""
-    member get_window_info 1
     member last_list {}
     member list_counter -1
     member lists ""
@@ -61,29 +60,24 @@ dialog tkinspect_main {
        set m [menu $self.menu.file.m]
        $m add cascade -label "Select Interpreter" -underline 0 \
            -menu $self.menu.file.m.interps
-       $m add command -label "New Window" -underline 0 \
+       $m add command -label "Update Lists" -underline 0 \
+           -command "$self update_lists"
+       $m add separator
+       $m add command -label "New Tkinspect Window" -underline 0 \
            -command tkinspect_create_main_window
        $m add command -label "New Command Line" -underline 12 \
            -command "$self add_cmdline"
-       $m add command -label "Update Lists" -underline 0 \
-           -command "$self update_lists"
+       foreach list_class $tkinspect(list_classes) {
+           $m add command -label "New $list_class List" \
+               -command "$self add_list $list_class"
+       }       
        $m add separator
        $m add command -label "Close Window" -underline 0 \
            -command "$self close"
-       $m add command -label "Exit" -underline 0 -command tkinspect_exit
+       $m add command -label "Exit Tkinspect" -underline 0 \
+           -command tkinspect_exit
        menu $self.menu.file.m.interps -tearoff 0 \
            -postcommand "$self fill_interp_menu"
-       menubutton $self.menu.options -menu $self.menu.options.m \
-           -text "Options" -underline 0
-       pack $self.menu.options -side left
-       set m [menu $self.menu.options.m]
-       foreach list_class $tkinspect(list_classes) {
-           $m add command -label "New $list_class List" \
-               -command "$self add_list $list_class"
-       }
-       $m add separator
-       $m add checkbutton -variable [object_slotname get_window_info] \
-            -label "Get Window Information" -underline 0
        menubutton $self.menu.help -menu $self.menu.help.m -text "Help" \
            -underline 0
        pack $self.menu.help -side right