#! /usr/local/tk3.2/bin/wish -f
#
# This file contains the routines for a "Filters" menu
# Input parameter
#  w - name of window
proc AddFilters w {
menubutton $w -text "Filters" -menu $w.m
menu $w.m
$w.m add command -label "Accept only"      -command nop
$w.m add command -label "Reject only"      -command nop
$w.m add command -label "Sort"             -command nop
$w.m add command -label "Clear"            -command nop
}

# All of these need to invoke further menus/dialogs/etc.  

