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

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

 

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

 

"""Initialization of the configuration.""" 

 

import os.path 

import sys 

 

from PyQt5.QtWidgets import QMessageBox 

 

from qutebrowser.config import (config, configdata, configfiles, configtypes, 

configexc, configcommands) 

from qutebrowser.utils import objreg, usertypes, log, standarddir, message 

from qutebrowser.misc import msgbox, objects 

 

 

# Error which happened during init, so we can show a message box. 

_init_errors = None 

 

 

def early_init(args): 

"""Initialize the part of the config which works without a QApplication.""" 

configdata.init() 

 

yaml_config = configfiles.YamlConfig() 

 

config.instance = config.Config(yaml_config=yaml_config) 

config.val = config.ConfigContainer(config.instance) 

config.key_instance = config.KeyConfig(config.instance) 

yaml_config.setParent(config.instance) 

 

for cf in config.change_filters: 

cf.validate() 

 

config_commands = configcommands.ConfigCommands( 

config.instance, config.key_instance) 

objreg.register('config-commands', config_commands) 

 

config_file = os.path.join(standarddir.config(), 'config.py') 

 

try: 

if os.path.exists(config_file): 

configfiles.read_config_py(config_file) 

else: 

configfiles.read_autoconfig() 

except configexc.ConfigFileErrors as e: 

log.config.exception("Error while loading {}".format(e.basename)) 

global _init_errors 

_init_errors = e 

 

configfiles.init() 

 

for opt, val in args.temp_settings: 

try: 

config.instance.set_str(opt, val) 

except configexc.Error as e: 

message.error("set: {} - {}".format(e.__class__.__name__, e)) 

 

objects.backend = get_backend(args) 

 

configtypes.Font.monospace_fonts = config.val.fonts.monospace 

config.instance.changed.connect(_update_monospace_fonts) 

 

_init_envvars() 

 

 

def _init_envvars(): 

"""Initialize environment variables which need to be set early.""" 

if (objects.backend == usertypes.Backend.QtWebEngine and 

config.val.qt.force_software_rendering): 

os.environ['QT_XCB_FORCE_SOFTWARE_OPENGL'] = '1' 

 

if config.val.qt.force_platform is not None: 

os.environ['QT_QPA_PLATFORM'] = config.val.qt.force_platform 

 

if config.val.window.hide_wayland_decoration: 

os.environ['QT_WAYLAND_DISABLE_WINDOWDECORATION'] = '1' 

 

if config.val.qt.highdpi: 

os.environ['QT_AUTO_SCREEN_SCALE_FACTOR'] = '1' 

 

 

@config.change_filter('fonts.monospace', function=True) 

def _update_monospace_fonts(): 

"""Update all fonts if fonts.monospace was set.""" 

configtypes.Font.monospace_fonts = config.val.fonts.monospace 

for name, opt in configdata.DATA.items(): 

if name == 'fonts.monospace': 

continue 

elif not isinstance(opt.typ, configtypes.Font): 

continue 

 

value = config.instance.get_obj(name) 

if value is None or not value.endswith(' monospace'): 

continue 

 

config.instance.changed.emit(name) 

 

 

def get_backend(args): 

"""Find out what backend to use based on available libraries.""" 

str_to_backend = { 

'webkit': usertypes.Backend.QtWebKit, 

'webengine': usertypes.Backend.QtWebEngine, 

} 

 

if args.backend is not None: 

return str_to_backend[args.backend] 

else: 

return str_to_backend[config.val.backend] 

 

 

def late_init(save_manager): 

"""Initialize the rest of the config after the QApplication is created.""" 

global _init_errors 

if _init_errors is not None: 

errbox = msgbox.msgbox(parent=None, 

title="Error while reading config", 

text=_init_errors.to_html(), 

icon=QMessageBox.Warning, 

plain_text=False) 

errbox.exec_() 

_init_errors = None 

 

config.instance.init_save_manager(save_manager) 

configfiles.state.init_save_manager(save_manager) 

 

 

def qt_args(namespace): 

"""Get the Qt QApplication arguments based on an argparse namespace. 

 

Args: 

namespace: The argparse namespace. 

 

Return: 

The argv list to be passed to Qt. 

""" 

argv = [sys.argv[0]] 

 

if namespace.qt_flag is not None: 

argv += ['--' + flag[0] for flag in namespace.qt_flag] 

 

if namespace.qt_arg is not None: 

for name, value in namespace.qt_arg: 

argv += ['--' + name, value] 

 

argv += ['--' + arg for arg in config.val.qt.args] 

return argv