summaryrefslogtreecommitdiff
path: root/src/theming.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2013-06-08 17:36:02 +0200
committermathieui <mathieui@mathieui.net>2013-06-08 17:36:02 +0200
commit26ea842cee32623aafea3f05d4a0b347428712c3 (patch)
tree46f90697b5b496807885112a6aac72f04ef1ffaa /src/theming.py
parent545e67c500595c3bb72ed18791717781e4b1581e (diff)
downloadpoezio-26ea842cee32623aafea3f05d4a0b347428712c3.tar.gz
poezio-26ea842cee32623aafea3f05d4a0b347428712c3.tar.bz2
poezio-26ea842cee32623aafea3f05d4a0b347428712c3.tar.xz
poezio-26ea842cee32623aafea3f05d4a0b347428712c3.zip
Add a way to format background colors in a string
(also add colors to the /info command in MUCs)
Diffstat (limited to 'src/theming.py')
-rw-r--r--src/theming.py52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/theming.py b/src/theming.py
index f7a0b431..c999ef2c 100644
--- a/src/theming.py
+++ b/src/theming.py
@@ -77,6 +77,41 @@ class Theme(object):
needs. Create a new theme and share it if you think it can be useful
for others.
"""
+ @classmethod
+ def color_role(cls, role):
+ role_mapping = {
+ 'moderator': cls.COLOR_USER_MODERATOR,
+ 'participant': cls.COLOR_USER_PARTICIPANT,
+ 'visitor': cls.COLOR_USER_VISITOR,
+ 'none': cls.COLOR_USER_NONE,
+ '': cls.COLOR_USER_NONE
+ }
+ return role_mapping.get(role, cls.COLOR_USER_NONE)
+
+ @classmethod
+ def char_affiliation(cls, affiliation):
+ affiliation_mapping = {
+ 'owner': cls.CHAR_AFFILIATION_OWNER,
+ 'admin': cls.CHAR_AFFILIATION_ADMIN,
+ 'member': cls.CHAR_AFFILIATION_MEMBER,
+ 'none': cls.CHAR_AFFILIATION_NONE
+ }
+ return affiliation_mapping.get(affiliation, cls.CHAR_AFFILIATION_NONE)
+
+ @classmethod
+ def color_show(cls, show):
+ show_mapping = {
+ 'xa': cls.COLOR_STATUS_XA,
+ 'none': cls.COLOR_STATUS_NONE,
+ 'dnd': cls.COLOR_STATUS_DND,
+ 'away': cls.COLOR_STATUS_AWAY,
+ 'chat': cls.COLOR_STATUS_CHAT,
+ '': cls.COLOR_STATUS_ONLINE,
+ 'available': cls.COLOR_STATUS_ONLINE,
+ 'unavailable': cls.COLOR_STATUS_UNAVAILABLE,
+ }
+ return show_mapping.get(show, cls.COLOR_STATUS_NONE)
+
# Message text color
COLOR_NORMAL_TEXT = (-1, -1)
COLOR_INFORMATION_TEXT = (5, -1) # TODO
@@ -89,6 +124,9 @@ class Theme(object):
# fixed color if need be.
COLOR_HIGHLIGHT_NICK = "reverse"
+ # Color of the participant JID in a MUC
+ COLOR_MUC_JID = (4, -1)
+
# User list color
COLOR_USER_VISITOR = (239, -1)
COLOR_USER_PARTICIPANT = (4, -1)
@@ -266,6 +304,20 @@ def color_256_to_16(color):
return color
return table_256_to_16[color]
+def dump_tuple(tup):
+ """
+ Dump a tuple to a string of fg,bg,attr (optional)
+ """
+ return ','.join(str(i) for i in tup)
+
+def read_tuple(_str):
+ """
+ Read a tuple dumped with dump_tumple
+ """
+ attrs = _str.split(',')
+ char = attrs[2] if len(attrs) > 2 else None
+ return (int(attrs[0]), int(attrs[1])), char
+
def to_curses_attr(color_tuple):
"""
Takes a color tuple (as defined at the top of this file) and