You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/scripts/qtdoc

25 lines
674 B

#!/bin/sh
if [ -z "$TQTDIR" ]; then
TQTDIR=/usr/share/qt3
fi
# Run from command line, to open a qt help page in kfm/konqueror
# No argument => main page
# Classname (case insensitive) => page for this class
if [ $# = 1 ]; then
fname=`echo $1 | tr '[A-Z]' '[a-z]'`
if [ -f $TQTDIR/doc/html/$fname.html ]; then
tdeinit_wrapper kfmclient openProfile webbrowsing file:$TQTDIR/doc/html/$fname.html
else
if [ -f /usr/doc/qt2/html/$fname.html ]; then
tdeinit_wrapper kfmclient openProfile webbrowsing file:/usr/doc/qt2/html/$fname.html
else
echo "No such file $fname.html"
fi
fi
else
kfmclient openURL file:$TQTDIR/doc/html/index.html
fi