X-Git-Url: http://git.maemo.org/git/?p=gc-dialer;a=blobdiff_plain;f=src%2Fdialogs.py;h=2feb6a2052da504ceb3a124231e4876c60849ddc;hp=f683307ab2d0d7d52fc5d45e23685b06da6e4097;hb=683365e09c5f84849626c2b94793bd7f9de820f1;hpb=d994950bb99d93e52464bcdde71a3be547d11aef diff --git a/src/dialogs.py b/src/dialogs.py index f683307..2feb6a2 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -11,6 +11,7 @@ from PyQt4 import QtGui from PyQt4 import QtCore import constants +from util import qwrappers from util import qui_utils from util import misc as misc_utils @@ -21,6 +22,7 @@ _moduleLogger = logging.getLogger(__name__) class CredentialsDialog(object): def __init__(self, app): + self._app = app self._usernameField = QtGui.QLineEdit() self._passwordField = QtGui.QLineEdit() self._passwordField.setEchoMode(QtGui.QLineEdit.Password) @@ -65,25 +67,31 @@ class CredentialsDialog(object): if response == QtGui.QDialog.Accepted: return str(self._usernameField.text()), str(self._passwordField.text()) elif response == QtGui.QDialog.Rejected: - raise RuntimeError("Login Cancelled") + return None else: - raise RuntimeError("Unknown Response") + _moduleLogger.error("Unknown response") + return None finally: self._dialog.setParent(None, QtCore.Qt.Dialog) def close(self): - self._dialog.reject() + try: + self._dialog.reject() + except RuntimeError: + _moduleLogger.exception("Oh well") @QtCore.pyqtSlot() @QtCore.pyqtSlot(bool) @misc_utils.log_exception(_moduleLogger) def _on_close_window(self, checked = True): - self._dialog.reject() + with qui_utils.notify_error(self._app.errorLog): + self._dialog.reject() class AboutDialog(object): def __init__(self, app): + self._app = app self._title = QtGui.QLabel( "

%s

Version: %s

