Adding in support for listing out each recipient, deletion from the list, and changin...
authorEd Page <eopage@byu.net>
Mon, 4 Oct 2010 18:23:46 +0000 (13:23 -0500)
committerEd Page <eopage@byu.net>
Mon, 4 Oct 2010 18:23:46 +0000 (13:23 -0500)
src/dialcentral_qt.py
src/session.py

index fae2fce..7de8926 100755 (executable)
@@ -8,6 +8,7 @@ import os
 import shutil
 import simplejson
 import re
+import functools
 import logging
 
 from PyQt4 import QtGui
@@ -253,11 +254,15 @@ class SMSEntryWindow(object):
                self._session.draft.cancelled.connect(self._on_op_finished)
                self._errorLog = errorLog
 
+               self._targetLayout = QtGui.QVBoxLayout()
+               self._targetList = QtGui.QWidget()
+               self._targetList.setLayout(self._targetLayout)
                self._history = QtGui.QTextEdit()
                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._history)
                self._entryLayout.addWidget(self._smsEntry)
                self._entryWidget = QtGui.QWidget()
@@ -315,44 +320,106 @@ class SMSEntryWindow(object):
                        self._smsButton.setEnabled(True)
 
        def _update_recipients(self):
-               draftContacts = len(self._session.draft.get_contacts())
-               if draftContacts == 0:
+               draftContactsCount = self._session.draft.get_num_contacts()
+               if draftContactsCount == 0:
                        self._window.hide()
-               elif draftContacts == 1:
-                       title, description, numbers = list(
-                               self._session.draft.get_contacts().itervalues()
-                       )[0]
+               elif draftContactsCount == 1:
+                       (cid, ) = 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)
+
+                       self._targetList.setVisible(False)
+                       if description:
+                               self._history.setHtml(description)
+                               self._history.setVisible(True)
+                       else:
+                               self._history.setHtml("")
+                               self._history.setVisible(False)
+                       self._populate_number_selector(self._singleNumberSelector, cid, numbers)
+
+                       self._scroll_to_bottom()
                        self._window.setWindowTitle(title)
-                       self._history.setHtml(description)
-                       self._history.setVisible(True)
-                       self._populate_number_selector(self._singleNumberSelector, numbers))
                        self._window.show()
                else:
-                       self._window.setWindowTitle("Contacts")
+                       self._targetList.setVisible(True)
+                       while self._targetLayout.count():
+                               removedLayoutItem = self._targetLayout.takeAt(self._targetLayout.count()-1)
+                               removedWidget = removedLayoutItem.widget()
+                               removedWidget.close()
+                       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__ = "b"
+                               deleteButton.clicked.connect(
+                                       QtCore.pyqtSlot()(callback)
+                               )
+
+                               rowLayout = QtGui.QHBoxLayout()
+                               rowLayout.addWidget(titleLabel)
+                               rowLayout.addWidget(numberSelector)
+                               rowLayout.addWidget(deleteButton)
+                               rowWidget = QtGui.QWidget()
+                               rowWidget.setLayout(rowLayout)
+                               self._targetLayout.addWidget(rowWidget)
                        self._history.setHtml("")
                        self._history.setVisible(False)
                        self._singleNumberSelector.setVisible(False)
+
+                       self._scroll_to_bottom()
+                       self._window.setWindowTitle("Contacts")
                        self._window.show()
 
-       def _populate_number_selector(self, selector, numbers):
+       def _populate_number_selector(self, selector, cid, numbers):
                while 0 < selector.count():
                        selector.removeItem(0)
                for number, description in numbers:
                        if description:
-                               label = "%s - %s" % number, description
+                               label = "%s - %s" % (number, description)
                        else:
                                label = number
-                       selector.addItem(label, numbers)
+                       selector.addItem(label)
                selector.setVisible(True)
                if 1 < len(numbers):
                        selector.setEnabled(True)
                else:
                        selector.setEnabled(False)
+               callback = functools.partial(
+                       self._on_change_number,
+                       cid
+               )
+               callback.__name__ = "b"
+               selector.currentIndexChanged.connect(
+                       QtCore.pyqtSlot(int)(callback)
+               )
+
+       def _scroll_to_bottom(self):
+               self._scrollEntry.ensureWidgetVisible(self._smsEntry)
+
+       @misc_utils.log_exception(_moduleLogger)
+       def _on_remove_contact(self, cid):
+               self._session.draft.remove_contact(cid)
+
+       @misc_utils.log_exception(_moduleLogger)
+       def _on_change_number(self, cid, index):
+               numbers = self._session.draft.get_numbers(cid)
+               number = numbers[index][0]
+               self._session.draft.set_selected_number(cid, number)
 
        @QtCore.pyqtSlot()
        @misc_utils.log_exception(_moduleLogger)
        def _on_recipients_changed(self):
-               self._populate_recipients()
+               self._update_recipients()
 
        @QtCore.pyqtSlot()
        @misc_utils.log_exception(_moduleLogger)
@@ -1176,7 +1243,7 @@ class MainWindow(object):
        @QtCore.pyqtSlot()
        @misc_utils.log_exception(_moduleLogger)
        def _on_recipients_changed(self):
-               if len(self._session.draft.get_contacts()) == 0:
+               if self._session.draft.get_num_contacts() == 0:
                        return
 
                if self._smsEntryDialog is None:
index 1bbe04c..afebf93 100644 (file)
@@ -13,6 +13,15 @@ from backends import gv_backend
 _moduleLogger = logging.getLogger(__name__)
 
 
+class _DraftContact(object):
+
+       def __init__(self, title, description, numbersWithDescriptions):
+               self.title = title
+               self.description = description
+               self.numbers = numbersWithDescriptions
+               self.selectedNumber = numbersWithDescriptions[0][0]
+
+
 class Draft(QtCore.QObject):
 
        sendingMessage = QtCore.pyqtSignal()
@@ -46,7 +55,7 @@ class Draft(QtCore.QObject):
 
        def add_contact(self, contactId, title, description, numbersWithDescriptions):
                assert contactId not in self._contacts
-               contactDetails = title, description, numbersWithDescriptions
+               contactDetails = _DraftContact(title, description, numbersWithDescriptions)
                self._contacts[contactId] = contactDetails
                self.recipientsChanged.emit()
 
@@ -56,7 +65,27 @@ class Draft(QtCore.QObject):
                self.recipientsChanged.emit()
 
        def get_contacts(self):
-               return self._contacts
+               return self._contacts.iterkeys()
+
+       def get_num_contacts(self):
+               return len(self._contacts)
+
+       def get_title(self, cid):
+               return self._contacts[cid].title
+
+       def get_description(self, cid):
+               return self._contacts[cid].description
+
+       def get_numbers(self, cid):
+               return self._contacts[cid].numbers
+
+       def get_selected_number(self, cid):
+               return self._contacts[cid].selectedNumber
+
+       def set_selected_number(self, cid, number):
+               # @note I'm lazy, this isn't firing any kind of signal since only one
+               # controller right now and that is the viewer
+               return self._contacts[cid].numbers
 
        def clear(self):
                oldContacts = self._contacts