big update: ui now show all info about user's profile. callbacks update. singleton added

This commit is contained in:
ingvar1995
2016-02-24 18:32:35 +03:00
parent 4d4c0cb56a
commit 92635a7c89
6 changed files with 73 additions and 31 deletions

View File

@ -199,3 +199,15 @@ TOX_MAX_MESSAGE_LENGTH = 1372
TOX_MAX_NAME_LENGTH = 128
TOX_MAX_STATUS_MESSAGE_LENGTH = 1007
# -----------------------------------------------------------------------------------------------------------------
# Other enums
# -----------------------------------------------------------------------------------------------------------------
TOX_USER_CONNECTION_STATUS = {
'ONLINE': 0,
'AWAY': 1,
'BUSY': 2,
'OFFLINE': 3
}