summaryrefslogtreecommitdiffstats
path: root/scripts/qtdoc
blob: 6250f7a98631d021a51776dff465d272a235d659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

if [ -z "$QTDIR" ]; then
  QTDIR=/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 $QTDIR/doc/html/$fname.html ]; then
    tdeinit_wrapper kfmclient openProfile webbrowsing file:$QTDIR/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:$QTDIR/doc/html/index.html
fi