2014-01-29 15:30:19 +01:00
|
|
|
"""Configuration storage and config-related utilities.
|
|
|
|
|
|
|
|
config -- The main Config object.
|
|
|
|
colordict -- All configured colors.
|
|
|
|
default_config -- The default config as dict.
|
|
|
|
MONOSPACE -- A list of suitable monospace fonts.
|
2014-02-07 20:21:50 +01:00
|
|
|
|
2014-01-29 15:30:19 +01:00
|
|
|
"""
|
|
|
|
|
2014-02-06 14:01:23 +01:00
|
|
|
# Copyright 2014 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
|
|
|
#
|
|
|
|
# This file is part of qutebrowser.
|
|
|
|
#
|
|
|
|
# qutebrowser is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# qutebrowser is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2014-01-27 21:42:00 +01:00
|
|
|
import os.path
|
|
|
|
import os
|
2014-01-31 10:24:00 +01:00
|
|
|
import io
|
2014-01-27 21:42:00 +01:00
|
|
|
import logging
|
2014-02-07 14:01:17 +01:00
|
|
|
from configparser import ConfigParser, ExtendedInterpolation
|
2014-01-27 21:42:00 +01:00
|
|
|
|
2014-01-28 12:21:00 +01:00
|
|
|
config = None
|
|
|
|
colordict = {}
|
2014-02-10 07:08:52 +01:00
|
|
|
fontdict = {}
|
2014-01-28 12:21:00 +01:00
|
|
|
|
2014-01-30 08:25:49 +01:00
|
|
|
default_config = """
|
2014-02-07 20:23:00 +01:00
|
|
|
[general]
|
|
|
|
show_completion = true
|
|
|
|
space_scroll = 200
|
|
|
|
ignorecase = true
|
|
|
|
wrapsearch = true
|
|
|
|
startpage = http://www.duckduckgo.com/
|
|
|
|
addressbar_dns_lookup = false
|
2014-02-09 20:57:23 +01:00
|
|
|
auto_search = true
|
2014-02-07 20:23:00 +01:00
|
|
|
|
|
|
|
[searchengines]
|
2014-02-10 07:07:32 +01:00
|
|
|
DEFAULT = ${duckduckgo}
|
2014-02-07 20:23:00 +01:00
|
|
|
duckduckgo = https://duckduckgo.com/?q={}
|
|
|
|
ddg = ${duckduckgo}
|
|
|
|
google = https://encrypted.google.com/search?q={}
|
|
|
|
g = ${google}
|
|
|
|
wikipedia = http://en.wikipedia.org/w/index.php?title=Special:Search&search={}
|
|
|
|
wiki = ${wikipedia}
|
|
|
|
|
|
|
|
[keybind]
|
|
|
|
o = open
|
|
|
|
go = opencur
|
|
|
|
O = tabopen
|
|
|
|
gO = tabopencur
|
|
|
|
d = tabclose
|
|
|
|
J = tabnext
|
|
|
|
K = tabprev
|
|
|
|
r = reload
|
|
|
|
H = back
|
|
|
|
L = forward
|
|
|
|
h = scroll -50 0
|
|
|
|
j = scroll 0 50
|
|
|
|
k = scroll 0 -50
|
|
|
|
l = scroll 50 0
|
|
|
|
u = undo
|
|
|
|
gg = scroll_perc_y 0
|
|
|
|
G = scroll_perc_y
|
|
|
|
n = nextsearch
|
|
|
|
yy = yank
|
|
|
|
yY = yank sel
|
|
|
|
yt = yanktitle
|
|
|
|
yT = yanktitle sel
|
|
|
|
pp = paste
|
|
|
|
pP = paste sel
|
|
|
|
Pp = tabpaste
|
|
|
|
PP = tabpaste sel
|
|
|
|
@Ctrl-Q@ = quit
|
|
|
|
@Ctrl-Shift-T@ = undo
|
|
|
|
@Ctrl-W@ = tabclose
|
|
|
|
@Ctrl-T@ = tabopen about:blank
|
|
|
|
|
|
|
|
[colors]
|
|
|
|
completion.fg = #333333
|
|
|
|
completion.item.bg = white
|
|
|
|
completion.category.bg = qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
|
|
|
stop:0 #e4e4e4, stop:1 #dbdbdb)
|
|
|
|
completion.category.border.top = #808080
|
|
|
|
completion.category.border.bottom = #bbbbbb
|
|
|
|
completion.item.selected.fg = #333333
|
|
|
|
completion.item.selected.bg = #ffec8b
|
|
|
|
completion.item.selected.border.top = #f2f2c0
|
|
|
|
completion.item.selected.border.bottom = #e6e680
|
|
|
|
completion.match.fg = red
|
|
|
|
statusbar.progress.bg = white
|
|
|
|
statusbar.progress.bg.error = red
|
|
|
|
statusbar.bg = black
|
|
|
|
statusbar.fg = white
|
|
|
|
statusbar.bg.error = red
|
|
|
|
tab.bg = grey
|
|
|
|
tab.bg.selected = black
|
|
|
|
tab.fg = white
|
|
|
|
tab.seperator = white
|
2014-01-28 15:20:58 +01:00
|
|
|
|
2014-02-10 07:03:51 +01:00
|
|
|
[fonts]
|
|
|
|
_monospace = Monospace, "DejaVu Sans Mono", Consolas, Monaco,
|
|
|
|
"Bitstream Vera Sans Mono", "Andale Mono", "Liberation Mono",
|
|
|
|
"Courier New", Courier, monospace, Fixed, Terminal
|
|
|
|
completion = 8pt ${_monospace}
|
|
|
|
tabbar = 8pt ${_monospace}
|
|
|
|
statusbar = 8pt ${_monospace}
|
|
|
|
"""
|
2014-01-28 15:20:58 +01:00
|
|
|
|
2014-01-28 23:04:02 +01:00
|
|
|
|
2014-01-28 12:21:00 +01:00
|
|
|
def init(confdir):
|
2014-01-29 15:30:19 +01:00
|
|
|
"""Initialize the global objects based on the config in configdir."""
|
2014-02-10 07:03:51 +01:00
|
|
|
global config, colordict, fontdict
|
2014-01-28 12:21:00 +01:00
|
|
|
config = Config(confdir)
|
|
|
|
try:
|
|
|
|
colordict = ColorDict(config['colors'])
|
|
|
|
except KeyError:
|
|
|
|
colordict = ColorDict()
|
2014-02-10 07:03:51 +01:00
|
|
|
fontdict = FontDict(config['fonts'])
|
2014-01-28 12:21:00 +01:00
|
|
|
|
2014-01-28 23:04:02 +01:00
|
|
|
|
2014-01-28 12:21:00 +01:00
|
|
|
def get_stylesheet(template):
|
2014-01-29 15:30:19 +01:00
|
|
|
"""Return a formatted stylesheet based on a template."""
|
2014-02-10 07:03:51 +01:00
|
|
|
return template.strip().format(color=colordict, font=fontdict)
|
2014-01-28 12:21:00 +01:00
|
|
|
|
2014-01-28 23:04:02 +01:00
|
|
|
|
2014-01-28 12:21:00 +01:00
|
|
|
class ColorDict(dict):
|
2014-02-07 20:21:50 +01:00
|
|
|
|
2014-01-29 15:30:19 +01:00
|
|
|
"""A dict aimed at Qt stylesheet colors."""
|
|
|
|
|
2014-01-28 12:21:00 +01:00
|
|
|
def __getitem__(self, key):
|
2014-01-29 15:30:19 +01:00
|
|
|
"""Override dict __getitem__.
|
|
|
|
|
|
|
|
If a value wasn't found, return an empty string.
|
|
|
|
(Color not defined, so no output in the stylesheet)
|
|
|
|
|
|
|
|
If the key has a .fg. element in it, return color: X;.
|
|
|
|
If the key has a .bg. element in it, return background-color: X;.
|
|
|
|
|
|
|
|
In all other cases, return the plain value.
|
|
|
|
|
2014-02-07 20:21:50 +01:00
|
|
|
"""
|
2014-01-28 12:21:00 +01:00
|
|
|
try:
|
|
|
|
val = super().__getitem__(key)
|
|
|
|
except KeyError:
|
|
|
|
return ''
|
|
|
|
if 'fg' in key.split('.'):
|
|
|
|
return 'color: {};'.format(val)
|
|
|
|
elif 'bg' in key.split('.'):
|
|
|
|
return 'background-color: {};'.format(val)
|
|
|
|
else:
|
|
|
|
return val
|
|
|
|
|
|
|
|
def getraw(self, key):
|
2014-01-29 15:30:19 +01:00
|
|
|
"""Get a value without the transformations done in __getitem__.
|
|
|
|
|
|
|
|
Returns a value, or None if the value wasn't found.
|
2014-02-07 20:21:50 +01:00
|
|
|
|
2014-01-29 15:30:19 +01:00
|
|
|
"""
|
2014-01-28 12:21:00 +01:00
|
|
|
try:
|
|
|
|
return super().__getitem__(key)
|
|
|
|
except KeyError:
|
|
|
|
return None
|
|
|
|
|
2014-01-28 23:04:02 +01:00
|
|
|
|
2014-02-10 07:03:51 +01:00
|
|
|
class FontDict(dict):
|
|
|
|
|
|
|
|
"""A dict aimed at Qt stylesheet fonts."""
|
|
|
|
|
|
|
|
def __getitem__(self, key):
|
|
|
|
"""Override dict __getitem__.
|
|
|
|
|
|
|
|
If a value wasn't found, return an empty string.
|
|
|
|
(Color not defined, so no output in the stylesheet)
|
|
|
|
|
|
|
|
In all other cases, return font: <value>.
|
|
|
|
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
val = super().__getitem__(key)
|
|
|
|
except KeyError:
|
|
|
|
return ''
|
|
|
|
else:
|
|
|
|
return 'font: {};'.format(val)
|
|
|
|
|
|
|
|
def getraw(self, key):
|
|
|
|
"""Get a value without the transformations done in __getitem__.
|
|
|
|
|
|
|
|
Returns a value, or None if the value wasn't found.
|
|
|
|
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
return super().__getitem__(key)
|
|
|
|
except KeyError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2014-01-27 21:42:00 +01:00
|
|
|
class Config(ConfigParser):
|
2014-02-07 20:21:50 +01:00
|
|
|
|
2014-01-29 15:30:19 +01:00
|
|
|
"""Our own ConfigParser subclass."""
|
|
|
|
|
2014-01-27 21:42:00 +01:00
|
|
|
configdir = None
|
|
|
|
FNAME = 'config'
|
2014-01-30 23:05:39 +01:00
|
|
|
default_cp = None
|
|
|
|
config_loaded = False
|
2014-01-27 21:42:00 +01:00
|
|
|
|
|
|
|
def __init__(self, configdir):
|
2014-01-29 15:30:19 +01:00
|
|
|
"""Config constructor.
|
|
|
|
|
|
|
|
configdir -- directory to store the config in.
|
2014-02-07 20:21:50 +01:00
|
|
|
|
2014-01-29 15:30:19 +01:00
|
|
|
"""
|
2014-02-07 14:01:17 +01:00
|
|
|
super().__init__(interpolation=ExtendedInterpolation())
|
|
|
|
self.default_cp = ConfigParser(interpolation=ExtendedInterpolation())
|
2014-01-30 23:05:39 +01:00
|
|
|
self.default_cp.optionxform = lambda opt: opt # be case-insensitive
|
|
|
|
self.default_cp.read_string(default_config)
|
2014-02-01 20:55:37 +01:00
|
|
|
if not self.configdir:
|
|
|
|
return
|
2014-01-28 23:04:02 +01:00
|
|
|
self.optionxform = lambda opt: opt # be case-insensitive
|
2014-01-27 21:42:00 +01:00
|
|
|
self.configdir = configdir
|
|
|
|
self.configfile = os.path.join(self.configdir, self.FNAME)
|
|
|
|
if not os.path.isfile(self.configfile):
|
2014-01-30 23:05:39 +01:00
|
|
|
return
|
2014-01-27 21:42:00 +01:00
|
|
|
logging.debug("Reading config from {}".format(self.configfile))
|
|
|
|
self.read(self.configfile)
|
2014-01-30 23:05:39 +01:00
|
|
|
self.config_loaded = True
|
2014-01-27 21:42:00 +01:00
|
|
|
|
2014-01-30 23:05:39 +01:00
|
|
|
def __getitem__(self, key):
|
|
|
|
"""Get an item from the configparser or default dict.
|
|
|
|
|
|
|
|
Extends ConfigParser's __getitem__.
|
2014-02-07 20:21:50 +01:00
|
|
|
|
2014-01-30 23:05:39 +01:00
|
|
|
"""
|
|
|
|
try:
|
|
|
|
return super().__getitem__(key)
|
|
|
|
except KeyError:
|
|
|
|
return self.default_cp[key]
|
|
|
|
|
|
|
|
def get(self, *args, **kwargs):
|
|
|
|
"""Get an item from the configparser or default dict.
|
|
|
|
|
|
|
|
Extends ConfigParser's get().
|
2014-02-07 20:21:50 +01:00
|
|
|
|
2014-01-30 23:05:39 +01:00
|
|
|
"""
|
|
|
|
if 'fallback' in kwargs:
|
|
|
|
del kwargs['fallback']
|
|
|
|
fallback = self.default_cp.get(*args, **kwargs)
|
|
|
|
return super().get(*args, fallback=fallback, **kwargs)
|
2014-01-27 21:42:00 +01:00
|
|
|
|
|
|
|
def save(self):
|
2014-01-29 15:30:19 +01:00
|
|
|
"""Save the config file."""
|
2014-01-30 23:05:39 +01:00
|
|
|
if self.configdir is None or not self.config_loaded:
|
2014-01-27 21:42:00 +01:00
|
|
|
return
|
|
|
|
if not os.path.exists(self.configdir):
|
|
|
|
os.makedirs(self.configdir, 0o755)
|
|
|
|
logging.debug("Saving config to {}".format(self.configfile))
|
|
|
|
with open(self.configfile, 'w') as f:
|
|
|
|
self.write(f)
|
2014-01-31 15:58:14 +01:00
|
|
|
f.flush()
|
|
|
|
os.fsync(f.fileno())
|
2014-01-31 10:24:00 +01:00
|
|
|
|
|
|
|
def dump_userconfig(self):
|
2014-02-07 20:21:50 +01:00
|
|
|
"""Return the part of the config which was changed by the user."""
|
2014-01-31 10:24:00 +01:00
|
|
|
with io.StringIO() as f:
|
|
|
|
self.write(f)
|
|
|
|
return f.getvalue()
|