Mercurial > libervia-backend
comparison frontends/src/primitivus/constants.py @ 496:024b321c1aa2
primitivus: added show and status text attributes + show icons
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 04 Sep 2012 01:12:52 +0200 |
parents | a726b234d3bf |
children | 9cc2ffd293f2 |
comparison
equal
deleted
inserted
replaced
495:a726b234d3bf | 496:024b321c1aa2 |
---|---|
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_normal', 'default', 'default'), | |
58 ('show_chat', 'dark green', 'default'), | |
59 ('show_away', 'brown', 'default'), | |
60 ('show_dnd', 'dark red', 'default'), | |
61 ('show_xa', 'dark red', 'default'), | |
62 ('status', 'yellow', 'default'), | |
57 ] | 63 ] |
64 __builtin__.__dict__['const_SHOW_ICON'] = {"": (u'✔', "show_normal"), | |
65 "chat": (u'✆', "show_chat"), | |
66 "away": (u'✈', "show_away"), | |
67 "dnd": (u'✖', "show_dnd"), | |
68 "xa": (u'☄', "show_xa")} |