84 lines
3.1 KiB
Python
84 lines
3.1 KiB
Python
#!/usr/bin/env python3
|
|
|
|
import os
|
|
from PyQt5 import QtCore
|
|
|
|
|
|
class Settings:
|
|
def __init__(self, parent):
|
|
self.parent_window = parent
|
|
self.settings = QtCore.QSettings('Lector', 'Lector')
|
|
|
|
self.default_profile1 = {
|
|
'font': 'Noto Sans',
|
|
'foreground': '#000000',
|
|
'background': '#d8d8d8',
|
|
'padding': 140,
|
|
'font_size': 20,
|
|
'line_spacing': 1.5}
|
|
|
|
self.default_profile2 = {
|
|
'font': 'Roboto',
|
|
'foreground': '#c2c2c2',
|
|
'background': '#161616',
|
|
'padding': 140,
|
|
'font_size': 20,
|
|
'line_spacing': 1.5}
|
|
|
|
self.default_profile3 = {
|
|
'font': 'Roboto',
|
|
'foreground': '#657b83',
|
|
'background': '#002b36',
|
|
'padding': 140,
|
|
'font_size': 20,
|
|
'line_spacing': 1.5}
|
|
|
|
def read_settings(self):
|
|
self.settings.beginGroup('mainWindow')
|
|
self.parent_window.resize(self.settings.value(
|
|
'windowSize',
|
|
QtCore.QSize(1299, 748)))
|
|
self.parent_window.move(self.settings.value(
|
|
'windowPosition',
|
|
QtCore.QPoint(286, 141)))
|
|
self.settings.endGroup()
|
|
|
|
self.settings.beginGroup('runtimeVariables')
|
|
self.parent_window.last_open_path = self.settings.value(
|
|
'lastOpenPath', os.path.expanduser('~'))
|
|
self.parent_window.database_path = self.settings.value(
|
|
'databasePath',
|
|
QtCore.QStandardPaths.writableLocation(QtCore.QStandardPaths.AppDataLocation))
|
|
self.parent_window.display_profiles = self.settings.value(
|
|
'displayProfiles', [
|
|
self.default_profile1,
|
|
self.default_profile2,
|
|
self.default_profile3])
|
|
self.parent_window.current_profile_index = int(self.settings.value(
|
|
'currentProfileIndex', 0))
|
|
self.settings.endGroup()
|
|
|
|
def save_settings(self):
|
|
self.settings.beginGroup('mainWindow')
|
|
self.settings.setValue('windowSize', self.parent_window.size())
|
|
self.settings.setValue('windowPosition', self.parent_window.pos())
|
|
self.settings.endGroup()
|
|
|
|
self.settings.beginGroup('runtimeVariables')
|
|
self.settings.setValue('lastOpenPath', self.parent_window.last_open_path)
|
|
self.settings.setValue('databasePath', self.parent_window.database_path)
|
|
|
|
current_profile1 = self.parent_window.bookToolBar.profileBox.itemData(
|
|
0, QtCore.Qt.UserRole)
|
|
current_profile2 = self.parent_window.bookToolBar.profileBox.itemData(
|
|
1, QtCore.Qt.UserRole)
|
|
current_profile3 = self.parent_window.bookToolBar.profileBox.itemData(
|
|
2, QtCore.Qt.UserRole)
|
|
current_profile_index = self.parent_window.bookToolBar.profileBox.currentIndex()
|
|
self.settings.setValue('displayProfiles', [
|
|
current_profile1,
|
|
current_profile2,
|
|
current_profile3])
|
|
self.settings.setValue('currentProfileIndex', current_profile_index)
|
|
self.settings.endGroup()
|