Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: 

 

# Copyright 2014-2018 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/>. 

 

# We get various "abstract but not overridden" warnings 

# pylint: disable=abstract-method 

 

"""Bridge from QWeb(Engine)Settings to our own settings.""" 

 

from PyQt5.QtGui import QFont 

 

from qutebrowser.config import config 

from qutebrowser.utils import log, utils, debug, usertypes 

from qutebrowser.misc import objects 

 

UNSET = object() 

 

 

class Base: 

 

"""Base class for QWeb(Engine)Settings wrappers.""" 

 

def __init__(self, default=UNSET): 

self._default = default 

 

def _get_global_settings(self): 

"""Get a list of global QWeb(Engine)Settings to use.""" 

raise NotImplementedError 

 

def _get_settings(self, settings): 

"""Get a list of QWeb(Engine)Settings objects to use. 

 

Args: 

settings: The QWeb(Engine)Settings instance to use, or None to use 

the global instance. 

 

Return: 

A list of QWeb(Engine)Settings objects. The first one should be 

used for reading. 

""" 

if settings is None: 

return self._get_global_settings() 

else: 

return [settings] 

 

def set(self, value, settings=None): 

"""Set the value of this setting. 

 

Args: 

value: The value to set, or None to restore the default. 

settings: The QWeb(Engine)Settings instance to use, or None to use 

the global instance. 

""" 

69 ↛ 70line 69 didn't jump to line 70, because the condition on line 69 was never true if value is None: 

self.set_default(settings=settings) 

else: 

self._set(value, settings=settings) 

 

def set_default(self, settings=None): 

"""Set the default value for this setting. 

 

Not implemented for most settings. 

""" 

if self._default is UNSET: 

raise ValueError("No default set for {!r}".format(self)) 

else: 

self._set(self._default, settings=settings) 

 

def _set(self, value, settings): 

"""Inner function to set the value of this setting. 

 

Must be overridden by subclasses. 

 

Args: 

value: The value to set. 

settings: The QWeb(Engine)Settings instance to use, or None to use 

the global instance. 

""" 

raise NotImplementedError 

 

 

class Attribute(Base): 

 

"""A setting set via QWeb(Engine)Settings::setAttribute. 

 

Attributes: 

self._attributes: A list of QWeb(Engine)Settings::WebAttribute members. 

""" 

 

ENUM_BASE = None 

 

def __init__(self, *attributes, default=UNSET): 

super().__init__(default=default) 

self._attributes = list(attributes) 

 

def __repr__(self): 

attributes = [debug.qenum_key(self.ENUM_BASE, attr) 

for attr in self._attributes] 

return utils.get_repr(self, attributes=attributes, constructor=True) 

 

def _set(self, value, settings=None): 

for obj in self._get_settings(settings): 

for attribute in self._attributes: 

obj.setAttribute(attribute, value) 

 

 

class Setter(Base): 

 

"""A setting set via a QWeb(Engine)Settings setter method. 

 

This will pass the QWeb(Engine)Settings instance ("self") as first argument 

to the methods, so self._setter is the *unbound* method. 

 

Attributes: 

_setter: The unbound QWeb(Engine)Settings method to set this value. 

_args: An iterable of the arguments to pass to the setter (before the 

value). 

_unpack: Whether to unpack args (True) or pass them directly (False). 

""" 

 

def __init__(self, setter, args=(), unpack=False, default=UNSET): 

super().__init__(default=default) 

self._setter = setter 

self._args = args 

self._unpack = unpack 

 

def __repr__(self): 

return utils.get_repr(self, setter=self._setter, args=self._args, 

unpack=self._unpack, constructor=True) 

 

def _set(self, value, settings=None): 

for obj in self._get_settings(settings): 

args = [obj] 

args.extend(self._args) 

if self._unpack: 

args.extend(value) 

else: 

args.append(value) 

self._setter(*args) 

 

 

class StaticSetter(Setter): 

 

"""A setting set via a static QWeb(Engine)Settings method. 

 

self._setter is the *bound* method. 

""" 

 

def _set(self, value, settings=None): 

if settings is not None: 

raise ValueError("'settings' may not be set with StaticSetters!") 

args = list(self._args) 

if self._unpack: 

args.extend(value) 

else: 

args.append(value) 

self._setter(*args) 

 

 

class FontFamilySetter(Setter): 

 

"""A setter for a font family. 

 

Gets the default value from QFont. 

""" 

 

def __init__(self, setter, font, qfont): 

super().__init__(setter=setter, args=[font]) 

self._qfont = qfont 

 

def set_default(self, settings=None): 

font = QFont() 

font.setStyleHint(self._qfont) 

value = font.defaultFamily() 

self._set(value, settings=settings) 

 

 

def init_mappings(mappings): 

"""Initialize all settings based on a settings mapping.""" 

for option, mapping in mappings.items(): 

value = config.instance.get(option) 

log.config.vdebug("Setting {} to {!r}".format(option, value)) 

mapping.set(value) 

 

 

def update_mappings(mappings, option): 

"""Update global settings when QWeb(Engine)Settings changed.""" 

try: 

mapping = mappings[option] 

except KeyError: 

return 

value = config.instance.get(option) 

mapping.set(value) 

 

 

def init(args): 

"""Initialize all QWeb(Engine)Settings.""" 

if objects.backend == usertypes.Backend.QtWebEngine: 

from qutebrowser.browser.webengine import webenginesettings 

webenginesettings.init(args) 

else: 

from qutebrowser.browser.webkit import webkitsettings 

webkitsettings.init(args) 

 

 

def shutdown(): 

"""Shut down QWeb(Engine)Settings.""" 

if objects.backend == usertypes.Backend.QtWebEngine: 

from qutebrowser.browser.webengine import webenginesettings 

webenginesettings.shutdown() 

else: 

from qutebrowser.browser.webkit import webkitsettings 

webkitsettings.shutdown()