4bf128a1fbffd0257791f4e591c76a859dce05eb
[gc-dialer] / src / dialcentral_qt.py
1 #!/usr/bin/env python
2 # -*- coding: UTF8 -*-
3
4 from __future__ import with_statement
5
6 import os
7 import base64
8 import ConfigParser
9 import functools
10 import logging
11 import logging.handlers
12
13 import util.qt_compat as qt_compat
14 QtCore = qt_compat.QtCore
15 QtGui = qt_compat.import_module("QtGui")
16
17 import constants
18 import alarm_handler
19 from util import qtpie
20 from util import qwrappers
21 from util import qui_utils
22 from util import misc as misc_utils
23
24 import session
25
26
27 _moduleLogger = logging.getLogger(__name__)
28
29
30 class Dialcentral(qwrappers.ApplicationWrapper):
31
32         _DATA_PATHS = [
33                 os.path.join(os.path.dirname(__file__), "../share"),
34                 os.path.join(os.path.dirname(__file__), "../data"),
35         ]
36
37         def __init__(self, app):
38                 self._dataPath = None
39                 self._aboutDialog = None
40                 self.notifyOnMissed = False
41                 self.notifyOnVoicemail = False
42                 self.notifyOnSms = False
43
44                 self._streamHandler = None
45                 self._ledHandler = None
46                 self._alarmHandler = alarm_handler.AlarmHandler()
47
48                 qwrappers.ApplicationWrapper.__init__(self, app, constants)
49
50         def load_settings(self):
51                 try:
52                         config = ConfigParser.SafeConfigParser()
53                         config.read(constants._user_settings_)
54                 except IOError, e:
55                         _moduleLogger.info("No settings")
56                         return
57                 except ValueError:
58                         _moduleLogger.info("Settings were corrupt")
59                         return
60                 except ConfigParser.MissingSectionHeaderError:
61                         _moduleLogger.info("Settings were corrupt")
62                         return
63                 except Exception:
64                         _moduleLogger.exception("Unknown loading error")
65
66                 self._mainWindow.load_settings(config)
67
68         def save_settings(self):
69                 _moduleLogger.info("Saving settings")
70                 config = ConfigParser.SafeConfigParser()
71
72                 self._mainWindow.save_settings(config)
73
74                 with open(constants._user_settings_, "wb") as configFile:
75                         config.write(configFile)
76
77         def get_icon(self, name):
78                 if self._dataPath is None:
79                         for path in self._DATA_PATHS:
80                                 if os.path.exists(os.path.join(path, name)):
81                                         self._dataPath = path
82                                         break
83                 if self._dataPath is not None:
84                         icon = QtGui.QIcon(os.path.join(self._dataPath, name))
85                         return icon
86                 else:
87                         return None
88
89         def get_resource(self, name):
90                 if self._dataPath is None:
91                         for path in self._DATA_PATHS:
92                                 if os.path.exists(os.path.join(path, name)):
93                                         self._dataPath = path
94                                         break
95                 if self._dataPath is not None:
96                         return os.path.join(self._dataPath, name)
97                 else:
98                         return None
99
100         def _close_windows(self):
101                 qwrappers.ApplicationWrapper._close_windows(self)
102                 if self._aboutDialog  is not None:
103                         self._aboutDialog.close()
104
105         @property
106         def fsContactsPath(self):
107                 return os.path.join(constants._data_path_, "contacts")
108
109         @property
110         def streamHandler(self):
111                 if self._streamHandler is None:
112                         import stream_handler
113                         self._streamHandler = stream_handler.StreamHandler()
114                 return self._streamHandler
115
116         @property
117         def alarmHandler(self):
118                 return self._alarmHandler
119
120         @property
121         def ledHandler(self):
122                 if self._ledHandler is None:
123                         import led_handler
124                         self._ledHandler = led_handler.LedHandler()
125                 return self._ledHandler
126
127         def _new_main_window(self):
128                 return MainWindow(None, self)
129
130         @qt_compat.Slot()
131         @qt_compat.Slot(bool)
132         @misc_utils.log_exception(_moduleLogger)
133         def _on_about(self, checked = True):
134                 with qui_utils.notify_error(self._errorLog):
135                         if self._aboutDialog is None:
136                                 import dialogs
137                                 self._aboutDialog = dialogs.AboutDialog(self)
138                         response = self._aboutDialog.run(self._mainWindow.window)
139
140
141 class DelayedWidget(object):
142
143         def __init__(self, app, settingsNames):
144                 self._layout = QtGui.QVBoxLayout()
145                 self._layout.setContentsMargins(0, 0, 0, 0)
146                 self._widget = QtGui.QWidget()
147                 self._widget.setContentsMargins(0, 0, 0, 0)
148                 self._widget.setLayout(self._layout)
149                 self._settings = dict((name, "") for name in settingsNames)
150
151                 self._child = None
152                 self._isEnabled = True
153
154         @property
155         def toplevel(self):
156                 return self._widget
157
158         def has_child(self):
159                 return self._child is not None
160
161         def set_child(self, child):
162                 if self._child is not None:
163                         self._layout.removeWidget(self._child.toplevel)
164                 self._child = child
165                 if self._child is not None:
166                         self._layout.addWidget(self._child.toplevel)
167
168                 self._child.set_settings(self._settings)
169
170                 if self._isEnabled:
171                         self._child.enable()
172                 else:
173                         self._child.disable()
174
175         @property
176         def child(self):
177                 return self._child
178
179         def enable(self):
180                 self._isEnabled = True
181                 if self._child is not None:
182                         self._child.enable()
183
184         def disable(self):
185                 self._isEnabled = False
186                 if self._child is not None:
187                         self._child.disable()
188
189         def clear(self):
190                 if self._child is not None:
191                         self._child.clear()
192
193         def refresh(self, force=True):
194                 if self._child is not None:
195                         self._child.refresh(force)
196
197         def get_settings(self):
198                 if self._child is not None:
199                         return self._child.get_settings()
200                 else:
201                         return self._settings
202
203         def set_settings(self, settings):
204                 if self._child is not None:
205                         self._child.set_settings(settings)
206                 else:
207                         self._settings = settings
208
209
210 def _tab_factory(tab, app, session, errorLog):
211         import gv_views
212         return gv_views.__dict__[tab](app, session, errorLog)
213
214
215 class MainWindow(qwrappers.WindowWrapper):
216
217         KEYPAD_TAB = 0
218         RECENT_TAB = 1
219         MESSAGES_TAB = 2
220         CONTACTS_TAB = 3
221         MAX_TABS = 4
222
223         _TAB_TITLES = [
224                 "Dialpad",
225                 "History",
226                 "Messages",
227                 "Contacts",
228         ]
229         assert len(_TAB_TITLES) == MAX_TABS
230
231         _TAB_ICONS = [
232                 "dialpad.png",
233                 "history.png",
234                 "messages.png",
235                 "contacts.png",
236         ]
237         assert len(_TAB_ICONS) == MAX_TABS
238
239         _TAB_CLASS = [
240                 functools.partial(_tab_factory, "Dialpad"),
241                 functools.partial(_tab_factory, "History"),
242                 functools.partial(_tab_factory, "Messages"),
243                 functools.partial(_tab_factory, "Contacts"),
244         ]
245         assert len(_TAB_CLASS) == MAX_TABS
246
247         # Hack to allow delay importing/loading of tabs
248         _TAB_SETTINGS_NAMES = [
249                 (),
250                 ("filter", ),
251                 ("status", "type"),
252                 ("selectedAddressbook", ),
253         ]
254         assert len(_TAB_SETTINGS_NAMES) == MAX_TABS
255
256         def __init__(self, parent, app):
257                 qwrappers.WindowWrapper.__init__(self, parent, app)
258                 self._window.setWindowTitle("%s" % constants.__pretty_app_name__)
259                 self._errorLog = self._app.errorLog
260
261                 self._session = session.Session(self._errorLog, constants._data_path_)
262                 self._session.error.connect(self._on_session_error)
263                 self._session.loggedIn.connect(self._on_login)
264                 self._session.loggedOut.connect(self._on_logout)
265                 self._session.draft.recipientsChanged.connect(self._on_recipients_changed)
266                 self._session.newMessages.connect(self._on_new_message_alert)
267                 self._app.alarmHandler.applicationNotifySignal.connect(self._on_app_alert)
268                 self._voicemailRefreshDelay = QtCore.QTimer()
269                 self._voicemailRefreshDelay.setInterval(30 * 1000)
270                 self._voicemailRefreshDelay.timeout.connect(self._on_call_missed)
271                 self._voicemailRefreshDelay.setSingleShot(True)
272                 self._callHandler = None
273                 self._updateVoicemailOnMissedCall = False
274
275                 self._defaultCredentials = "", ""
276                 self._curentCredentials = "", ""
277                 self._currentTab = 0
278
279                 self._credentialsDialog = None
280                 self._smsEntryDialog = None
281                 self._accountDialog = None
282
283                 self._tabsContents = [
284                         DelayedWidget(self._app, self._TAB_SETTINGS_NAMES[i])
285                         for i in xrange(self.MAX_TABS)
286                 ]
287                 for tab in self._tabsContents:
288                         tab.disable()
289
290                 self._tabWidget = QtGui.QTabWidget()
291                 if qui_utils.screen_orientation() == QtCore.Qt.Vertical:
292                         self._tabWidget.setTabPosition(QtGui.QTabWidget.South)
293                 else:
294                         self._tabWidget.setTabPosition(QtGui.QTabWidget.West)
295                 defaultTabIconSize = self._tabWidget.iconSize()
296                 defaultTabIconWidth, defaultTabIconHeight = defaultTabIconSize.width(), defaultTabIconSize.height()
297                 for tabIndex, (tabTitle, tabIcon) in enumerate(
298                         zip(self._TAB_TITLES, self._TAB_ICONS)
299                 ):
300                         icon = self._app.get_icon(tabIcon)
301                         if constants.IS_MAEMO and icon is not None:
302                                 tabTitle = ""
303
304                         if icon is None:
305                                 self._tabWidget.addTab(self._tabsContents[tabIndex].toplevel, tabTitle)
306                         else:
307                                 iconSize = icon.availableSizes()[0]
308                                 defaultTabIconWidth = max(defaultTabIconWidth, iconSize.width())
309                                 defaultTabIconHeight = max(defaultTabIconHeight, iconSize.height())
310                                 self._tabWidget.addTab(self._tabsContents[tabIndex].toplevel, icon, tabTitle)
311                 defaultTabIconWidth = max(defaultTabIconWidth, 32)
312                 defaultTabIconHeight = max(defaultTabIconHeight, 32)
313                 self._tabWidget.setIconSize(QtCore.QSize(defaultTabIconWidth, defaultTabIconHeight))
314                 self._tabWidget.currentChanged.connect(self._on_tab_changed)
315                 self._tabWidget.setContentsMargins(0, 0, 0, 0)
316
317                 self._layout.addWidget(self._tabWidget)
318
319                 self._loginAction = QtGui.QAction(None)
320                 self._loginAction.setText("Login")
321                 self._loginAction.triggered.connect(self._on_login_requested)
322
323                 self._importAction = QtGui.QAction(None)
324                 self._importAction.setText("Import")
325                 self._importAction.triggered.connect(self._on_import)
326
327                 self._accountAction = QtGui.QAction(None)
328                 self._accountAction.setText("Account")
329                 self._accountAction.triggered.connect(self._on_account)
330
331                 self._refreshConnectionAction = QtGui.QAction(None)
332                 self._refreshConnectionAction.setText("Refresh Connection")
333                 self._refreshConnectionAction.setShortcut(QtGui.QKeySequence("CTRL+a"))
334                 self._refreshConnectionAction.triggered.connect(self._on_refresh_connection)
335
336                 self._refreshTabAction = QtGui.QAction(None)
337                 self._refreshTabAction.setText("Refresh Tab")
338                 self._refreshTabAction.setShortcut(QtGui.QKeySequence("CTRL+r"))
339                 self._refreshTabAction.triggered.connect(self._on_refresh)
340
341                 fileMenu = self._window.menuBar().addMenu("&File")
342                 fileMenu.addAction(self._loginAction)
343                 fileMenu.addAction(self._refreshTabAction)
344                 fileMenu.addAction(self._refreshConnectionAction)
345
346                 toolsMenu = self._window.menuBar().addMenu("&Tools")
347                 toolsMenu.addAction(self._accountAction)
348                 toolsMenu.addAction(self._importAction)
349                 toolsMenu.addAction(self._app.aboutAction)
350
351                 self._initialize_tab(self._tabWidget.currentIndex())
352                 self.set_fullscreen(self._app.fullscreenAction.isChecked())
353                 self.set_orientation(self._app.orientationAction.isChecked())
354
355         def set_default_credentials(self, username, password):
356                 self._defaultCredentials = username, password
357
358         def get_default_credentials(self):
359                 return self._defaultCredentials
360
361         def walk_children(self):
362                 if self._smsEntryDialog is not None:
363                         return (self._smsEntryDialog, )
364                 else:
365                         return ()
366
367         def start(self):
368                 qwrappers.WindowWrapper.start(self)
369                 assert self._session.state == self._session.LOGGEDOUT_STATE, "Initialization messed up"
370                 if self._defaultCredentials != ("", ""):
371                         username, password = self._defaultCredentials[0], self._defaultCredentials[1]
372                         self._curentCredentials = username, password
373                         self._session.login(username, password)
374                 else:
375                         self._prompt_for_login()
376
377         def close(self):
378                 for diag in (
379                         self._credentialsDialog,
380                         self._accountDialog,
381                 ):
382                         if diag is not None:
383                                 diag.close()
384                 for child in self.walk_children():
385                         child.window.destroyed.disconnect(self._on_child_close)
386                         child.window.closed.disconnect(self._on_child_close)
387                         child.close()
388                 self._window.close()
389
390         def destroy(self):
391                 qwrappers.WindowWrapper.destroy(self)
392                 if self._session.state != self._session.LOGGEDOUT_STATE:
393                         self._session.logout()
394
395         def get_current_tab(self):
396                 return self._currentTab
397
398         def set_current_tab(self, tabIndex):
399                 self._tabWidget.setCurrentIndex(tabIndex)
400
401         def load_settings(self, config):
402                 blobs = "", ""
403                 isFullscreen = False
404                 isPortrait = qui_utils.screen_orientation() == QtCore.Qt.Vertical
405                 tabIndex = 0
406                 try:
407                         blobs = [
408                                 config.get(constants.__pretty_app_name__, "bin_blob_%i" % i)
409                                 for i in xrange(len(self.get_default_credentials()))
410                         ]
411                         isFullscreen = config.getboolean(constants.__pretty_app_name__, "fullscreen")
412                         tabIndex = config.getint(constants.__pretty_app_name__, "tab")
413                         isPortrait = config.getboolean(constants.__pretty_app_name__, "portrait")
414                 except ConfigParser.NoOptionError, e:
415                         _moduleLogger.info(
416                                 "Settings file %s is missing option %s" % (
417                                         constants._user_settings_,
418                                         e.option,
419                                 ),
420                         )
421                 except ConfigParser.NoSectionError, e:
422                         _moduleLogger.info(
423                                 "Settings file %s is missing section %s" % (
424                                         constants._user_settings_,
425                                         e.section,
426                                 ),
427                         )
428                 except Exception:
429                         _moduleLogger.exception("Unknown loading error")
430
431                 try:
432                         self._app.alarmHandler.load_settings(config, "alarm")
433                         self._app.notifyOnMissed = config.getboolean("2 - Account Info", "notifyOnMissed")
434                         self._app.notifyOnVoicemail = config.getboolean("2 - Account Info", "notifyOnVoicemail")
435                         self._app.notifyOnSms = config.getboolean("2 - Account Info", "notifyOnSms")
436                         self._updateVoicemailOnMissedCall = config.getboolean("2 - Account Info", "updateVoicemailOnMissedCall")
437                 except ConfigParser.NoOptionError, e:
438                         _moduleLogger.info(
439                                 "Settings file %s is missing option %s" % (
440                                         constants._user_settings_,
441                                         e.option,
442                                 ),
443                         )
444                 except ConfigParser.NoSectionError, e:
445                         _moduleLogger.info(
446                                 "Settings file %s is missing section %s" % (
447                                         constants._user_settings_,
448                                         e.section,
449                                 ),
450                         )
451                 except Exception:
452                         _moduleLogger.exception("Unknown loading error")
453
454                 creds = (
455                         base64.b64decode(blob)
456                         for blob in blobs
457                 )
458                 self.set_default_credentials(*creds)
459                 self._app.fullscreenAction.setChecked(isFullscreen)
460                 self._app.orientationAction.setChecked(isPortrait)
461                 self.set_current_tab(tabIndex)
462
463                 backendId = 2 # For backwards compatibility
464                 for tabIndex, tabTitle in enumerate(self._TAB_TITLES):
465                         sectionName = "%s - %s" % (backendId, tabTitle)
466                         settings = self._tabsContents[tabIndex].get_settings()
467                         for settingName in settings.iterkeys():
468                                 try:
469                                         settingValue = config.get(sectionName, settingName)
470                                 except ConfigParser.NoOptionError, e:
471                                         _moduleLogger.info(
472                                                 "Settings file %s is missing section %s" % (
473                                                         constants._user_settings_,
474                                                         e.section,
475                                                 ),
476                                         )
477                                         return
478                                 except ConfigParser.NoSectionError, e:
479                                         _moduleLogger.info(
480                                                 "Settings file %s is missing section %s" % (
481                                                         constants._user_settings_,
482                                                         e.section,
483                                                 ),
484                                         )
485                                         return
486                                 except Exception:
487                                         _moduleLogger.exception("Unknown loading error")
488                                         return
489                                 settings[settingName] = settingValue
490                         self._tabsContents[tabIndex].set_settings(settings)
491
492         def save_settings(self, config):
493                 config.add_section(constants.__pretty_app_name__)
494                 config.set(constants.__pretty_app_name__, "tab", str(self.get_current_tab()))
495                 config.set(constants.__pretty_app_name__, "fullscreen", str(self._app.fullscreenAction.isChecked()))
496                 config.set(constants.__pretty_app_name__, "portrait", str(self._app.orientationAction.isChecked()))
497                 for i, value in enumerate(self.get_default_credentials()):
498                         blob = base64.b64encode(value)
499                         config.set(constants.__pretty_app_name__, "bin_blob_%i" % i, blob)
500
501                 config.add_section("alarm")
502                 self._app.alarmHandler.save_settings(config, "alarm")
503                 config.add_section("2 - Account Info")
504                 config.set("2 - Account Info", "notifyOnMissed", repr(self._app.notifyOnMissed))
505                 config.set("2 - Account Info", "notifyOnVoicemail", repr(self._app.notifyOnVoicemail))
506                 config.set("2 - Account Info", "notifyOnSms", repr(self._app.notifyOnSms))
507                 config.set("2 - Account Info", "updateVoicemailOnMissedCall", repr(self._updateVoicemailOnMissedCall))
508
509                 backendId = 2 # For backwards compatibility
510                 for tabIndex, tabTitle in enumerate(self._TAB_TITLES):
511                         sectionName = "%s - %s" % (backendId, tabTitle)
512                         config.add_section(sectionName)
513                         tabSettings = self._tabsContents[tabIndex].get_settings()
514                         for settingName, settingValue in tabSettings.iteritems():
515                                 config.set(sectionName, settingName, settingValue)
516
517         def set_orientation(self, isPortrait):
518                 qwrappers.WindowWrapper.set_orientation(self, isPortrait)
519                 if isPortrait:
520                         self._tabWidget.setTabPosition(QtGui.QTabWidget.South)
521                 else:
522                         self._tabWidget.setTabPosition(QtGui.QTabWidget.West)
523
524         def _initialize_tab(self, index):
525                 assert index < self.MAX_TABS, "Invalid tab"
526                 if not self._tabsContents[index].has_child():
527                         tab = self._TAB_CLASS[index](self._app, self._session, self._errorLog)
528                         self._tabsContents[index].set_child(tab)
529                 self._tabsContents[index].refresh(force=False)
530
531         def _prompt_for_login(self):
532                 if self._credentialsDialog is None:
533                         import dialogs
534                         self._credentialsDialog = dialogs.CredentialsDialog(self._app)
535                 credentials = self._credentialsDialog.run(
536                         self._defaultCredentials[0], self._defaultCredentials[1], self.window
537                 )
538                 if credentials is None:
539                         return
540                 username, password = credentials
541                 self._curentCredentials = username, password
542                 self._session.login(username, password)
543
544         def _show_account_dialog(self):
545                 if self._accountDialog is None:
546                         import dialogs
547                         self._accountDialog = dialogs.AccountDialog(self._app)
548                         self._accountDialog.setIfNotificationsSupported(self._app.alarmHandler.backgroundNotificationsSupported)
549
550                 if self._callHandler is None or not self._callHandler.isSupported:
551                         self._accountDialog.updateVMOnMissedCall = self._accountDialog.VOICEMAIL_CHECK_NOT_SUPPORTED
552                 elif self._updateVoicemailOnMissedCall:
553                         self._accountDialog.updateVMOnMissedCall = self._accountDialog.VOICEMAIL_CHECK_ENABLED
554                 else:
555                         self._accountDialog.updateVMOnMissedCall = self._accountDialog.VOICEMAIL_CHECK_DISABLED
556                 self._accountDialog.notifications = self._app.alarmHandler.alarmType
557                 self._accountDialog.notificationTime = self._app.alarmHandler.recurrence
558                 self._accountDialog.notifyOnMissed = self._app.notifyOnMissed
559                 self._accountDialog.notifyOnVoicemail = self._app.notifyOnVoicemail
560                 self._accountDialog.notifyOnSms = self._app.notifyOnSms
561                 self._accountDialog.set_callbacks(
562                         self._session.get_callback_numbers(), self._session.get_callback_number()
563                 )
564                 accountNumberToDisplay = self._session.get_account_number()
565                 if not accountNumberToDisplay:
566                         accountNumberToDisplay = "Not Available (%s)" % self._session.state
567                 self._accountDialog.set_account_number(accountNumberToDisplay)
568                 response = self._accountDialog.run(self.window)
569                 if response == QtGui.QDialog.Accepted:
570                         if self._accountDialog.doClear:
571                                 self._session.logout_and_clear()
572                                 self._defaultCredentials = "", ""
573                                 self._curentCredentials = "", ""
574                                 for tab in self._tabsContents:
575                                         tab.disable()
576                         else:
577                                 callbackNumber = self._accountDialog.selectedCallback
578                                 self._session.set_callback_number(callbackNumber)
579
580                         if self._callHandler is None or self._accountDialog.updateVMOnMissedCall == self._accountDialog.VOICEMAIL_CHECK_DISABLEDD:
581                                 pass
582                         elif self._accountDialog.updateVMOnMissedCall == self._accountDialog.VOICEMAIL_CHECK_ENABLED:
583                                 self._updateVoicemailOnMissedCall = True
584                                 self._callHandler.start()
585                         else:
586                                 self._updateVoicemailOnMissedCall = False
587                                 self._callHandler.stop()
588                         if (
589                                 self._accountDialog.notifyOnMissed or
590                                 self._accountDialog.notifyOnVoicemail or
591                                 self._accountDialog.notifyOnSms
592                         ):
593                                 notifications = self._accountDialog.notifications
594                         else:
595                                 notifications = self._accountDialog.ALARM_NONE
596                         self._app.alarmHandler.apply_settings(notifications, self._accountDialog.notificationTime)
597
598                         self._app.notifyOnMissed = self._accountDialog.notifyOnMissed
599                         self._app.notifyOnVoicemail = self._accountDialog.notifyOnVoicemail
600                         self._app.notifyOnSms = self._accountDialog.notifyOnSms
601                         self._app.save_settings()
602                 elif response == QtGui.QDialog.Rejected:
603                         _moduleLogger.info("Cancelled")
604                 else:
605                         _moduleLogger.info("Unknown response")
606
607         @qt_compat.Slot()
608         @misc_utils.log_exception(_moduleLogger)
609         def _on_new_message_alert(self):
610                 with qui_utils.notify_error(self._errorLog):
611                         if self._app.alarmHandler.alarmType == self._app.alarmHandler.ALARM_APPLICATION:
612                                 if self._currentTab == self.MESSAGES_TAB or not self._app.ledHandler.isReal:
613                                         self._errorLog.push_message("New messages available")
614                                 else:
615                                         self._app.ledHandler.on()
616
617         @qt_compat.Slot()
618         @misc_utils.log_exception(_moduleLogger)
619         def _on_call_missed(self):
620                 with qui_utils.notify_error(self._errorLog):
621                         self._session.update_messages(self._session.MESSAGE_VOICEMAILS, force=True)
622
623         @qt_compat.Slot(str)
624         @misc_utils.log_exception(_moduleLogger)
625         def _on_session_error(self, message):
626                 with qui_utils.notify_error(self._errorLog):
627                         self._errorLog.push_error(message)
628
629         @qt_compat.Slot()
630         @misc_utils.log_exception(_moduleLogger)
631         def _on_login(self):
632                 with qui_utils.notify_error(self._errorLog):
633                         changedAccounts = self._defaultCredentials != self._curentCredentials
634                         noCallback = not self._session.get_callback_number()
635                         if changedAccounts or noCallback:
636                                 self._show_account_dialog()
637
638                         self._defaultCredentials = self._curentCredentials
639
640                         for tab in self._tabsContents:
641                                 tab.enable()
642                         self._initialize_tab(self._currentTab)
643                         if self._updateVoicemailOnMissedCall:
644                                 if self._callHandler is None:
645                                         import call_handler
646                                         self._callHandler = call_handler.MissedCallWatcher()
647                                         self._callHandler.callMissed.connect(self._voicemailRefreshDelay.start)
648                                 self._callHandler.start()
649
650         @qt_compat.Slot()
651         @misc_utils.log_exception(_moduleLogger)
652         def _on_logout(self):
653                 with qui_utils.notify_error(self._errorLog):
654                         for tab in self._tabsContents:
655                                 tab.disable()
656                         if self._callHandler is not None:
657                                 self._callHandler.stop()
658
659         @qt_compat.Slot()
660         @misc_utils.log_exception(_moduleLogger)
661         def _on_app_alert(self):
662                 with qui_utils.notify_error(self._errorLog):
663                         if self._session.state == self._session.LOGGEDIN_STATE:
664                                 messageType = {
665                                         (True, True): self._session.MESSAGE_ALL,
666                                         (True, False): self._session.MESSAGE_TEXTS,
667                                         (False, True): self._session.MESSAGE_VOICEMAILS,
668                                 }[(self._app.notifyOnSms, self._app.notifyOnVoicemail)]
669                                 self._session.update_messages(messageType, force=True)
670
671         @qt_compat.Slot()
672         @misc_utils.log_exception(_moduleLogger)
673         def _on_recipients_changed(self):
674                 with qui_utils.notify_error(self._errorLog):
675                         if self._session.draft.get_num_contacts() == 0:
676                                 return
677
678                         if self._smsEntryDialog is None:
679                                 import dialogs
680                                 self._smsEntryDialog = dialogs.SMSEntryWindow(self.window, self._app, self._session, self._errorLog)
681                                 self._smsEntryDialog.window.destroyed.connect(self._on_child_close)
682                                 self._smsEntryDialog.window.closed.connect(self._on_child_close)
683                                 self._smsEntryDialog.window.show()
684
685         @misc_utils.log_exception(_moduleLogger)
686         def _on_child_close(self, obj = None):
687                 self._smsEntryDialog = None
688
689         @qt_compat.Slot()
690         @qt_compat.Slot(bool)
691         @misc_utils.log_exception(_moduleLogger)
692         def _on_login_requested(self, checked = True):
693                 with qui_utils.notify_error(self._errorLog):
694                         self._prompt_for_login()
695
696         @qt_compat.Slot(int)
697         @misc_utils.log_exception(_moduleLogger)
698         def _on_tab_changed(self, index):
699                 with qui_utils.notify_error(self._errorLog):
700                         self._currentTab = index
701                         self._initialize_tab(index)
702                         if self._app.alarmHandler.alarmType == self._app.alarmHandler.ALARM_APPLICATION:
703                                 self._app.ledHandler.off()
704
705         @qt_compat.Slot()
706         @qt_compat.Slot(bool)
707         @misc_utils.log_exception(_moduleLogger)
708         def _on_refresh(self, checked = True):
709                 with qui_utils.notify_error(self._errorLog):
710                         self._tabsContents[self._currentTab].refresh(force=True)
711
712         @qt_compat.Slot()
713         @qt_compat.Slot(bool)
714         @misc_utils.log_exception(_moduleLogger)
715         def _on_refresh_connection(self, checked = True):
716                 with qui_utils.notify_error(self._errorLog):
717                         self._session.refresh_connection()
718
719         @qt_compat.Slot()
720         @qt_compat.Slot(bool)
721         @misc_utils.log_exception(_moduleLogger)
722         def _on_import(self, checked = True):
723                 with qui_utils.notify_error(self._errorLog):
724                         csvName = QtGui.QFileDialog.getOpenFileName(self._window, caption="Import", filter="CSV Files (*.csv)")
725                         csvName = unicode(csvName)
726                         if not csvName:
727                                 return
728                         import shutil
729                         shutil.copy2(csvName, self._app.fsContactsPath)
730                         if self._tabsContents[self.CONTACTS_TAB].has_child:
731                                 self._tabsContents[self.CONTACTS_TAB].child.update_addressbooks()
732
733         @qt_compat.Slot()
734         @qt_compat.Slot(bool)
735         @misc_utils.log_exception(_moduleLogger)
736         def _on_account(self, checked = True):
737                 with qui_utils.notify_error(self._errorLog):
738                         assert self._session.state == self._session.LOGGEDIN_STATE, "Must be logged in for settings"
739                         self._show_account_dialog()
740
741
742 def run():
743         try:
744                 os.makedirs(constants._data_path_)
745         except OSError, e:
746                 if e.errno != 17:
747                         raise
748
749         logFormat = '(%(relativeCreated)5d) %(levelname)-5s %(threadName)s.%(name)s.%(funcName)s: %(message)s'
750         logging.basicConfig(level=logging.DEBUG, format=logFormat)
751         rotating = logging.handlers.RotatingFileHandler(constants._user_logpath_, maxBytes=512*1024, backupCount=1)
752         rotating.setFormatter(logging.Formatter(logFormat))
753         root = logging.getLogger()
754         root.addHandler(rotating)
755         _moduleLogger.info("%s %s-%s" % (constants.__app_name__, constants.__version__, constants.__build__))
756         _moduleLogger.info("OS: %s" % (os.uname()[0], ))
757         _moduleLogger.info("Kernel: %s (%s) for %s" % os.uname()[2:])
758         _moduleLogger.info("Hostname: %s" % os.uname()[1])
759
760         try:
761                 import gobject
762                 gobject.threads_init()
763         except ImportError:
764                 _moduleLogger.info("GObject support not available")
765         try:
766                 import dbus
767                 try:
768                         from dbus.mainloop.qt import DBusQtMainLoop
769                         DBusQtMainLoop(set_as_default=True)
770                         _moduleLogger.info("Using Qt mainloop")
771                 except ImportError:
772                         try:
773                                 from dbus.mainloop.glib import DBusGMainLoop
774                                 DBusGMainLoop(set_as_default=True)
775                                 _moduleLogger.info("Using GObject mainloop")
776                         except ImportError:
777                                 _moduleLogger.info("Mainloop not available")
778         except ImportError:
779                 _moduleLogger.info("DBus support not available")
780
781         app = QtGui.QApplication([])
782         handle = Dialcentral(app)
783         qtpie.init_pies()
784         return app.exec_()
785
786
787 if __name__ == "__main__":
788         import sys
789
790         val = run()
791         sys.exit(val)