annotate frontends/wix/constants.py @ 119:ded2431cea5a
Primitivus: chat window / text sending.
Primitivus has now the most basics features \o/
- core: new getVersion method
- primitivus: new debug key (C-d), only work if SàT is in dev version (D in version)
- quick_app: new post_init method, used for automatique task like auto-plug
- primitivus: lists now use genericList (Box) or List (Flow)
- primitivus: List now manage correctly its size
- primitivus: new FocusFrame widget which manage focus changing with 'tab'
- primitivus: advancedEdit now manage 'click' signal
- primitivus: contactList now manager 'change' and 'click' signals
- primitivus: Chat window now working
author |
Goffi <goffi@goffi.org> |
date |
Mon, 05 Jul 2010 19:13:36 +0800 |
parents |
f271fff3a713 |
children |
1438a1337732 |
rev |
line source |
72
|
1 import sys |
|
2 import __builtin__ |
|
3 |
|
4 __builtin__.__dict__['IMAGE_DIR'] = sys.path[0]+'/images' |
|
5 |
|
6 __builtin__.__dict__['msgOFFLINE'] = _("offline") |
|
7 __builtin__.__dict__['msgONLINE'] = _("online") |
|
8 __builtin__.__dict__['const_DEFAULT_GROUP'] = "Unclassed" |
|
9 __builtin__.__dict__['const_STATUS'] = [("", _("Online"), None), |
|
10 ("chat", _("Free for chat"), "green"), |
|
11 ("away", _("AFK"), "brown"), |
|
12 ("dnd", _("DND"), "red"), |
|
13 ("xa", _("Away"), "red")] |