Add sent status icon to contact's context menu. Fix #342.
This commit is contained in:
parent
f4c3786dc6
commit
24f42e7549
|
@ -65,7 +65,7 @@
|
|||
</widget>
|
||||
</child>
|
||||
<child>
|
||||
<widget class="GtkMenuItem" id="send_custom_status_menuitem">
|
||||
<widget class="GtkImageMenuItem" id="send_custom_status_menuitem">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">Send cus_tom status</property>
|
||||
<property name="use_underline">True</property>
|
||||
|
|
|
@ -2215,6 +2215,7 @@ class Interface:
|
|||
# handler when an emoticon is clicked in emoticons_menu
|
||||
self.emoticon_menuitem_clicked = None
|
||||
self.minimized_controls = {}
|
||||
self.status_sent = {}
|
||||
self.default_colors = {
|
||||
'inmsgcolor': gajim.config.get('inmsgcolor'),
|
||||
'outmsgcolor': gajim.config.get('outmsgcolor'),
|
||||
|
|
|
@ -2004,6 +2004,14 @@ class RosterWindow:
|
|||
add_special_notification_menuitem.hide()
|
||||
add_special_notification_menuitem.set_no_show_all(True)
|
||||
|
||||
# send custom status icon
|
||||
if gajim.interface.status_sent.has_key(account) and \
|
||||
jid in gajim.interface.status_sent[account]:
|
||||
send_custom_status_menuitem.set_image(
|
||||
self.load_icon(gajim.interface.status_sent[account][jid]))
|
||||
else:
|
||||
send_custom_status_menuitem.set_image(None)
|
||||
|
||||
if not our_jid:
|
||||
# add a special img for rename menuitem
|
||||
path_to_kbd_input_img = os.path.join(gajim.DATA_DIR, 'pixmaps',
|
||||
|
@ -3214,6 +3222,8 @@ class RosterWindow:
|
|||
gajim.SHOW_LIST.index('invisible')
|
||||
gajim.connections[account].change_status(status, txt, auto)
|
||||
|
||||
if gajim.interface.status_sent.has_key(account):
|
||||
gajim.interface.status_sent[account] = {}
|
||||
if not gajim.interface.minimized_controls.has_key(account):
|
||||
gajim.interface.minimized_controls[account] = {}
|
||||
for gc_control in gajim.interface.msg_win_mgr.get_controls(
|
||||
|
@ -3283,6 +3293,9 @@ class RosterWindow:
|
|||
if message is not None: # None if user pressed Cancel
|
||||
for (contact, account) in contact_list:
|
||||
self.send_status(account, show, message, to = contact.jid)
|
||||
if not gajim.interface.status_sent.has_key(account):
|
||||
gajim.interface.status_sent[account] = {}
|
||||
gajim.interface.status_sent[account][contact.jid] = show
|
||||
|
||||
def on_status_combobox_changed(self, widget):
|
||||
'''When we change our status via the combobox'''
|
||||
|
|
Loading…
Reference in New Issue