#!/bin/sh

echo 'The following lists the routines which define widget handler systems'
echo 'to {\\tt xmanager}, and the names under which they are registered'
echo 'The handler names should not be replicated'
echo ''
echo '\\begin{tabular}{ll}'

find . -name \*.pro -exec grep xmanager {} /dev/null \;

echo '\\end{tabular}'
echo ''
echo 'These are the named structures defined'
echo ''
echo '\\begin{tabular}{ll}'

find . -name \*.pro -exec grep \{ {} /dev/null \;
echo '\\end{tabular}'

echo ''
echo 'These are the common blocks defined'
echo ''
echo '\\begin{tabular}{ll}'
find . -name \*.pro -exec grep common {} /dev/null \;
echo '\\end{tabular}'
