summaryrefslogtreecommitdiff
path: root/src/theming.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-11-16 02:01:38 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-11-16 02:09:30 +0100
commitd67ec3278ae5a56373597c6f2a259d9dba9cc809 (patch)
tree1b1804fdfbd8126080df80cbda2d2332f6c6c20b /src/theming.py
parent241369c3309f43cc710fd66dc8b0348c66f92293 (diff)
downloadpoezio-d67ec3278ae5a56373597c6f2a259d9dba9cc809.tar.gz
poezio-d67ec3278ae5a56373597c6f2a259d9dba9cc809.tar.bz2
poezio-d67ec3278ae5a56373597c6f2a259d9dba9cc809.tar.xz
poezio-d67ec3278ae5a56373597c6f2a259d9dba9cc809.zip
Add an optional vertical tab list.
Diffstat (limited to 'src/theming.py')
-rw-r--r--src/theming.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/theming.py b/src/theming.py
index 0a7ab22d..0fe45d59 100644
--- a/src/theming.py
+++ b/src/theming.py
@@ -114,6 +114,13 @@ class Theme(object):
COLOR_TAB_PRIVATE = (7, 2)
COLOR_TAB_DISCONNECTED = (7, 8)
+ COLOR_VERTICAL_TAB_NORMAL = (4, -1)
+ COLOR_VERTICAL_TAB_CURRENT = (7, 4)
+ COLOR_VERTICAL_TAB_NEW_MESSAGE = (5, -1)
+ COLOR_VERTICAL_TAB_HIGHLIGHT = (1, -1)
+ COLOR_VERTICAL_TAB_PRIVATE = (2, -1)
+ COLOR_VERTICAL_TAB_DISCONNECTED = (8, -1)
+
# Nickname colors
# A list of colors randomly attributed to nicks in MUCs
# Setting more colors makes it harder to have two nicks with the same color,
@@ -151,6 +158,9 @@ class Theme(object):
COLOR_QUIT_CHAR = (1, -1)
COLOR_KICK_CHAR = (1, -1)
+ # Vertical tab list color
+ COLOR_VERTICAL_TAB_NUMBER = (34, -1)
+
# This is the default theme object, used if no theme is defined in the conf
theme = Theme()