home *** CD-ROM | disk | FTP | other *** search
- # -*- coding: utf-8 -*-
-
- from base.g import *
- from qt import *
- from supportform_base import SupportForm_base
- from base import utils
- import os.path
-
- class SupportForm(SupportForm_base):
-
- def __init__(self,parent = None,name = None,modal = 0,fl = 0):
- SupportForm_base.__init__(self,parent,name,modal,fl)
-
- def hpinktjetButton_clicked(self):
- utils.openURL("http://hpinkjet.sourceforge.net/")
-
- def linuxprintingButton_clicked(self):
- utils.openURL("http://linuxprinting.org/")
-
- def cupsButton_clicked(self):
- utils.openURL("http://cups.org/")
-
- def deb_hplip_docButton_clicked(self):
- utils.openURL("file:///usr/share/doc/hplip/")
-
- def deb_hplipdoc_docButton_clicked(self):
- utils.openURL("file:///usr/share/doc/hplip-doc/HTML/index.html")
-
- def deb_hpijs_docButton_clicked(self):
- utils.openURL("file:///usr/share/doc/hpijs/")
-
- def deb_hpijsppds_docButton_clicked(self):
- utils.openURL("file:///usr/share/doc/hpijs-ppds/")
-
- def deb_lpoppds_docButton_clicked(self):
- utils.openURL("file:///usr/share/doc/linuxprinting.org-ppds/")
-
-