home *** CD-ROM | disk | FTP | other *** search
Wrap
# Source Generated with Decompyle++ # File: in.pyc (Python 2.5) from base.g import * from base.codes import * from base import utils, service from qt import * from settingsdialog_base import SettingsDialog_base class SettingsDialog(SettingsDialog_base): def __init__(self, hpssd_sock, parent = None, name = None, modal = 0, fl = 0): SettingsDialog_base.__init__(self, parent, name, modal, fl) self.DefaultsButton.setEnabled(False) self.hpssd_sock = hpssd_sock self.sendmail = utils.which('sendmail') if not self.sendmail: self.EmailTestButton.setEnabled(False) def PrintCmdChangeButton_clicked(self): pass def ScanCmdChangeButton_clicked(self): pass def AccessPCardCmdChangeButton_clicked(self): pass def SendFaxCmdChangeButton_clicked(self): pass def MakeCopiesCmdChangeButton_clicked(self): pass def DefaultsButton_clicked(self): (cmd_print, cmd_scan, cmd_pcard, cmd_copy, cmd_fax, cmd_fab) = utils.deviceDefaultFunctions() self.PrintCommand.setText(cmd_print) self.printButtonGroup.setButton(0) self.ScanCommand.setText(cmd_scan) self.scanButtonGroup.setButton(1) self.AccessPCardCommand.setText(cmd_pcard) self.pcardButtonGroup.setButton(1) self.SendFaxCommand.setText(cmd_fax) self.faxButtonGroup.setButton(1) self.MakeCopiesCommand.setText(cmd_copy) self.copyButtonGroup.setButton(1) def TabWidget_currentChanged(self, a0): name = str(a0.name()) if name == 'FunctionCommands': self.DefaultsButton.setEnabled(True) else: self.DefaultsButton.setEnabled(False) def EmailTestButton_clicked(self): email_to_addresses = str(self.EmailAddress.text()) email_from_address = str(self.senderLineEdit.text()) if not email_to_addresses or not email_from_address: QMessageBox.warning(self, self.caption(), self._SettingsDialog__tr('<b>One or more email addresses are missing.</b><p>Please enter this information and try again.'), QMessageBox.Ok, QMessageBox.NoButton, QMessageBox.NoButton) return None user_cfg.alerts.email_to_addresses = email_to_addresses user_cfg.alerts.email_from_address = email_from_address user_cfg.alerts.email_alerts = True service.setAlerts(self.hpssd_sock, True, email_from_address, email_to_addresses) result_code = service.testEmail(self.hpssd_sock, prop.username) log.debug(result_code) QMessageBox.information(self, self.caption(), self._SettingsDialog__tr("<p><b>Please check your email for a test message.</b><p>If the message doesn't arrive, please check your settings and try again."), QMessageBox.Ok, QMessageBox.NoButton, QMessageBox.NoButton) def autoRefreshCheckBox_clicked(self): pass def CleaningLevel_clicked(self, a0): pass def refreshScopeButtonGroup_clicked(self, a0): self.auto_refresh_type = int(a0) def printButtonGroup_clicked(self, a0): self.PrintCommand.setEnabled(a0) def scanButtonGroup_clicked(self, a0): self.ScanCommand.setEnabled(a0) def faxButtonGroup_clicked(self, a0): self.SendFaxCommand.setEnabled(a0) def pcardButtonGroup_clicked(self, a0): self.AccessPCardCommand.setEnabled(a0) def copyButtonGroup_clicked(self, a0): self.MakeCopiesCommand.setEnabled(a0) def __tr(self, s, c = None): return qApp.translate('SettingsDialog', s, c)