" % ( constants.__pretty_app_name__, constants.__version__ @@ -128,13 +136,17 @@ class AboutDialog(object): return response def close(self): - self._dialog.reject() + try: + self._dialog.reject() + except RuntimeError: + _moduleLogger.exception("Oh well") @QtCore.pyqtSlot() @QtCore.pyqtSlot(bool) @misc_utils.log_exception(_moduleLogger) def _on_close_window(self, checked = True): - self._dialog.reject() + with qui_utils.notify_error(self._app.errorLog): + self._dialog.reject() class AccountDialog(object): @@ -157,12 +169,21 @@ class AccountDialog(object): (12*60, "12 hours"), ] + ALARM_NONE = "No Alert" + ALARM_BACKGROUND = "Background Alert" + ALARM_APPLICATION = "Application Alert" + + VOICEMAIL_CHECK_NOT_SUPPORTED = "Not Supported" + VOICEMAIL_CHECK_DISABLED = "Disabled" + VOICEMAIL_CHECK_ENABLED = "Enabled" + def __init__(self, app): + self._app = app self._doClear = False self._accountNumberLabel = QtGui.QLabel("NUMBER NOT SET") - self._notificationButton = QtGui.QCheckBox("Notifications") - self._notificationButton.stateChanged.connect(self._on_notification_change) + self._notificationSelecter = QtGui.QComboBox() + self._notificationSelecter.currentIndexChanged.connect(self._on_notification_change) self._notificationTimeSelector = QtGui.QComboBox() #self._notificationTimeSelector.setEditable(True) self._notificationTimeSelector.setInsertPolicy(QtGui.QComboBox.InsertAtTop) @@ -171,6 +192,7 @@ class AccountDialog(object): self._missedCallsNotificationButton = QtGui.QCheckBox("Missed Calls") self._voicemailNotificationButton = QtGui.QCheckBox("Voicemail") self._smsNotificationButton = QtGui.QCheckBox("SMS") + self._voicemailOnMissedButton = QtGui.QCheckBox("Voicemail Update on Missed Calls") self._clearButton = QtGui.QPushButton("Clear Account") self._clearButton.clicked.connect(self._on_clear) self._callbackSelector = QtGui.QComboBox() @@ -184,7 +206,7 @@ class AccountDialog(object): self._credLayout.addWidget(self._accountNumberLabel, 0, 1) self._credLayout.addWidget(QtGui.QLabel("Callback"), 1, 0) self._credLayout.addWidget(self._callbackSelector, 1, 1) - self._credLayout.addWidget(self._notificationButton, 2, 0) + self._credLayout.addWidget(self._notificationSelecter, 2, 0) self._credLayout.addWidget(self._notificationTimeSelector, 2, 1) self._credLayout.addWidget(QtGui.QLabel(""), 3, 0) self._credLayout.addWidget(self._missedCallsNotificationButton, 3, 1) @@ -192,17 +214,26 @@ class AccountDialog(object): self._credLayout.addWidget(self._voicemailNotificationButton, 4, 1) self._credLayout.addWidget(QtGui.QLabel(""), 5, 0) self._credLayout.addWidget(self._smsNotificationButton, 5, 1) - - self._credLayout.addWidget(QtGui.QLabel(""), 6, 0) - self._credLayout.addWidget(self._clearButton, 6, 1) - self._credLayout.addWidget(QtGui.QLabel(""), 3, 0) + self._credLayout.addWidget(QtGui.QLabel("Other"), 6, 0) + self._credLayout.addWidget(self._voicemailOnMissedButton, 6, 1) + + self._credLayout.addWidget(QtGui.QLabel(""), 7, 0) + self._credLayout.addWidget(self._clearButton, 7, 1) + self._credWidget = QtGui.QWidget() + self._credWidget.setLayout(self._credLayout) + self._credWidget.setContentsMargins(0, 0, 0, 0) + self._scrollSettings = QtGui.QScrollArea() + self._scrollSettings.setWidget(self._credWidget) + self._scrollSettings.setWidgetResizable(True) + self._scrollSettings.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAsNeeded) + self._scrollSettings.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) self._loginButton = QtGui.QPushButton("&Apply") self._buttonLayout = QtGui.QDialogButtonBox(QtGui.QDialogButtonBox.Cancel) self._buttonLayout.addButton(self._loginButton, QtGui.QDialogButtonBox.AcceptRole) self._layout = QtGui.QVBoxLayout() - self._layout.addLayout(self._credLayout) + self._layout.addWidget(self._scrollSettings) self._layout.addWidget(self._buttonLayout) self._dialog = QtGui.QDialog() @@ -226,26 +257,57 @@ class AccountDialog(object): def setIfNotificationsSupported(self, isSupported): if isSupported: - self._notificationButton.setVisible(True) - self._notificationTimeSelector.setVisible(True) - self._missedCallsNotificationButton.setVisible(True) - self._voicemailNotificationButton.setVisible(True) - self._smsNotificationButton.setVisible(True) + self._notificationSelecter.clear() + self._notificationSelecter.addItems([self.ALARM_NONE, self.ALARM_APPLICATION, self.ALARM_BACKGROUND]) + self._notificationTimeSelector.setEnabled(False) + self._missedCallsNotificationButton.setEnabled(False) + self._voicemailNotificationButton.setEnabled(False) + self._smsNotificationButton.setEnabled(False) else: - self._notificationButton.setVisible(False) - self._notificationTimeSelector.setVisible(False) - self._missedCallsNotificationButton.setVisible(False) - self._voicemailNotificationButton.setVisible(False) - self._smsNotificationButton.setVisible(False) - - accountNumber = property( - lambda self: str(self._accountNumberLabel.text()), - lambda self, num: self._accountNumberLabel.setText(num), - ) + self._notificationSelecter.clear() + self._notificationSelecter.addItems([self.ALARM_NONE, self.ALARM_APPLICATION]) + self._notificationTimeSelector.setEnabled(False) + self._missedCallsNotificationButton.setEnabled(False) + self._voicemailNotificationButton.setEnabled(False) + self._smsNotificationButton.setEnabled(False) + + def set_account_number(self, num): + self._accountNumberLabel.setText(num) + + def _set_voicemail_on_missed(self, status): + if status == self.VOICEMAIL_CHECK_NOT_SUPPORTED: + self._voicemailOnMissedButton.setChecked(False) + self._voicemailOnMissedButton.hide() + elif status == self.VOICEMAIL_CHECK_DISABLED: + self._voicemailOnMissedButton.setChecked(False) + self._voicemailOnMissedButton.show() + elif status == self.VOICEMAIL_CHECK_ENABLED: + self._voicemailOnMissedButton.setChecked(True) + self._voicemailOnMissedButton.show() + else: + raise RuntimeError("Unsupported option for updating voicemail on missed calls %r" % status) + + def _get_voicemail_on_missed(self): + if not self._voicemailOnMissedButton.isVisible(): + return self.VOICEMAIL_CHECK_NOT_SUPPORTED + elif self._voicemailOnMissedButton.isChecked(): + return self.VOICEMAIL_CHECK_ENABLED + else: + return self.VOICEMAIL_CHECK_DISABLED + + updateVMOnMissedCall = property(_get_voicemail_on_missed, _set_voicemail_on_missed) + + def _set_notifications(self, enabled): + for i in xrange(self._notificationSelecter.count()): + if self._notificationSelecter.itemText(i) == enabled: + self._notificationSelecter.setCurrentIndex(i) + break + else: + self._notificationSelecter.setCurrentIndex(0) notifications = property( - lambda self: self._notificationButton.isChecked(), - lambda self, enabled: self._notificationButton.setChecked(enabled), + lambda self: str(self._notificationSelecter.currentText()), + _set_notifications, ) notifyOnMissed = property( @@ -271,10 +333,10 @@ class AccountDialog(object): def _set_notification_time(self, minutes): for i, (time, _) in enumerate(self._RECURRENCE_CHOICES): if time == minutes: - self._callbackSelector.setCurrentIndex(i) + self._notificationTimeSelector.setCurrentIndex(i) break else: - self._callbackSelector.setCurrentIndex(0) + self._notificationTimeSelector.setCurrentIndex(0) notificationTime = property(_get_notification_time, _set_notification_time) @@ -308,46 +370,426 @@ class AccountDialog(object): return response def close(self): - self._dialog.reject() + try: + self._dialog.reject() + except RuntimeError: + _moduleLogger.exception("Oh well") def _update_notification_state(self): - if self._notificationButton.isChecked(): + currentText = str(self._notificationSelecter.currentText()) + if currentText == self.ALARM_BACKGROUND: self._notificationTimeSelector.setEnabled(True) + self._missedCallsNotificationButton.setEnabled(True) self._voicemailNotificationButton.setEnabled(True) self._smsNotificationButton.setEnabled(True) + elif currentText == self.ALARM_APPLICATION: + self._notificationTimeSelector.setEnabled(True) + + self._missedCallsNotificationButton.setEnabled(False) + self._voicemailNotificationButton.setEnabled(True) + self._smsNotificationButton.setEnabled(True) + + self._missedCallsNotificationButton.setChecked(False) else: self._notificationTimeSelector.setEnabled(False) + self._missedCallsNotificationButton.setEnabled(False) self._voicemailNotificationButton.setEnabled(False) self._smsNotificationButton.setEnabled(False) + self._missedCallsNotificationButton.setChecked(False) + self._voicemailNotificationButton.setChecked(False) + self._smsNotificationButton.setChecked(False) + @QtCore.pyqtSlot(int) @misc_utils.log_exception(_moduleLogger) - def _on_notification_change(self, state): - self._update_notification_state() + def _on_notification_change(self, index): + with qui_utils.notify_error(self._app.errorLog): + self._update_notification_state() @QtCore.pyqtSlot() @QtCore.pyqtSlot(bool) @misc_utils.log_exception(_moduleLogger) def _on_clear(self, checked = False): - self._doClear = True - self._dialog.accept() + with qui_utils.notify_error(self._app.errorLog): + self._doClear = True + self._dialog.accept() @QtCore.pyqtSlot() @QtCore.pyqtSlot(bool) @misc_utils.log_exception(_moduleLogger) def _on_close_window(self, checked = True): - self._dialog.reject() + with qui_utils.notify_error(self._app.errorLog): + self._dialog.reject() + + +class ContactList(object): + + _SENTINEL_ICON = QtGui.QIcon() + + def __init__(self, app, session): + self._app = app + self._session = session + self._targetLayout = QtGui.QVBoxLayout() + self._targetList = QtGui.QWidget() + self._targetList.setLayout(self._targetLayout) + self._uiItems = [] + self._closeIcon = qui_utils.get_theme_icon(("window-close", "general_close", "gtk-close"), self._SENTINEL_ICON) + + @property + def toplevel(self): + return self._targetList + + def setVisible(self, isVisible): + self._targetList.setVisible(isVisible) + + def update(self): + cids = list(self._session.draft.get_contacts()) + amountCommon = min(len(cids), len(self._uiItems)) + + # Run through everything in common + for i in xrange(0, amountCommon): + cid = cids[i] + uiItem = self._uiItems[i] + title = self._session.draft.get_title(cid) + description = self._session.draft.get_description(cid) + numbers = self._session.draft.get_numbers(cid) + uiItem["cid"] = cid + uiItem["title"] = title + uiItem["description"] = description + uiItem["numbers"] = numbers + uiItem["label"].setText(title) + self._populate_number_selector(uiItem["selector"], cid, i, numbers) + uiItem["rowWidget"].setVisible(True) + + # More contacts than ui items + for i in xrange(amountCommon, len(cids)): + cid = cids[i] + title = self._session.draft.get_title(cid) + description = self._session.draft.get_description(cid) + numbers = self._session.draft.get_numbers(cid) + + titleLabel = QtGui.QLabel(title) + titleLabel.setWordWrap(True) + numberSelector = QtGui.QComboBox() + self._populate_number_selector(numberSelector, cid, i, numbers) + + callback = functools.partial( + self._on_change_number, + i + ) + callback.__name__ = "thanks partials for not having names and pyqt for requiring them" + numberSelector.activated.connect( + QtCore.pyqtSlot(int)(callback) + ) + + if self._closeIcon is self._SENTINEL_ICON: + deleteButton = QtGui.QPushButton("Delete") + else: + deleteButton = QtGui.QPushButton(self._closeIcon, "") + deleteButton.setSizePolicy(QtGui.QSizePolicy( + QtGui.QSizePolicy.Minimum, + QtGui.QSizePolicy.Minimum, + QtGui.QSizePolicy.PushButton, + )) + callback = functools.partial( + self._on_remove_contact, + i + ) + callback.__name__ = "thanks partials for not having names and pyqt for requiring them" + deleteButton.clicked.connect(callback) + + rowLayout = QtGui.QHBoxLayout() + rowLayout.addWidget(titleLabel, 1000) + rowLayout.addWidget(numberSelector, 0) + rowLayout.addWidget(deleteButton, 0) + rowWidget = QtGui.QWidget() + rowWidget.setLayout(rowLayout) + self._targetLayout.addWidget(rowWidget) + + uiItem = {} + uiItem["cid"] = cid + uiItem["title"] = title + uiItem["description"] = description + uiItem["numbers"] = numbers + uiItem["label"] = titleLabel + uiItem["selector"] = numberSelector + uiItem["rowWidget"] = rowWidget + self._uiItems.append(uiItem) + amountCommon = i+1 + + # More UI items than contacts + for i in xrange(amountCommon, len(self._uiItems)): + uiItem = self._uiItems[i] + uiItem["rowWidget"].setVisible(False) + amountCommon = i+1 + + def _populate_number_selector(self, selector, cid, cidIndex, numbers): + selector.clear() + + selectedNumber = self._session.draft.get_selected_number(cid) + if len(numbers) == 1: + # If no alt numbers available, check the address book + numbers, defaultIndex = _get_contact_numbers(self._session, cid, selectedNumber, numbers[0][1]) + else: + defaultIndex = _index_number(numbers, selectedNumber) + + for number, description in numbers: + if description: + label = "%s - %s" % (number, description) + else: + label = number + selector.addItem(label) + selector.setVisible(True) + if 1 < len(numbers): + selector.setEnabled(True) + selector.setCurrentIndex(defaultIndex) + else: + selector.setEnabled(False) + + @misc_utils.log_exception(_moduleLogger) + def _on_change_number(self, cidIndex, index): + with qui_utils.notify_error(self._app.errorLog): + # Exception thrown when the first item is removed + try: + cid = self._uiItems[cidIndex]["cid"] + numbers = self._session.draft.get_numbers(cid) + except IndexError: + _moduleLogger.error("Contact no longer available (or bizarre error): %r (%r)" % (cid, index)) + return + except KeyError: + _moduleLogger.error("Contact no longer available (or bizarre error): %r (%r)" % (cid, index)) + return + number = numbers[index][0] + self._session.draft.set_selected_number(cid, number) + + @misc_utils.log_exception(_moduleLogger) + def _on_remove_contact(self, index, toggled): + with qui_utils.notify_error(self._app.errorLog): + self._session.draft.remove_contact(self._uiItems[index]["cid"]) + + +class VoicemailPlayer(object): + + def __init__(self, app, session, errorLog): + self._app = app + self._session = session + self._errorLog = errorLog + self._token = None + self._session.voicemailAvailable.connect(self._on_voicemail_downloaded) + self._session.draft.recipientsChanged.connect(self._on_recipients_changed) + + self._playButton = QtGui.QPushButton("Play") + self._playButton.clicked.connect(self._on_voicemail_play) + self._pauseButton = QtGui.QPushButton("Pause") + self._pauseButton.clicked.connect(self._on_voicemail_pause) + self._pauseButton.hide() + self._resumeButton = QtGui.QPushButton("Resume") + self._resumeButton.clicked.connect(self._on_voicemail_resume) + self._resumeButton.hide() + self._stopButton = QtGui.QPushButton("Stop") + self._stopButton.clicked.connect(self._on_voicemail_stop) + self._stopButton.hide() + + self._downloadButton = QtGui.QPushButton("Download Voicemail") + self._downloadButton.clicked.connect(self._on_voicemail_download) + self._downloadLayout = QtGui.QHBoxLayout() + self._downloadLayout.addWidget(self._downloadButton) + self._downloadWidget = QtGui.QWidget() + self._downloadWidget.setLayout(self._downloadLayout) + + self._playLabel = QtGui.QLabel("Voicemail") + self._saveButton = QtGui.QPushButton("Save") + self._saveButton.clicked.connect(self._on_voicemail_save) + self._playerLayout = QtGui.QHBoxLayout() + self._playerLayout.addWidget(self._playLabel) + self._playerLayout.addWidget(self._playButton) + self._playerLayout.addWidget(self._pauseButton) + self._playerLayout.addWidget(self._resumeButton) + self._playerLayout.addWidget(self._stopButton) + self._playerLayout.addWidget(self._saveButton) + self._playerWidget = QtGui.QWidget() + self._playerWidget.setLayout(self._playerLayout) + + self._visibleWidget = None + self._layout = QtGui.QHBoxLayout() + self._layout.setContentsMargins(0, 0, 0, 0) + self._widget = QtGui.QWidget() + self._widget.setLayout(self._layout) + self._update_state() + + @property + def toplevel(self): + return self._widget + + def destroy(self): + self._session.voicemailAvailable.disconnect(self._on_voicemail_downloaded) + self._session.draft.recipientsChanged.disconnect(self._on_recipients_changed) + self._invalidate_token() + + def _invalidate_token(self): + if self._token is not None: + self._token.invalidate() + self._token.error.disconnect(self._on_play_error) + self._token.stateChange.connect(self._on_play_state) + self._token.invalidated.connect(self._on_play_invalidated) + + def _show_download(self, messageId): + if self._visibleWidget is self._downloadWidget: + return + self._hide() + self._layout.addWidget(self._downloadWidget) + self._visibleWidget = self._downloadWidget + self._visibleWidget.show() + + def _show_player(self, messageId): + if self._visibleWidget is self._playerWidget: + return + self._hide() + self._layout.addWidget(self._playerWidget) + self._visibleWidget = self._playerWidget + self._visibleWidget.show() + + def _hide(self): + if self._visibleWidget is None: + return + self._visibleWidget.hide() + self._layout.removeWidget(self._visibleWidget) + self._visibleWidget = None + + def _update_play_state(self): + if self._token is not None and self._token.isValid: + self._playButton.setText("Stop") + else: + self._playButton.setText("Play") + + def _update_state(self): + if self._session.draft.get_num_contacts() != 1: + self._hide() + return + + (cid, ) = self._session.draft.get_contacts() + messageId = self._session.draft.get_message_id(cid) + if messageId is None: + self._hide() + return + + if self._session.is_available(messageId): + self._show_player(messageId) + else: + self._show_download(messageId) + if self._token is not None: + self._token.invalidate() + @misc_utils.log_exception(_moduleLogger) + def _on_voicemail_save(self, arg): + with qui_utils.notify_error(self._app.errorLog): + targetPath = QtGui.QFileDialog.getSaveFileName(None, caption="Save Voicemail", filter="Audio File (*.mp3)") + targetPath = unicode(targetPath) + if not targetPath: + return -class SMSEntryWindow(object): + (cid, ) = self._session.draft.get_contacts() + messageId = self._session.draft.get_message_id(cid) + sourcePath = self._session.voicemail_path(messageId) + import shutil + shutil.copy2(sourcePath, targetPath) + + @misc_utils.log_exception(_moduleLogger) + def _on_play_error(self, error): + with qui_utils.notify_error(self._app.errorLog): + self._app.errorLog.push_error(error) + + @misc_utils.log_exception(_moduleLogger) + def _on_play_invalidated(self): + with qui_utils.notify_error(self._app.errorLog): + self._playButton.show() + self._pauseButton.hide() + self._resumeButton.hide() + self._stopButton.hide() + self._invalidate_token() + + @misc_utils.log_exception(_moduleLogger) + def _on_play_state(self, state): + with qui_utils.notify_error(self._app.errorLog): + if state == self._token.STATE_PLAY: + self._playButton.hide() + self._pauseButton.show() + self._resumeButton.hide() + self._stopButton.show() + elif state == self._token.STATE_PAUSE: + self._playButton.hide() + self._pauseButton.hide() + self._resumeButton.show() + self._stopButton.show() + elif state == self._token.STATE_STOP: + self._playButton.show() + self._pauseButton.hide() + self._resumeButton.hide() + self._stopButton.hide() + + @misc_utils.log_exception(_moduleLogger) + def _on_voicemail_play(self, arg): + with qui_utils.notify_error(self._app.errorLog): + (cid, ) = self._session.draft.get_contacts() + messageId = self._session.draft.get_message_id(cid) + sourcePath = self._session.voicemail_path(messageId) + + self._invalidate_token() + uri = "file://%s" % sourcePath + self._token = self._app.streamHandler.set_file(uri) + self._token.stateChange.connect(self._on_play_state) + self._token.invalidated.connect(self._on_play_invalidated) + self._token.error.connect(self._on_play_error) + self._token.play() + + @misc_utils.log_exception(_moduleLogger) + def _on_voicemail_pause(self, arg): + with qui_utils.notify_error(self._app.errorLog): + self._token.pause() + + @misc_utils.log_exception(_moduleLogger) + def _on_voicemail_resume(self, arg): + with qui_utils.notify_error(self._app.errorLog): + self._token.play() + + @misc_utils.log_exception(_moduleLogger) + def _on_voicemail_stop(self, arg): + with qui_utils.notify_error(self._app.errorLog): + self._token.stop() + + @misc_utils.log_exception(_moduleLogger) + def _on_voicemail_download(self, arg): + with qui_utils.notify_error(self._app.errorLog): + (cid, ) = self._session.draft.get_contacts() + messageId = self._session.draft.get_message_id(cid) + self._session.download_voicemail(messageId) + self._hide() + + @QtCore.pyqtSlot() + @misc_utils.log_exception(_moduleLogger) + def _on_recipients_changed(self): + with qui_utils.notify_error(self._app.errorLog): + self._update_state() + + @QtCore.pyqtSlot(str, str) + @misc_utils.log_exception(_moduleLogger) + def _on_voicemail_downloaded(self, messageId, filepath): + with qui_utils.notify_error(self._app.errorLog): + self._update_state() + + +class SMSEntryWindow(qwrappers.WindowWrapper): MAX_CHAR = 160 + # @bug Somehow a window is being destroyed on object creation which causes glitches on Maemo 5 def __init__(self, parent, app, session, errorLog): - self._app = app + qwrappers.WindowWrapper.__init__(self, parent, app) self._session = session + self._session.messagesUpdated.connect(self._on_refresh_history) + self._session.historyUpdated.connect(self._on_refresh_history) self._session.draft.recipientsChanged.connect(self._on_recipients_changed) self._session.draft.sendingMessage.connect(self._on_op_started) @@ -363,18 +805,18 @@ class SMSEntryWindow(object): self._errorDisplay = qui_utils.ErrorDisplay(self._errorLog) - self._targetLayout = QtGui.QVBoxLayout() - self._targetList = QtGui.QWidget() - self._targetList.setLayout(self._targetLayout) + self._targetList = ContactList(self._app, self._session) self._history = QtGui.QLabel() self._history.setTextFormat(QtCore.Qt.RichText) self._history.setWordWrap(True) + self._voicemailPlayer = VoicemailPlayer(self._app, self._session, self._errorLog) self._smsEntry = QtGui.QTextEdit() self._smsEntry.textChanged.connect(self._on_letter_count_changed) self._entryLayout = QtGui.QVBoxLayout() - self._entryLayout.addWidget(self._targetList) + self._entryLayout.addWidget(self._targetList.toplevel) self._entryLayout.addWidget(self._history) + self._entryLayout.addWidget(self._voicemailPlayer.toplevel, 0) self._entryLayout.addWidget(self._smsEntry) self._entryLayout.setContentsMargins(0, 0, 0, 0) self._entryWidget = QtGui.QWidget() @@ -389,7 +831,7 @@ class SMSEntryWindow(object): self._characterCountLabel = QtGui.QLabel("") self._singleNumberSelector = QtGui.QComboBox() - self._singleNumbersCID = None + self._cids = [] self._singleNumberSelector.activated.connect(self._on_single_change_number) self._smsButton = QtGui.QPushButton("SMS") self._smsButton.clicked.connect(self._on_sms_clicked) @@ -407,50 +849,67 @@ class SMSEntryWindow(object): self._buttonLayout.addWidget(self._dialButton) self._buttonLayout.addWidget(self._cancelButton) - self._layout = QtGui.QVBoxLayout() self._layout.addWidget(self._errorDisplay.toplevel) self._layout.addWidget(self._scrollEntry) self._layout.addLayout(self._buttonLayout) + self._layout.setDirection(QtGui.QBoxLayout.TopToBottom) - centralWidget = QtGui.QWidget() - centralWidget.setLayout(self._layout) - - self._window = QtGui.QMainWindow(parent) - qui_utils.set_window_orientation(self._window, QtCore.Qt.Horizontal) - qui_utils.set_stackable(self._window, True) self._window.setWindowTitle("Contact") - self._window.setCentralWidget(centralWidget) - self._window.addAction(self._app.orientationAction) - - self._closeWindowAction = QtGui.QAction(None) - self._closeWindowAction.setText("Close") - self._closeWindowAction.setShortcut(QtGui.QKeySequence("CTRL+w")) - self._closeWindowAction.triggered.connect(self._on_close_window) - - fileMenu = self._window.menuBar().addMenu("&File") - fileMenu.addAction(self._closeWindowAction) - fileMenu.addAction(app.quitAction) - viewMenu = self._window.menuBar().addMenu("&View") - viewMenu.addAction(app.fullscreenAction) + self._window.closed.connect(self._on_close_window) + self._window.hidden.connect(self._on_close_window) + self._window.resized.connect(self._on_window_resized) self._scrollTimer = QtCore.QTimer() - self._scrollTimer.setInterval(0) + self._scrollTimer.setInterval(100) self._scrollTimer.setSingleShot(True) self._scrollTimer.timeout.connect(self._on_delayed_scroll_to_bottom) - self._window.show() + self._smsEntry.setPlainText(self._session.draft.message) self._update_letter_count() self._update_target_fields() + self.set_fullscreen(self._app.fullscreenAction.isChecked()) + self.set_orientation(self._app.orientationAction.isChecked()) def close(self): - self._window.destroy() + if self._window is None: + # Already closed + return + window = self._window + try: + message = unicode(self._smsEntry.toPlainText()) + self._session.draft.message = message + self.hide() + except AttributeError: + _moduleLogger.exception("Oh well") + except RuntimeError: + _moduleLogger.exception("Oh well") + + def destroy(self): + self._session.messagesUpdated.disconnect(self._on_refresh_history) + self._session.historyUpdated.disconnect(self._on_refresh_history) + self._session.draft.recipientsChanged.disconnect(self._on_recipients_changed) + self._session.draft.sendingMessage.disconnect(self._on_op_started) + self._session.draft.calling.disconnect(self._on_op_started) + self._session.draft.calling.disconnect(self._on_calling_started) + self._session.draft.cancelling.disconnect(self._on_op_started) + self._session.draft.sentMessage.disconnect(self._on_op_finished) + self._session.draft.called.disconnect(self._on_op_finished) + self._session.draft.cancelled.disconnect(self._on_op_finished) + self._session.draft.error.disconnect(self._on_op_error) + self._voicemailPlayer.destroy() + window = self._window self._window = None + try: + window.close() + window.destroy() + except AttributeError: + _moduleLogger.exception("Oh well") + except RuntimeError: + _moduleLogger.exception("Oh well") def set_orientation(self, isPortrait): - if isPortrait: - qui_utils.set_window_orientation(self._window, QtCore.Qt.Vertical) - else: - qui_utils.set_window_orientation(self._window, QtCore.Qt.Horizontal) + qwrappers.WindowWrapper.set_orientation(self, isPortrait) + self._scroll_to_bottom() def _update_letter_count(self): count = self._smsEntry.toPlainText().size() @@ -480,84 +939,63 @@ class SMSEntryWindow(object): else: self._smsButton.setEnabled(True) - def _update_target_fields(self): + def _update_history(self, cid): draftContactsCount = self._session.draft.get_num_contacts() - if draftContactsCount == 0: - self._clear_target_list() - self._window.hide() - self._singleNumbersCID = None - elif draftContactsCount == 1: - (cid, ) = self._session.draft.get_contacts() - title = self._session.draft.get_title(cid) + if draftContactsCount != 1: + self._history.setVisible(False) + else: description = self._session.draft.get_description(cid) - numbers = self._session.draft.get_numbers(cid) self._targetList.setVisible(False) - self._clear_target_list() if description: self._history.setText(description) self._history.setVisible(True) else: self._history.setText("") self._history.setVisible(False) - self._populate_number_selector(self._singleNumberSelector, cid, numbers) - self._singleNumbersCID = None + + def _update_target_fields(self): + draftContactsCount = self._session.draft.get_num_contacts() + if draftContactsCount == 0: + self.hide() + del self._cids[:] + elif draftContactsCount == 1: + (cid, ) = self._session.draft.get_contacts() + title = self._session.draft.get_title(cid) + numbers = self._session.draft.get_numbers(cid) + + self._targetList.setVisible(False) + self._update_history(cid) + self._populate_number_selector(self._singleNumberSelector, cid, 0, numbers) + self._cids = [cid] self._scroll_to_bottom() self._window.setWindowTitle(title) - self._window.show() self._smsEntry.setFocus(QtCore.Qt.OtherFocusReason) + self.show() + self._window.raise_() else: self._targetList.setVisible(True) - self._clear_target_list() - for cid in self._session.draft.get_contacts(): - title = self._session.draft.get_title(cid) - description = self._session.draft.get_description(cid) - numbers = self._session.draft.get_numbers(cid) - - titleLabel = QtGui.QLabel(title) - numberSelector = QtGui.QComboBox() - self._populate_number_selector(numberSelector, cid, numbers) - deleteButton = QtGui.QPushButton("Delete") - callback = functools.partial( - self._on_remove_contact, - cid - ) - callback.__name__ = "thanks partials for not having names and pyqt for requiring them" - deleteButton.clicked.connect(callback) - - rowLayout = QtGui.QHBoxLayout() - rowLayout.addWidget(titleLabel) - rowLayout.addWidget(numberSelector) - rowLayout.addWidget(deleteButton) - rowWidget = QtGui.QWidget() - rowWidget.setLayout(rowLayout) - self._targetLayout.addWidget(rowWidget) + self._targetList.update() self._history.setText("") self._history.setVisible(False) self._singleNumberSelector.setVisible(False) - self._singleNumbersCID = None self._scroll_to_bottom() self._window.setWindowTitle("Contacts") - self._window.show() self._smsEntry.setFocus(QtCore.Qt.OtherFocusReason) + self.show() + self._window.raise_() - def _clear_target_list(self): - while self._targetLayout.count(): - removedLayoutItem = self._targetLayout.takeAt(self._targetLayout.count()-1) - removedWidget = removedLayoutItem.widget() - removedWidget.hide() - removedWidget.setAttribute(QtCore.Qt.WA_DeleteOnClose, True) - removedWidget.close() - - def _populate_number_selector(self, selector, cid, numbers): + def _populate_number_selector(self, selector, cid, cidIndex, numbers): selector.clear() + selectedNumber = self._session.draft.get_selected_number(cid) if len(numbers) == 1: - numbers, defaultIndex = _get_contact_numbers(self._session, cid, numbers[0]) + # If no alt numbers available, check the address book + numbers, defaultIndex = _get_contact_numbers(self._session, cid, selectedNumber, numbers[0][1]) else: - defaultIndex = 0 + defaultIndex = _index_number(numbers, selectedNumber) for number, description in numbers: if description: @@ -572,120 +1010,147 @@ class SMSEntryWindow(object): else: selector.setEnabled(False) - if selector is not self._singleNumberSelector: - callback = functools.partial( - self._on_change_number, - cid - ) - callback.__name__ = "thanks partials for not having names and pyqt for requiring them" - selector.activated.connect( - QtCore.pyqtSlot(int)(callback) - ) - def _scroll_to_bottom(self): self._scrollTimer.start() @misc_utils.log_exception(_moduleLogger) def _on_delayed_scroll_to_bottom(self): - self._scrollEntry.ensureWidgetVisible(self._smsEntry) + with qui_utils.notify_error(self._app.errorLog): + self._scrollEntry.ensureWidgetVisible(self._smsEntry) @misc_utils.log_exception(_moduleLogger) def _on_sms_clicked(self, arg): - message = unicode(self._smsEntry.toPlainText()) - self._session.draft.send(message) + with qui_utils.notify_error(self._app.errorLog): + message = unicode(self._smsEntry.toPlainText()) + self._session.draft.message = message + self._session.draft.send() @misc_utils.log_exception(_moduleLogger) def _on_call_clicked(self, arg): - self._session.draft.call() + with qui_utils.notify_error(self._app.errorLog): + message = unicode(self._smsEntry.toPlainText()) + self._session.draft.message = message + self._session.draft.call() @QtCore.pyqtSlot() @misc_utils.log_exception(_moduleLogger) def _on_cancel_clicked(self, message): - self._session.draft.cancel() - - @misc_utils.log_exception(_moduleLogger) - def _on_remove_contact(self, cid, toggled): - self._session.draft.remove_contact(cid) + with qui_utils.notify_error(self._app.errorLog): + self._session.draft.cancel() @misc_utils.log_exception(_moduleLogger) def _on_single_change_number(self, index): - # Exception thrown when the first item is removed - cid = self._singleNumbersCID - if cid is None: - _moduleLogger.error("Number change occurred on the single selector when in multi-selector mode (%r)" % index) - return - try: - numbers = self._session.draft.get_numbers(cid) - except KeyError: - _moduleLogger.error("Contact no longer available (or bizarre error): %r (%r)" % (cid, index)) - return - number = numbers[index][0] - self._session.draft.set_selected_number(cid, number) + with qui_utils.notify_error(self._app.errorLog): + # Exception thrown when the first item is removed + cid = self._cids[0] + try: + numbers = self._session.draft.get_numbers(cid) + except KeyError: + _moduleLogger.error("Contact no longer available (or bizarre error): %r (%r)" % (cid, index)) + return + number = numbers[index][0] + self._session.draft.set_selected_number(cid, number) + @QtCore.pyqtSlot() @misc_utils.log_exception(_moduleLogger) - def _on_change_number(self, cid, index): - # Exception thrown when the first item is removed - try: - numbers = self._session.draft.get_numbers(cid) - except KeyError: - _moduleLogger.error("Contact no longer available (or bizarre error): %r (%r)" % (cid, index)) - return - number = numbers[index][0] - self._session.draft.set_selected_number(cid, number) + def _on_refresh_history(self): + with qui_utils.notify_error(self._app.errorLog): + draftContactsCount = self._session.draft.get_num_contacts() + if draftContactsCount != 1: + # Changing contact count will automatically refresh it + return + (cid, ) = self._session.draft.get_contacts() + self._update_history(cid) @QtCore.pyqtSlot() @misc_utils.log_exception(_moduleLogger) def _on_recipients_changed(self): - self._update_target_fields() - self._update_button_state() + with qui_utils.notify_error(self._app.errorLog): + self._update_target_fields() + self._update_button_state() @QtCore.pyqtSlot() @misc_utils.log_exception(_moduleLogger) def _on_op_started(self): - self._smsEntry.setReadOnly(True) - self._smsButton.setVisible(False) - self._dialButton.setVisible(False) - self._window.show() + with qui_utils.notify_error(self._app.errorLog): + self._smsEntry.setReadOnly(True) + self._smsButton.setVisible(False) + self._dialButton.setVisible(False) + self.show() @QtCore.pyqtSlot() @misc_utils.log_exception(_moduleLogger) def _on_calling_started(self): - self._cancelButton.setVisible(True) + with qui_utils.notify_error(self._app.errorLog): + self._cancelButton.setVisible(True) @QtCore.pyqtSlot() @misc_utils.log_exception(_moduleLogger) def _on_op_finished(self): - self._smsEntry.setPlainText("") - self._smsEntry.setReadOnly(False) - self._cancelButton.setVisible(False) - self._smsButton.setVisible(True) - self._dialButton.setVisible(True) - self._window.hide() + with qui_utils.notify_error(self._app.errorLog): + self._smsEntry.setPlainText("") + self._smsEntry.setReadOnly(False) + self._cancelButton.setVisible(False) + self._smsButton.setVisible(True) + self._dialButton.setVisible(True) + self.close() + self.destroy() @QtCore.pyqtSlot() @misc_utils.log_exception(_moduleLogger) def _on_op_error(self, message): - self._smsEntry.setReadOnly(False) - self._cancelButton.setVisible(False) - self._smsButton.setVisible(True) - self._dialButton.setVisible(True) + with qui_utils.notify_error(self._app.errorLog): + self._smsEntry.setReadOnly(False) + self._cancelButton.setVisible(False) + self._smsButton.setVisible(True) + self._dialButton.setVisible(True) - self._errorLog.push_error(message) + self._errorLog.push_error(message) @QtCore.pyqtSlot() @misc_utils.log_exception(_moduleLogger) def _on_letter_count_changed(self): - self._update_letter_count() - self._update_button_state() + with qui_utils.notify_error(self._app.errorLog): + self._update_letter_count() + self._update_button_state() + + @QtCore.pyqtSlot() + @misc_utils.log_exception(_moduleLogger) + def _on_window_resized(self, checked = True): + with qui_utils.notify_error(self._app.errorLog): + self._scroll_to_bottom() @QtCore.pyqtSlot() @QtCore.pyqtSlot(bool) @misc_utils.log_exception(_moduleLogger) def _on_close_window(self, checked = True): - self._window.hide() + with qui_utils.notify_error(self._app.errorLog): + self.close() + + +def _index_number(numbers, default): + uglyDefault = misc_utils.make_ugly(default) + uglyContactNumbers = list( + misc_utils.make_ugly(contactNumber) + for (contactNumber, _) in numbers + ) + defaultMatches = [ + misc_utils.similar_ugly_numbers(uglyDefault, contactNumber) + for contactNumber in uglyContactNumbers + ] + try: + defaultIndex = defaultMatches.index(True) + except ValueError: + defaultIndex = -1 + _moduleLogger.warn( + "Could not find contact number %s among %r" % ( + default, numbers + ) + ) + return defaultIndex -def _get_contact_numbers(session, contactId, numberDescription): +def _get_contact_numbers(session, contactId, number, description): contactPhoneNumbers = [] if contactId and contactId != "0": try: @@ -697,28 +1162,10 @@ def _get_contact_numbers(session, contactId, numberDescription): (contactPhoneNumber["phoneNumber"], contactPhoneNumber.get("phoneType", "Unknown")) for contactPhoneNumber in contactPhoneNumbers ] - if contactPhoneNumbers: - uglyContactNumbers = ( - misc_utils.make_ugly(contactNumber) - for (contactNumber, _) in contactPhoneNumbers - ) - defaultMatches = [ - misc_utils.similar_ugly_numbers(numberDescription[0], contactNumber) - for contactNumber in uglyContactNumbers - ] - try: - defaultIndex = defaultMatches.index(True) - except ValueError: - contactPhoneNumbers.append(numberDescription) - defaultIndex = len(contactPhoneNumbers)-1 - _moduleLogger.warn( - "Could not find contact %r's number %s among %r" % ( - contactId, numberDescription, contactPhoneNumbers - ) - ) - - if not contactPhoneNumbers: - contactPhoneNumbers = [numberDescription] - defaultIndex = -1 + defaultIndex = _index_number(contactPhoneNumbers, number) + + if not contactPhoneNumbers or defaultIndex == -1: + contactPhoneNumbers += [(number, description)] + defaultIndex = 0 return contactPhoneNumbers, defaultIndex