Change bindtags to bindtagsplus, add bindtags.
authorsls <sls>
Tue, 14 Feb 1995 02:53:22 +0000 (02:53 +0000)
committersls <sls>
Tue, 14 Feb 1995 02:53:22 +0000 (02:53 +0000)
windows_list.tcl

index 019b9d338cde9f6833a1e063fb6ecbe02075141a..89dc223ff223d13e009ca07dfe39b4545e982cf9 100644 (file)
@@ -23,7 +23,10 @@ widget windows_list {
            -value slavepacking -label "Slave Window Packing" -underline 1 \
             -command "$self mode_changed"
        $slot(menu) add radiobutton -variable [object_slotname mode] \
-           -value bindtags -label "Window Bindtags & Bindings" \
+           -value bindtags -label "Window Bindtags" \
+           -command "$self mode_changed"
+       $slot(menu) add radiobutton -variable [object_slotname mode] \
+           -value bindtagsplus -label "Window Bindtags & Bindings" \
            -command "$self mode_changed"
         $slot(menu) add radiobutton -variable [object_slotname mode] \
            -value bindings -label "Window Bindings" -underline 7 \
@@ -114,6 +117,13 @@ widget windows_list {
        return $result
     }
     method retrieve_bindtags {target window} {
+       set result "# bindtags of $window\n"
+       set tags [send $target [list bindtags $window]]
+       append result [list bindtags $window $tags]
+       append result "\n"
+       return $result
+    }
+    method retrieve_bindtagsplus {target window} {
        set result "# bindtags of $window\n"
        set tags [send $target [list bindtags $window]]
        append result [list bindtags $window $tags]