comparison frontends/src/primitivus/constants.py @ 501:e9634d2e7b38

core, quick_frontend, primitivus, wix: Contacts List refactoring phase 1: - QuickContactManagement is not used anymore and will be removed, ContactList + Core are used instead - disconnected contacts are now displayed in Primitivus (M-d to show/hide them) - avatars are temporary unavailable in wix - new bridge method: getContactsFromGroup
author Goffi <goffi@goffi.org>
date Tue, 25 Sep 2012 00:58:34 +0200
parents 9cc2ffd293f2
children ca13633d3b6b
comparison
equal deleted inserted replaced
500:00d3679976ab 501:e9634d2e7b38
52 ('directory_focus', 'dark cyan, bold', 'dark green'), 52 ('directory_focus', 'dark cyan, bold', 'dark green'),
53 ('separator', 'brown', 'default'), 53 ('separator', 'brown', 'default'),
54 ('warning', 'light red', 'default'), 54 ('warning', 'light red', 'default'),
55 ('progress_normal', 'default', 'black'), 55 ('progress_normal', 'default', 'black'),
56 ('progress_complete', 'default', 'light red'), 56 ('progress_complete', 'default', 'light red'),
57 ('show_disconnected', 'dark gray', 'default'),
57 ('show_normal', 'default', 'default'), 58 ('show_normal', 'default', 'default'),
58 ('show_normal_focus', 'default, bold', 'default'), 59 ('show_normal_focus', 'default, bold', 'default'),
59 ('show_chat', 'dark green', 'default'), 60 ('show_chat', 'dark green', 'default'),
60 ('show_chat_focus', 'dark green, bold', 'default'), 61 ('show_chat_focus', 'dark green, bold', 'default'),
61 ('show_away', 'brown', 'default'), 62 ('show_away', 'brown', 'default'),
65 ('show_xa', 'dark red', 'default'), 66 ('show_xa', 'dark red', 'default'),
66 ('show_xa_focus', 'dark red, bold', 'default'), 67 ('show_xa_focus', 'dark red, bold', 'default'),
67 ('status', 'yellow', 'default'), 68 ('status', 'yellow', 'default'),
68 ('status_focus', 'yellow, bold', 'default'), 69 ('status_focus', 'yellow, bold', 'default'),
69 ] 70 ]
70 __builtin__.__dict__['const_SHOW_ICON'] = {"": (u'✔', "show_normal"), 71 __builtin__.__dict__['const_SHOW_ICON'] = {"unavailable": (u'⨯', "show_disconnected"),
72 "": (u'✔', "show_normal"),
71 "chat": (u'✆', "show_chat"), 73 "chat": (u'✆', "show_chat"),
72 "away": (u'✈', "show_away"), 74 "away": (u'✈', "show_away"),
73 "dnd": (u'✖', "show_dnd"), 75 "dnd": (u'✖', "show_dnd"),
74 "xa": (u'☄', "show_xa")} 76 "xa": (u'☄', "show_xa")}