#!/bin/sh
# prerm script for applet-touchcruiser
#
# see: dh_installdeb(1)

set -e

# summary of how this script can be called:
#        * <prerm> `remove'
#        * <old-prerm> `upgrade' <new-version>
#        * <new-prerm> `failed-upgrade' <old-version>
#        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
#        * <deconfigured's-prerm> `deconfigure' `in-favour'
#          <package-being-installed> <version> `removing'
#          <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package

case "$1" in
    remove|upgrade|deconfigure)
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type string /apps/panel/default_setup/applets/touchcruiser/action_type ""
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type string /apps/panel/default_setup/applets/touchcruiser/attached_toplevel_id ""
       	gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type string /apps/panel/default_setup/applets/touchcruiser/bonobo_iid ""
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type string /apps/panel/default_setup/applets/touchcruiser/custom_icon ""
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type string /apps/panel/default_setup/applets/touchcruiser/launcher_location ""
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type bool   /apps/panel/default_setup/applets/touchcruiser/locked false
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type string /apps/panel/default_setup/applets/touchcruiser/menu_path ""
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type string /apps/panel/default_setup/applets/touchcruiser/object_type ""
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type bool   /apps/panel/default_setup/applets/touchcruiser/panel_right_stick false
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type int    /apps/panel/default_setup/applets/touchcruiser/position 0
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type string /apps/panel/default_setup/applets/touchcruiser/tooltip ""
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type string /apps/panel/default_setup/applets/touchcruiser/toplevel_id ""
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type bool   /apps/panel/default_setup/applets/touchcruiser/use_custom_icon false
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type bool   /apps/panel/default_setup/applets/touchcruiser/use_menu_path false
        gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --set --type list --list-type string /apps/panel/default_setup/general/applet_id_list  "[]"

    ;;

    failed-upgrade)
    ;;

    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0
