Added address menu plugins to each popup menu except for Blacklist,

closes #819
This commit is contained in:
Dmitri Bogomolov 2019-05-29 18:31:54 +03:00
parent e6f3e52014
commit e07cd1462e
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13
2 changed files with 78 additions and 41 deletions

View File

@ -817,6 +817,17 @@ class MyForm(settingsmixin.SMainWindow):
self.initSettings()
self.resetNamecoinConnection()
self._contact_selected = None
def getContactSelected(self):
"""Returns last selected contact once"""
try:
return self._contact_selected
except AttributeError:
pass
finally:
self._contact_selected = None
def updateTTL(self, sliderPosition):
TTL = int(sliderPosition ** 3.199 + 3600)
self.updateHumanFriendlyTTLDescription(TTL)
@ -3446,15 +3457,19 @@ class MyForm(settingsmixin.SMainWindow):
self.popMenuAddressBook.addSeparator()
self.popMenuAddressBook.addAction(self.actionAddressBookNew)
normal = True
for row in self.ui.tableWidgetAddressBook.selectedIndexes():
currentRow = row.row()
type = self.ui.tableWidgetAddressBook.item(
currentRow, 0).type
if type != AccountMixin.NORMAL:
selected_items = self.getAddressbookSelectedItems()
for item in selected_items:
if item.type != AccountMixin.NORMAL:
normal = False
break
if normal:
# only if all selected addressbook items are normal, allow delete
self.popMenuAddressBook.addAction(self.actionAddressBookDelete)
if len(selected_items) == 1:
self._contact_selected = selected_items.pop()
self.popMenuAddressBook.addSeparator()
for plugin in self.menu_plugins['address']:
self.popMenuAddressBook.addAction(plugin)
self.popMenuAddressBook.exec_(
self.ui.tableWidgetAddressBook.mapToGlobal(point))
@ -3526,6 +3541,8 @@ class MyForm(settingsmixin.SMainWindow):
self.popMenuSubscriptions.addAction(self.actionsubscriptionsClipboard)
self.popMenuSubscriptions.addAction(self.actionsubscriptionsSend)
self.popMenuSubscriptions.addSeparator()
self._contact_selected = currentItem
# preloaded gui.menu plugins with prefix 'address'
for plugin in self.menu_plugins['address']:
self.popMenuSubscriptions.addAction(plugin)
@ -3939,6 +3956,7 @@ class MyForm(settingsmixin.SMainWindow):
self.popMenuYourIdentities.addAction(self.actionEmailGateway)
self.popMenuYourIdentities.addSeparator()
if currentItem.type != AccountMixin.ALL:
self._contact_selected = currentItem
# preloaded gui.menu plugins with prefix 'address'
for plugin in self.menu_plugins['address']:
self.popMenuYourIdentities.addAction(plugin)
@ -3967,6 +3985,7 @@ class MyForm(settingsmixin.SMainWindow):
self.popMenu.addAction(self.actionClipboard)
self.popMenu.addAction(self.actionSend)
self.popMenu.addSeparator()
self._contact_selected = currentItem
# preloaded gui.menu plugins with prefix 'address'
for plugin in self.menu_plugins['address']:
self.popMenu.addAction(plugin)
@ -3980,20 +3999,22 @@ class MyForm(settingsmixin.SMainWindow):
def on_context_menuInbox(self, point):
tableWidget = self.getCurrentMessagelist()
if tableWidget:
if not tableWidget:
return
currentFolder = self.getCurrentFolder()
if currentFolder is None:
pass
if currentFolder == 'sent':
self.on_context_menuSent(point)
else:
return
self.popMenuInbox = QtGui.QMenu(self)
self.popMenuInbox.addAction(self.actionForceHtml)
self.popMenuInbox.addAction(self.actionMarkUnread)
self.popMenuInbox.addSeparator()
address = tableWidget.item(
tableWidget.currentRow(), 0).data(QtCore.Qt.UserRole)
account = accountClass(address)
currentRow = tableWidget.currentRow()
account = accountClass(
tableWidget.item(currentRow, 0).data(QtCore.Qt.UserRole))
if account.type == AccountMixin.CHAN:
self.popMenuInbox.addAction(self.actionReplyChan)
self.popMenuInbox.addAction(self.actionReply)
@ -4004,6 +4025,11 @@ class MyForm(settingsmixin.SMainWindow):
_translate("MainWindow", "Copy address to clipboard"),
self.on_action_ClipboardMessagelist)
self.popMenuInbox.addAction(self.actionClipboardMessagelist)
# pylint: disable=no-member
self._contact_selected = tableWidget.item(currentRow, 1)
# preloaded gui.menu plugins with prefix 'address'
for plugin in self.menu_plugins['address']:
self.popMenuInbox.addAction(plugin)
self.popMenuInbox.addSeparator()
self.popMenuInbox.addAction(self.actionAddSenderToBlackList)
self.popMenuInbox.addSeparator()
@ -4015,14 +4041,19 @@ class MyForm(settingsmixin.SMainWindow):
self.popMenuInbox.exec_(tableWidget.mapToGlobal(point))
def on_context_menuSent(self, point):
currentRow = self.ui.tableWidgetInbox.currentRow()
self.popMenuSent = QtGui.QMenu(self)
self.popMenuSent.addAction(self.actionSentClipboard)
self._contact_selected = self.ui.tableWidgetInbox.item(currentRow, 0)
# preloaded gui.menu plugins with prefix 'address'
for plugin in self.menu_plugins['address']:
self.popMenuSent.addAction(plugin)
self.popMenuSent.addSeparator()
self.popMenuSent.addAction(self.actionTrashSentMessage)
self.popMenuSent.addAction(self.actionSentReply)
# Check to see if this item is toodifficult and display an additional
# menu option (Force Send) if it is.
currentRow = self.ui.tableWidgetInbox.currentRow()
if currentRow >= 0:
ackData = str(self.ui.tableWidgetInbox.item(
currentRow, 3).data(QtCore.Qt.UserRole).toPyObject())

View File

@ -81,8 +81,14 @@ def connect_plugin(form):
dialog = form.qrcode_dialog
except AttributeError:
form.qrcode_dialog = dialog = QRCodeDialog(form)
account = form.getCurrentItem()
label = account._getLabel()
account = form.getContactSelected()
try:
label = account._getLabel() # pylint: disable=protected-access
except AttributeError:
try:
label = account.getLabel()
except AttributeError:
return
dialog.render(
'bitmessage:%s' % account.address + (
'?' + urllib.urlencode({'label': label.encode('utf-8')})