1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Ayatana Webmail, the Preferences Dialog
# Authors: Dmitry Shachnev <mitya57@gmail.com>
# Robert Tari <robert@tari.in>
# License: GNU GPL 3 or higher; http://www.gnu.org/licenses/gpl.html
import imaplib2 as imaplib
import os.path
from socket import error as socketerror
from gi.repository import Gtk, GdkPixbuf, Gdk
from ayatanawebmail.common import g_oSettings, getDataPath
from ayatanawebmail.appdata import APPVERSION, APPURL, APPDESCRIPTION, APPAUTHOR, APPYEAR, APPTITLE
import webbrowser
MESSAGEACTION = {'OPEN': 1, 'MARK': 2, 'ASK': 3}
def utf7dec(lstInput):
if not isinstance(lstInput, bytes):
return lstInput
lstResult = []
lstBytes = bytearray()
for nChar in lstInput:
if nChar == b'&'[0] and not lstBytes:
lstBytes.append(nChar)
elif nChar == b'-'[0] and lstBytes:
if len(lstBytes) == 1:
lstResult.append('&')
else:
lstResult.append((b'+' + lstBytes[1:].replace(b',', b'/') + b'-').decode('utf-7'))
lstBytes = bytearray()
elif lstBytes:
lstBytes.append(nChar)
else:
lstResult.append(chr(nChar))
if lstBytes:
lstResult.append((b'+' + lstBytes[1:].replace(b',', b'/') + b'-').decode('utf-7'))
return ''.join(lstResult)
class Entry(Gtk.Entry):
def __init__(self, strId, **kwargs):
Gtk.Entry.__init__(self, **kwargs)
self.set_tooltip_text(_('If this string starts with http:// or https://, the application will open it in your browser - otherwise, it will be run as a command'))
def setText(self, strText):
if strText.startswith('Exec:'):
strText = strText[5:]
self.set_text(strText)
def getText(self):
strText = self.get_text()
if not strText.startswith('http://') and not strText.startswith('https://'):
strText = 'Exec:' + strText
return strText
class FileChooserButtonEx(Gtk.ButtonBox):
def __init__(self, strFilename, **kwargs):
Gtk.ButtonBox.__init__(self, orientation=Gtk.Orientation.HORIZONTAL, layout_style=Gtk.ButtonBoxStyle.EXPAND, **kwargs)
oButtonClear = Gtk.Button.new_from_icon_name('gtk-clear', Gtk.IconSize.BUTTON)
oButtonClear.connect('clicked', self.onClear)
oButtonOpen = Gtk.Button()
oButtonOpen.connect('clicked', self.onOpen)
self.oLabel = Gtk.Label(os.path.basename(strFilename) or _('(None)'), xalign=0, margin_left=5)
oImage = Gtk.Image.new_from_icon_name('gtk-open', Gtk.IconSize.BUTTON)
oBox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL)
oBox.pack_start(oImage, False, False, 0)
oBox.pack_start(self.oLabel, True, True, 0)
oButtonOpen.add(oBox)
self.pack_start(oButtonOpen, True, True, 0)
self.pack_start(oButtonClear, False, False, 0)
self.set_homogeneous(False)
self.strFilename = strFilename
def onClear(self, oWidget):
self.strFilename = ''
self.oLabel.set_text(_('(None)'))
def onOpen(self, oWidget):
oDlg = Gtk.FileChooserDialog(None, oWidget.get_toplevel(), 0, (Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL, Gtk.STOCK_OPEN, Gtk.ResponseType.APPLY))
if self.strFilename:
oDlg.set_filename(self.strFilename)
nResponse = oDlg.run()
if nResponse == Gtk.ResponseType.APPLY:
self.strFilename = oDlg.get_filename()
self.oLabel.set_text(os.path.basename(self.strFilename))
oDlg.destroy()
def getFilename(self):
return self.strFilename
class PreferencesDialog(Gtk.Dialog):
def __init__(self):
self.bInit = False
self.initConfig()
Gtk.Dialog.__init__(self, _('Ayatana Webmail Preferences'), None, 0, (Gtk.STOCK_CONNECT, 100, Gtk.STOCK_APPLY, Gtk.ResponseType.APPLY, Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL))
self.set_icon_name('ayatana-webmail')
self.connect('destroy', lambda w: Gtk.main_quit())
self.connect('response', self.onResponse)
self.set_position(Gtk.WindowPosition.CENTER)
self.set_property('width-request', 640)
self.set_property('height-request', 480)
self.oNotebook = Gtk.Notebook(vexpand=True, margin_left=5, margin_top=5, margin_right=5, margin_bottom=5)
self.oNotebook.append_page(self.pageAccounts(), Gtk.Label(_('Accounts')))
self.oNotebook.append_page(self.pageOptions(), Gtk.Label(_('Options')))
self.oNotebook.append_page(self.pageSupport(), Gtk.Label(_('Support')))
self.oNotebook.append_page(self.pageAbout(), Gtk.Label(_('About')))
oContentArea = self.get_content_area()
oContentArea.set_property('vexpand', True)
oContentArea.add(self.oNotebook)
self.oButtonConnect = self.get_widget_for_response(100)
self.oButtonApply = self.get_widget_for_response(Gtk.ResponseType.APPLY)
self.lstDicts = [{'Host': self.lServers[0]['host'], 'Port': self.lServers[0]['port'], 'Login': '', 'Passwd': '', 'Folders': 'INBOX', 'InboxAppend': self.lServers[0]['message'], 'Home': self.lServers[0]['home'], 'Compose': self.lServers[0]['compose'], 'Inbox': self.lServers[0]['inbox'], 'Sent': self.lServers[0]['sent']}]
self.set_keep_above(True)
self.show_all()
self.bInit = True
self.nIndex = 0
self.bIgnoreServerChange = False
def onResponse(self, oWidget, nResponse):
if nResponse == 100:
self.oNotebook.set_current_page(0)
self.oListStore.clear()
self.getFolderList(True)
self.updateUI()
def getFolderList(self, bAutoselect):
try:
oImap = None
try:
oImap = imaplib.IMAP4_SSL(self.EntryHost.get_text(), int(self.EntryPort.get_text()))
except Exception:
oImap = imaplib.IMAP4(self.EntryHost.get_text(), int(self.EntryPort.get_text()))
oImap.starttls()
oImap.login(self.EntryLogin.get_text(), self.EntryPassword.get_text())
for f in oImap.list()[1]:
flags, b, c = utf7dec(f).partition(' ')
separator, b, strName = c.partition(' ')
strName = strName.replace('"', '').replace('/ ', '')
if strName != '[Gmail]' and 'All Mail' not in strName:
self.oListStore.append([strName, strName.replace('[Gmail]/', ''), strName.upper() == 'INBOX' if bAutoselect else False])
oImap.logout()
except (imaplib.IMAP4.error, socketerror) as oError:
oDlg = Gtk.MessageDialog(self, Gtk.DialogFlags.MODAL, Gtk.MessageType.ERROR, Gtk.ButtonsType.CLOSE, '')
strError = str(oError)
if strError.startswith("b'"):
strError = strError[1:]
if 'https://support.google.com/mail/accounts/answer/78754' in strError:
oDlg.set_markup( _('Please visit the following link and enable access for less secure apps:') + '\n\n<a href="https://www.google.com/settings/security/lesssecureapps">https://www.google.com/settings/security/lesssecureapps</a>')
oDlg.set_property('message_type', Gtk.MessageType.INFO)
oDlg.set_title(_('Access blocked by Google'))
else:
oDlg.set_property('text', _('Failed to connect to mail account. The returned error was:') + '\n\n' + strError)
oDlg.set_title(_('Connection failure'))
oDlg.run()
oDlg.destroy()
def initConfig(self):
self.bEnableNotifications = g_oSettings.get_boolean('enable-notifications')
self.bPlaySound = g_oSettings.get_boolean('enable-sound')
self.bHideCount = g_oSettings.get_boolean('hide-messages-count')
self.strCommand = g_oSettings.get_string('exec-on-receive')
self.strCustomSound = g_oSettings.get_string('custom-sound')
self.bMergeConversation = g_oSettings.get_boolean('merge-messages')
self.nMessageAction = g_oSettings.get_enum('message-action')
self.lServers = []
for sServer in g_oSettings.get_strv('servers'):
lValues = sServer.split('\t')
lValues.append('\t'.join(lValues[1:]))
dServer = dict(zip(['name', 'host', 'port', 'home', 'compose', 'sent', 'inbox', 'message', 'raw'], lValues))
self.lServers.append(dServer)
self.lServers[0]['name'] = _('Custom')
def pageAccounts(self):
self.sb = Gtk.SpinButton.new_with_range(1, 1, 1)
self.sb.set_numeric(True)
self.sb.set_update_policy(Gtk.SpinButtonUpdatePolicy.IF_VALID)
self.sb.connect('value-changed', self.onAccountChanged)
self.addbtn = Gtk.Button.new_with_label(_('Add'))
self.addbtn.connect('clicked', self.onAddAccount)
self.rmbtn = Gtk.Button.new_with_label(_('Remove'))
self.rmbtn.connect('clicked', self.onRemoveAccount)
accbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=5, hexpand=True)
accbox.pack_start(self.sb, True, True, 0)
accbox.pack_end(self.rmbtn, False, False, 0)
accbox.pack_end(self.addbtn, False, False, 0)
self.pComboBoxTextServer = Gtk.ComboBoxText()
self.pComboBoxTextServer.connect('changed', self.onComboBoxTextServerChanged)
for dServer in self.lServers:
self.pComboBoxTextServer.append(None, dServer['name'])
self.pComboBoxTextServer.set_active_id('custom')
self.EntryHost = Gtk.Entry(hexpand=True)
self.EntryHost.connect('changed', lambda w: self.updateUI())
self.EntryPort = Gtk.Entry(hexpand=True)
self.EntryPort.connect('changed', lambda w: self.updateUI())
self.EntryLogin = Gtk.Entry(hexpand=True)
self.EntryLogin.connect('changed', lambda w: self.updateUI())
self.EntryPassword = Gtk.Entry(visibility=False, caps_lock_warning=True, hexpand=True)
self.EntryPassword.connect('changed', lambda w: self.updateUI())
self.oListStore = Gtk.ListStore(str, str, bool)
oTreeView = Gtk.TreeView(self.oListStore, headers_visible=False, activate_on_single_click=True, margin_left=5, margin_top=5, margin_right=5, margin_bottom=5)
oTreeView.connect('row-activated', self.onFolderActivated)
oTreeViewColumnBool = Gtk.TreeViewColumn('bool', Gtk.CellRendererToggle(), active=2)
oTreeViewColumnBool.get_cells()[0].set_property('xalign', 1.0)
oTreeView.append_column(Gtk.TreeViewColumn('folder', Gtk.CellRendererText(), text=1))
oTreeView.append_column(oTreeViewColumnBool)
oFrame = Gtk.ScrolledWindow(shadow_type=Gtk.ShadowType.IN, hexpand=True, vexpand=True)
oFrame.set_property('height-request', 200)
oFrame.add(oTreeView)
self.oEntryHome = Entry('Home', hexpand=True)
self.oEntryHome.connect('changed', lambda w: self.updateUI())
self.oEntryCompose = Entry('Compose', hexpand=True)
self.oEntryCompose.connect('changed', lambda w: self.updateUI())
self.oEntryInbox = Entry('Inbox', hexpand=True)
self.oEntryInbox.connect('changed', lambda w: self.updateUI())
self.oEntrySent = Entry('Sent', hexpand=True)
self.oEntrySent.connect('changed', lambda w: self.updateUI())
self.oEntryInboxAppend = Gtk.Entry(hexpand=True)
self.oEntryInboxAppend.connect('changed', lambda w: self.updateUI())
self.oEntryInboxAppend.set_tooltip_text(_('The application will append this string to "Inbox" to access a specific message - you can use the $MSG_THREAD and $MSG_UID placeholders'))
oGrid = Gtk.Grid(row_spacing=5, column_spacing=5, vexpand=True)
oGrid.attach(Gtk.Label(_('Account:'), xalign=0, margin_right=5), 0, 0, 1, 1)
oGrid.attach(accbox, 1, 0, 1, 1)
oGrid.attach(Gtk.Label(_('Server:'), xalign=0, margin_right=5), 0, 1, 1, 1)
oGrid.attach(self.pComboBoxTextServer, 1, 1, 1, 1)
oGrid.attach(Gtk.Label(_('Host:'), xalign=0, margin_right=5), 0, 2, 1, 1)
oGrid.attach(self.EntryHost, 1, 2, 1, 1)
oGrid.attach(Gtk.Label(_('Port:'), xalign=0, margin_right=5), 0, 3, 1, 1)
oGrid.attach(self.EntryPort, 1, 3, 1, 1)
oGrid.attach(Gtk.Label(_('Username:'), xalign=0, margin_right=5), 0, 4, 1, 1)
oGrid.attach(self.EntryLogin, 1, 4, 1, 1)
oGrid.attach(Gtk.Label(_('Password:'), xalign=0, margin_right=5), 0, 5, 1, 1)
oGrid.attach(self.EntryPassword, 1, 5, 1, 1)
oGrid.attach(Gtk.Label(_('Folders:'), xalign=0, margin_right=5), 0, 6, 1, 1)
oGrid.attach(oFrame, 1, 6, 1, 1)
oGrid.attach(Gtk.Label(_('Home:'), xalign=0, margin_right=5), 0, 7, 1, 1)
oGrid.attach(self.oEntryHome, 1, 7, 1, 1)
oGrid.attach(Gtk.Label(_('Compose:'), xalign=0, margin_right=5), 0, 8, 1, 1)
oGrid.attach(self.oEntryCompose, 1, 8, 1, 1)
oGrid.attach(Gtk.Label(_('Sent:'), xalign=0, margin_right=5), 0, 9, 1, 1)
oGrid.attach(self.oEntrySent, 1, 9, 1, 1)
oGrid.attach(Gtk.Label(_('Inbox:'), xalign=0, margin_right=5), 0, 10, 1, 1)
oGrid.attach(self.oEntryInbox, 1, 10, 1, 1)
oGrid.attach(Gtk.Label(_('Message:'), xalign=0, margin_right=5), 0, 11, 1, 1)
oGrid.attach(self.oEntryInboxAppend, 1, 11, 1, 1)
page = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=5, border_width=10, vexpand=True)
page.add(oGrid)
oScrolledWindow = Gtk.ScrolledWindow()
oScrolledWindow.add(page)
nHeight = 721
oDisplay = Gdk.Display.get_default()
if oDisplay:
oMonitor = None
# get_primary_monitor is available in >= 3.22
try:
oMonitor = oDisplay.get_primary_monitor()
except Exception as oException:
pass
if oMonitor:
nHeight = oMonitor.get_workarea().height
if nHeight > 720:
# propagate_natural_height is available in >= 3.22
try:
oScrolledWindow.props.propagate_natural_height = True
except Exception as oException:
pass
return oScrolledWindow
def pageOptions(self):
self.oComboMessageAction = Gtk.ComboBoxText()
self.oComboMessageAction.append(str(MESSAGEACTION['MARK']), _('Mark message as read'))
self.oComboMessageAction.append(str(MESSAGEACTION['OPEN']), _('Open message in browser/Execute command'))
self.oComboMessageAction.append(str(MESSAGEACTION['ASK']), _('Ask me what to do'))
self.oComboMessageAction.set_active_id(str(self.nMessageAction))
self.oSwitchMerge = Gtk.Switch(active=self.bMergeConversation, halign=Gtk.Align.END)
self.notifyswitch = Gtk.Switch(active=self.bEnableNotifications, halign=Gtk.Align.END)
self.sndswitch = Gtk.Switch(active=self.bPlaySound, halign=Gtk.Align.END)
self.sndswitch.connect('notify::active', self.onSoundSwitchActivate)
self.hcswitch = Gtk.Switch(active=self.bHideCount, halign=Gtk.Align.END)
self.commandchooser = FileChooserButtonEx(self.strCommand)
self.sndchooser = FileChooserButtonEx(self.strCustomSound)
oGrid = Gtk.Grid(row_spacing=5, column_spacing=10)
oGrid.attach(Gtk.Label(_('Enable notifications:'), xalign=0), 0, 0, 1, 1)
oGrid.attach(self.notifyswitch, 1, 0, 1, 1)
oGrid.attach(Gtk.Label(_('Play sound when a message is received:'), xalign=0), 0, 1, 1, 1)
oGrid.attach(self.sndswitch, 1, 1, 1, 1)
oGrid.attach(Gtk.Label(_('Merge messages from the same conversation:'), xalign=0), 0, 2, 1, 1)
oGrid.attach(self.oSwitchMerge, 1, 2, 1, 1)
oGrid.attach(Gtk.Label(_('Hide count when zero:'), xalign=0), 0, 3, 1, 1)
oGrid.attach(self.hcswitch, 1, 3, 1, 1)
oGrid.attach(Gtk.Label(_('When a message is activated:'), xalign=0), 0, 4, 1, 1)
oGrid.attach(self.oComboMessageAction, 1, 4, 1, 1)
commandbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=10)
commandbox.add(Gtk.Label(_('Execute this command when a message is received:'), xalign=0))
commandbox.pack_end(self.commandchooser, True, True, 0)
if self.commandchooser.get_allocated_width() < 180:
self.commandchooser.set_size_request(180, 0)
self.sndbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=10, sensitive=self.bPlaySound)
self.sndbox.add(Gtk.Label(_('Custom sound to play:'), xalign=0))
self.sndbox.pack_end(self.sndchooser, True, True, 0)
if self.sndchooser.get_allocated_width() < 180:
self.sndchooser.set_size_request(180, 0)
page = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=5, border_width=10)
page.add(oGrid)
page.add(commandbox)
page.add(self.sndbox)
return page
def pageSupport(self):
oGrid = Gtk.Grid(border_width=10, row_spacing=2)
oGrid.attach(Gtk.Label(_('Report a bug'), xalign=0), 0, 0, 1, 1)
oGrid.attach(Gtk.Label('<a href="https://github.com/AyatanaIndicators/ayatana-webmail/issues">https://github.com/AyatanaIndicators/ayatana-webmail/issues</a>', xalign=0, use_markup=True, margin_bottom=10), 0, 1, 1, 1)
oGrid.attach(Gtk.Label(_('Request a feature'), xalign=0), 0, 2, 1, 1)
oGrid.attach(Gtk.Label('<a href="https://github.com/AyatanaIndicators/ayatana-webmail/issues">https://github.com/AyatanaIndicators/ayatana-webmail/issues</a>', xalign=0, use_markup=True), 0, 3, 1, 1)
oGrid.attach(Gtk.Label(_('It\'s a good idea to add the {labelname} label to your issue.').format(labelname='<b>enhancement</b>'), xalign=0, margin_bottom=10, use_markup=True), 0, 4, 1, 1)
oGrid.attach(Gtk.Label(_('Ask a question'), xalign=0), 0, 5, 1, 1)
oGrid.attach(Gtk.Label('<a href="https://github.com/AyatanaIndicators/ayatana-webmail/issues">https://github.com/AyatanaIndicators/ayatana-webmail/issues</a>', xalign=0, use_markup=True), 0, 6, 1, 1)
oGrid.attach(Gtk.Label(_('It\'s a good idea to add the {labelname} label to your issue.').format(labelname='<b>question</b>'), xalign=0, margin_bottom=10, use_markup=True), 0, 7, 1, 1)
oGrid.attach(Gtk.Label(_('Help translate'), xalign=0), 0, 8, 1, 1)
oGrid.attach(Gtk.Label('<a href="https://hosted.weblate.org/projects/ayatana-indicators/ayatana-webmail/">https://hosted.weblate.org/projects/ayatana-indicators/ayatana-webmail/</a>', xalign=0, use_markup=True, margin_bottom=10), 0, 9, 1, 1)
oGrid.attach(Gtk.Label(_('Source code'), xalign=0), 0, 10, 1, 1)
oGrid.attach(Gtk.Label('<a href="https://github.com/AyatanaIndicators/ayatana-webmail">https://github.com/AyatanaIndicators/ayatana-webmail</a>', xalign=0, use_markup=True, margin_bottom=10), 0, 11, 1, 1)
oGrid.attach(Gtk.Label(_('Home page'), xalign=0), 0, 12, 1, 1)
oGrid.attach(Gtk.Label('<a href="https://tari.in/www/software/ayatana-webmail/">https://tari.in/www/software/ayatana-webmail/</a>', xalign=0, use_markup=True, margin_bottom=10), 0, 13, 1, 1)
return oGrid
def onActivateLinkAbout(self, pAboutDialog, sUrl):
webbrowser.open_new_tab(sUrl)
return True
def pageAbout(self):
oBox = Gtk.Box()
oAboutDialog = Gtk.AboutDialog()
oAboutDialog.set_license_type(Gtk.License.GPL_3_0)
oAboutDialog.set_program_name(APPTITLE)
oAboutDialog.set_copyright(APPAUTHOR + ' ' + (APPYEAR if APPYEAR[-2:] == APPVERSION[:2] else APPYEAR + '-20' + APPVERSION[:2]))
oAboutDialog.set_comments(_(APPDESCRIPTION))
oAboutDialog.set_authors(['Dmitry Shachnev <mitya57@gmail.com>', 'Robert Tari <robert@tari.in>'])
oAboutDialog.set_translator_credits(_('translator-credits'))
oAboutDialog.set_version(APPVERSION)
oAboutDialog.set_website(APPURL)
oAboutDialog.set_website_label(APPURL)
oAboutDialog.set_logo(GdkPixbuf.Pixbuf().new_from_file(getDataPath('/usr/share/icons/hicolor/scalable/apps/ayatanawebmail.svg')))
oAboutDialog.get_content_area().reparent(oBox)
oAboutDialog.get_content_area().set_hexpand(True)
oAboutDialog.connect('activate_link', self.onActivateLinkAbout)
lstChildren = oAboutDialog.action_area.get_children()
for oWidget in lstChildren:
if (isinstance(oWidget, Gtk.Button) and not isinstance(oWidget, Gtk.ToggleButton)) or (isinstance(oWidget, Gtk.ToggleButton) and len(lstChildren) == 3 and oWidget == lstChildren[1]):
oWidget.set_property('no-show-all', True)
oWidget.set_property('visible', False)
return oBox
def onFolderActivated(self, oView, nRow, oColumn):
self.oListStore[nRow][2] = not self.oListStore[nRow][2]
self.updateUI()
def updateUI(self):
bHasFolderSelection = [oRow for oRow in self.oListStore if oRow[2]]
bHasAccountData = all([oWidget.get_text() for oWidget in [self.EntryHost, self.EntryPort, self.EntryLogin, self.EntryPassword]])
bHasMultipleAccounts = len(self.lstDicts) > 1
bHasLinkData = all([oWidget.get_text() for oWidget in [self.oEntryHome, self.oEntryCompose, self.oEntryInbox, self.oEntrySent, self.oEntryInboxAppend]])
self.oButtonConnect.set_sensitive(bHasAccountData)
self.oButtonApply.set_sensitive(bHasFolderSelection and bHasAccountData and bHasLinkData)
self.rmbtn.set_sensitive(bHasMultipleAccounts)
self.addbtn.set_sensitive(bHasFolderSelection and bHasAccountData and bHasLinkData)
self.sb.set_sensitive(bHasFolderSelection and bHasAccountData and bHasMultipleAccounts and bHasLinkData)
nServerActive = 0
for nServer, dServer in enumerate(self.lServers):
if dServer['raw'] == self.EntryHost.get_text() + '\t' + self.EntryPort.get_text() + '\t' + self.oEntryHome.get_text() + '\t' + self.oEntryCompose.get_text() + '\t' + self.oEntrySent.get_text() + '\t' + self.oEntryInbox.get_text() + '\t' + self.oEntryInboxAppend.get_text():
nServerActive = nServer
break
if self.pComboBoxTextServer.get_active() != nServerActive:
self.bIgnoreServerChange = True
self.pComboBoxTextServer.set_active(nServerActive)
self.bIgnoreServerChange = False
def run(self):
if not self.lstDicts[0]['Passwd']:
self.updateEntries()
self.updateUI()
Gtk.main()
def saveAllSettings(self):
g_oSettings.set_boolean('enable-notifications', self.notifyswitch.get_active())
g_oSettings.set_boolean('enable-sound', self.sndswitch.get_active())
g_oSettings.set_boolean('hide-messages-count', self.hcswitch.get_active())
g_oSettings.set_string('exec-on-receive', self.commandchooser.getFilename())
g_oSettings.set_string('custom-sound', self.sndchooser.getFilename())
g_oSettings.set_boolean('merge-messages', self.oSwitchMerge.get_active())
g_oSettings.set_enum('message-action', int(self.oComboMessageAction.get_active_id()))
def onAddAccount(self, btn):
self.updateAccounts()
nServer = self.pComboBoxTextServer.get_active()
self.lstDicts.append({'Host': self.lServers[nServer]['host'], 'Port': self.lServers[nServer]['port'], 'Login': '', 'Passwd': '', 'Folders': 'INBOX', 'InboxAppend': self.lServers[nServer]['message'], 'Home': self.lServers[nServer]['home'], 'Compose': self.lServers[nServer]['compose'], 'Inbox': self.lServers[nServer]['inbox'], 'Sent': self.lServers[nServer]['sent']})
self.sb.set_range(1, len(self.lstDicts))
self.sb.set_value(len(self.lstDicts))
self.updateUI()
def onRemoveAccount(self, btn):
self.updateAccounts()
index = self.sb.get_value_as_int()-1
del self.lstDicts[index]
self.bInit = False
self.sb.set_range(1, len(self.lstDicts))
self.bInit = True
self.updateEntries()
self.updateUI()
if index+1 > len(self.lstDicts):
self.sb.set_value(index)
self.updateUI()
def setAccounts(self, lstDicts):
self.bInit = False
self.lstDicts = [dct for dct in lstDicts]
self.nIndex = 0
self.sb.set_range(1, len(lstDicts))
self.updateEntries()
self.updateUI()
self.bInit = True
def onAccountChanged(self, sb):
self.updateAccounts()
self.nIndex = self.sb.get_value_as_int() - 1
self.updateEntries()
self.updateUI()
def onSoundSwitchActivate(self, sndswitch, param):
self.sndbox.set_sensitive(sndswitch.get_active())
def updateEntries(self):
if self.lstDicts:
nIndex = self.sb.get_value_as_int() - 1
self.EntryHost.set_text(self.lstDicts[nIndex]['Host'])
self.EntryPort.set_text(str(self.lstDicts[nIndex]['Port']))
self.EntryLogin.set_text(self.lstDicts[nIndex]['Login'])
self.EntryPassword.set_text(self.lstDicts[nIndex]['Passwd'])
self.oListStore.clear()
if self.lstDicts[nIndex]['Passwd']:
self.getFolderList(False)
lstFolders = self.lstDicts[nIndex]['Folders'].split('\t')
for oRow in self.oListStore:
oRow[2] = oRow[0] in lstFolders
self.oEntryHome.setText(self.lstDicts[nIndex]['Home'])
self.oEntryCompose.setText(self.lstDicts[nIndex]['Compose'])
self.oEntryInbox.setText(self.lstDicts[nIndex]['Inbox'])
self.oEntrySent.setText(self.lstDicts[nIndex]['Sent'])
self.oEntryInboxAppend.set_text(self.lstDicts[nIndex]['InboxAppend'])
nServerActive = 0
for nServer, dServer in enumerate(self.lServers):
if dServer['raw'] == self.EntryHost.get_text() + '\t' + self.EntryPort.get_text() + '\t' + self.oEntryHome.get_text() + '\t' + self.oEntryCompose.get_text() + '\t' + self.oEntrySent.get_text() + '\t' + self.oEntryInbox.get_text() + '\t' + self.oEntryInboxAppend.get_text():
nServerActive = nServer
break
if self.pComboBoxTextServer.get_active() != nServerActive:
self.bIgnoreServerChange = True
self.pComboBoxTextServer.set_active(nServerActive)
self.bIgnoreServerChange = False
def onComboBoxTextServerChanged(self, pComboBoxText):
if not self.bIgnoreServerChange:
nServer = self.pComboBoxTextServer.get_active()
if self.lServers[nServer]['raw'] != self.EntryHost.get_text() + '\t' + self.EntryPort.get_text() + '\t' + self.oEntryHome.get_text() + '\t' + self.oEntryCompose.get_text() + '\t' + self.oEntrySent.get_text() + '\t' + self.oEntryInbox.get_text() + '\t' + self.oEntryInboxAppend.get_text():
self.EntryHost.set_text(self.lServers[nServer]['host'])
self.EntryPort.set_text(self.lServers[nServer]['port'])
self.EntryLogin.set_text('')
self.EntryPassword.set_text('')
self.oListStore.clear()
self.oEntryHome.setText(self.lServers[nServer]['home'])
self.oEntryCompose.setText(self.lServers[nServer]['compose'])
self.oEntryInbox.setText(self.lServers[nServer]['inbox'])
self.oEntrySent.setText(self.lServers[nServer]['sent'])
self.oEntryInboxAppend.set_text(self.lServers[nServer]['message'])
def updateAccounts(self):
if self.bInit:
self.lstDicts[self.nIndex]['Host'] = self.EntryHost.get_text()
if self.EntryPort.get_text():
self.lstDicts[self.nIndex]['Port'] = self.EntryPort.get_text()
else:
self.lstDicts[self.nIndex]['Port'] = '993'
self.lstDicts[self.nIndex]['Login'] = self.EntryLogin.get_text()
self.lstDicts[self.nIndex]['Passwd'] = self.EntryPassword.get_text()
self.lstDicts[self.nIndex]['Folders'] = '\t'.join([oRow[0] for oRow in self.oListStore if oRow[2]])
self.lstDicts[self.nIndex]['Home'] = self.oEntryHome.getText()
self.lstDicts[self.nIndex]['Compose'] = self.oEntryCompose.getText()
self.lstDicts[self.nIndex]['Inbox'] = self.oEntryInbox.getText()
self.lstDicts[self.nIndex]['Sent'] = self.oEntrySent.getText()
self.lstDicts[self.nIndex]['InboxAppend'] = self.oEntryInboxAppend.get_text()
|