]> jfr.im git - irc/weechat/qweechat.git/blob - src/qweechat/config.py
Display toolkit used in About dialog (PySide or PyQt4)
[irc/weechat/qweechat.git] / src / qweechat / config.py
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
3 #
4 # Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org>
5 #
6 # This file is part of QWeeChat, a Qt remote GUI for WeeChat.
7 #
8 # QWeeChat is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # QWeeChat is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with QWeeChat. If not, see <http://www.gnu.org/licenses/>.
20 #
21
22 #
23 # Configuration for QWeeChat (~/.qweechat/qweechat.conf)
24 #
25
26 import os, ConfigParser
27 import weechat.color as color
28
29 CONFIG_DIR = '%s/.qweechat' % os.getenv('HOME')
30 CONFIG_FILENAME = '%s/qweechat.conf' % CONFIG_DIR
31
32 CONFIG_DEFAULT_SECTIONS = ('relay', 'look', 'color')
33 CONFIG_DEFAULT_OPTIONS = (('relay.server', ''),
34 ('relay.port', ''),
35 ('relay.ssl', 'off'),
36 ('relay.password', ''),
37 ('relay.autoconnect', 'off'),
38 ('look.debug', 'off'),
39 ('look.statusbar', 'off'))
40
41 # Default colors for WeeChat color options (option name, #rgb value)
42 CONFIG_DEFAULT_COLOR_OPTIONS = (('separator', '#000066'), # 0
43 ('chat', '#000000'), # 1
44 ('chat_time', '#999999'), # 2
45 ('chat_time_delimiters', '#000000'), # 3
46 ('chat_prefix_error', '#FF6633'), # 4
47 ('chat_prefix_network', '#990099'), # 5
48 ('chat_prefix_action', '#000000'), # 6
49 ('chat_prefix_join', '#00CC00'), # 7
50 ('chat_prefix_quit', '#CC0000'), # 8
51 ('chat_prefix_more', '#CC00FF'), # 9
52 ('chat_prefix_suffix', '#330099'), # 10
53 ('chat_buffer', '#000000'), # 11
54 ('chat_server', '#000000'), # 12
55 ('chat_channel', '#000000'), # 13
56 ('chat_nick', '#000000'), # 14
57 ('chat_nick_self', '*#000000'), # 15
58 ('chat_nick_other', '#000000'), # 16
59 ('', '#000000'), # 17 (nick1 -- obsolete)
60 ('', '#000000'), # 18 (nick2 -- obsolete)
61 ('', '#000000'), # 19 (nick3 -- obsolete)
62 ('', '#000000'), # 20 (nick4 -- obsolete)
63 ('', '#000000'), # 21 (nick5 -- obsolete)
64 ('', '#000000'), # 22 (nick6 -- obsolete)
65 ('', '#000000'), # 23 (nick7 -- obsolete)
66 ('', '#000000'), # 24 (nick8 -- obsolete)
67 ('', '#000000'), # 25 (nick9 -- obsolete)
68 ('', '#000000'), # 26 (nick10 -- obsolete)
69 ('chat_host', '#666666'), # 27
70 ('chat_delimiters', '#9999FF'), # 28
71 ('chat_highlight', '#3399CC'), # 29
72 ('chat_read_marker', '#000000'), # 30
73 ('chat_text_found', '#000000'), # 31
74 ('chat_value', '#000000'), # 32
75 ('chat_prefix_buffer', '#000000'), # 33
76 ('chat_tags', '#000000'), # 34
77 ('chat_inactive_window', '#000000'), # 35
78 ('chat_inactive_buffer', '#000000'), # 36
79 ('chat_prefix_buffer_inactive_buffer', '#000000')) # 37
80 config_color_options = []
81
82
83 def read():
84 """Read config file."""
85 global config_color_options
86 config = ConfigParser.RawConfigParser()
87 if os.path.isfile(CONFIG_FILENAME):
88 config.read(CONFIG_FILENAME)
89
90 # add missing sections/options
91 for section in CONFIG_DEFAULT_SECTIONS:
92 if not config.has_section(section):
93 config.add_section(section)
94 for option in reversed(CONFIG_DEFAULT_OPTIONS):
95 section, name = option[0].split('.', 1)
96 if not config.has_option(section, name):
97 config.set(section, name, option[1])
98 section = 'color'
99 for option in reversed(CONFIG_DEFAULT_COLOR_OPTIONS):
100 if option[0] and not config.has_option(section, option[0]):
101 config.set(section, option[0], option[1])
102
103 # build list of color options
104 config_color_options = []
105 for option in CONFIG_DEFAULT_COLOR_OPTIONS:
106 if option[0]:
107 config_color_options.append(config.get('color', option[0]))
108 else:
109 config_color_options.append('#000000')
110
111 return config
112
113 def write(config):
114 """Write config file."""
115 if not os.path.exists(CONFIG_DIR):
116 os.mkdir(CONFIG_DIR, 0o0755)
117 with open(CONFIG_FILENAME, 'wb') as cfg:
118 config.write(cfg)
119
120 def color_options():
121 global config_color_options
122 return config_color_options