Using QFontDialog instead of QFontComboBox, and GUI font is no selectable
This commit is contained in:
+6
-1
@@ -86,7 +86,8 @@ class Config:
|
|||||||
self.guiIcons = "typicons_grey_light"
|
self.guiIcons = "typicons_grey_light"
|
||||||
self.guiDark = False
|
self.guiDark = False
|
||||||
self.guiLang = "en" # Hardcoded for now
|
self.guiLang = "en" # Hardcoded for now
|
||||||
self.guiFontSize = 12
|
self.guiFont = ""
|
||||||
|
self.guiFontSize = 11
|
||||||
|
|
||||||
## Sizes
|
## Sizes
|
||||||
self.winGeometry = [1100, 650]
|
self.winGeometry = [1100, 650]
|
||||||
@@ -317,6 +318,9 @@ class Config:
|
|||||||
self.guiDark = self._parseLine(
|
self.guiDark = self._parseLine(
|
||||||
cnfParse, cnfSec, "guidark", self.CNF_BOOL, self.guiDark
|
cnfParse, cnfSec, "guidark", self.CNF_BOOL, self.guiDark
|
||||||
)
|
)
|
||||||
|
self.guiFont = self._parseLine(
|
||||||
|
cnfParse, cnfSec, "guifont", self.CNF_STR, self.guiFont
|
||||||
|
)
|
||||||
self.guiFontSize = self._parseLine(
|
self.guiFontSize = self._parseLine(
|
||||||
cnfParse, cnfSec, "guifontsize", self.CNF_INT, self.guiFontSize
|
cnfParse, cnfSec, "guifontsize", self.CNF_INT, self.guiFontSize
|
||||||
)
|
)
|
||||||
@@ -471,6 +475,7 @@ class Config:
|
|||||||
cnfParse.set(cnfSec,"syntax", str(self.guiSyntax))
|
cnfParse.set(cnfSec,"syntax", str(self.guiSyntax))
|
||||||
cnfParse.set(cnfSec,"icons", str(self.guiIcons))
|
cnfParse.set(cnfSec,"icons", str(self.guiIcons))
|
||||||
cnfParse.set(cnfSec,"guidark", str(self.guiDark))
|
cnfParse.set(cnfSec,"guidark", str(self.guiDark))
|
||||||
|
cnfParse.set(cnfSec,"guifont", str(self.guiFont))
|
||||||
cnfParse.set(cnfSec,"guifontsize", str(self.guiFontSize))
|
cnfParse.set(cnfSec,"guifontsize", str(self.guiFontSize))
|
||||||
|
|
||||||
## Sizes
|
## Sizes
|
||||||
|
|||||||
@@ -107,7 +107,7 @@ class QConfigLayout(QGridLayout):
|
|||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
def addRow(self, theLabel, theWidget, helpText=None, theUnit=None):
|
def addRow(self, theLabel, theWidget, helpText=None, theUnit=None, theButton=None):
|
||||||
"""Add a label and a widget as a new row of the grid.
|
"""Add a label and a widget as a new row of the grid.
|
||||||
"""
|
"""
|
||||||
thisEntry = {
|
thisEntry = {
|
||||||
@@ -152,6 +152,12 @@ class QConfigLayout(QGridLayout):
|
|||||||
controlBox.addWidget(QLabel(theUnit), 0, Qt.AlignVCenter)
|
controlBox.addWidget(QLabel(theUnit), 0, Qt.AlignVCenter)
|
||||||
controlBox.setSpacing(8)
|
controlBox.setSpacing(8)
|
||||||
self.addLayout(controlBox, self._nextRow, 1, 1, 1, Qt.AlignRight | Qt.AlignVCenter)
|
self.addLayout(controlBox, self._nextRow, 1, 1, 1, Qt.AlignRight | Qt.AlignVCenter)
|
||||||
|
elif theButton is not None:
|
||||||
|
controlBox = QHBoxLayout()
|
||||||
|
controlBox.addWidget(qWidget, 0, Qt.AlignVCenter)
|
||||||
|
controlBox.addWidget(theButton, 0, Qt.AlignVCenter)
|
||||||
|
controlBox.setSpacing(8)
|
||||||
|
self.addLayout(controlBox, self._nextRow, 1, 1, 1, Qt.AlignRight | Qt.AlignVCenter)
|
||||||
else:
|
else:
|
||||||
self.addWidget(qWidget, self._nextRow, 1, 1, 1, Qt.AlignRight | Qt.AlignVCenter)
|
self.addWidget(qWidget, self._nextRow, 1, 1, 1, Qt.AlignRight | Qt.AlignVCenter)
|
||||||
|
|
||||||
|
|||||||
@@ -33,9 +33,8 @@ from os import path
|
|||||||
from PyQt5.QtCore import Qt
|
from PyQt5.QtCore import Qt
|
||||||
from PyQt5.QtGui import QFont
|
from PyQt5.QtGui import QFont
|
||||||
from PyQt5.QtWidgets import (
|
from PyQt5.QtWidgets import (
|
||||||
QDialog, QWidget, QHBoxLayout, QVBoxLayout, QTabWidget, QComboBox, QSpinBox,
|
QDialog, QWidget, QComboBox, QSpinBox, QPushButton, QLineEdit, QMessageBox,
|
||||||
QPushButton, QFontComboBox, QLineEdit, QDialogButtonBox, QMessageBox,
|
QDialogButtonBox, QFileDialog, QFontDialog
|
||||||
QFileDialog
|
|
||||||
)
|
)
|
||||||
|
|
||||||
from nw.gui.additions import QSwitch, QConfigLayout, PagedDialog
|
from nw.gui.additions import QSwitch, QConfigLayout, PagedDialog
|
||||||
@@ -183,6 +182,21 @@ class GuiConfigEditGeneralTab(QWidget):
|
|||||||
"This may improve the look of icons on dark themes."
|
"This may improve the look of icons on dark themes."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
## Font Family
|
||||||
|
self.guiFont = QLineEdit()
|
||||||
|
self.guiFont.setReadOnly(True)
|
||||||
|
self.guiFont.setFixedWidth(162)
|
||||||
|
self.guiFont.setText(self.mainConf.guiFont)
|
||||||
|
self.fontButton = QPushButton("...")
|
||||||
|
self.fontButton.setMaximumWidth(30)
|
||||||
|
self.fontButton.clicked.connect(self._selectFont)
|
||||||
|
self.mainForm.addRow(
|
||||||
|
"Font family",
|
||||||
|
self.guiFont,
|
||||||
|
"Changing this requires restarting %s." % nw.__package__,
|
||||||
|
theButton = self.fontButton
|
||||||
|
)
|
||||||
|
|
||||||
## Font Size
|
## Font Size
|
||||||
self.guiFontSize = QSpinBox(self)
|
self.guiFontSize = QSpinBox(self)
|
||||||
self.guiFontSize.setMinimum(8)
|
self.guiFontSize.setMinimum(8)
|
||||||
@@ -193,7 +207,7 @@ class GuiConfigEditGeneralTab(QWidget):
|
|||||||
"Font size",
|
"Font size",
|
||||||
self.guiFontSize,
|
self.guiFontSize,
|
||||||
"Changing this requires restarting %s." % nw.__package__,
|
"Changing this requires restarting %s." % nw.__package__,
|
||||||
theUnit="pt"
|
theUnit = "pt"
|
||||||
)
|
)
|
||||||
|
|
||||||
# GUI Settings
|
# GUI Settings
|
||||||
@@ -279,6 +293,7 @@ class GuiConfigEditGeneralTab(QWidget):
|
|||||||
guiTheme = self.selectTheme.currentData()
|
guiTheme = self.selectTheme.currentData()
|
||||||
guiIcons = self.selectIcons.currentData()
|
guiIcons = self.selectIcons.currentData()
|
||||||
guiDark = self.preferDarkIcons.isChecked()
|
guiDark = self.preferDarkIcons.isChecked()
|
||||||
|
guiFont = self.guiFont.text()
|
||||||
guiFontSize = self.guiFontSize.value()
|
guiFontSize = self.guiFontSize.value()
|
||||||
showFullPath = self.showFullPath.isChecked()
|
showFullPath = self.showFullPath.isChecked()
|
||||||
autoSaveDoc = self.autoSaveDoc.value()
|
autoSaveDoc = self.autoSaveDoc.value()
|
||||||
@@ -290,11 +305,13 @@ class GuiConfigEditGeneralTab(QWidget):
|
|||||||
# Check if restart is needed
|
# Check if restart is needed
|
||||||
needsRestart |= self.mainConf.guiTheme != guiTheme
|
needsRestart |= self.mainConf.guiTheme != guiTheme
|
||||||
needsRestart |= self.mainConf.guiIcons != guiIcons
|
needsRestart |= self.mainConf.guiIcons != guiIcons
|
||||||
|
needsRestart |= self.mainConf.guiFont != guiFont
|
||||||
needsRestart |= self.mainConf.guiFontSize != guiFontSize
|
needsRestart |= self.mainConf.guiFontSize != guiFontSize
|
||||||
|
|
||||||
self.mainConf.guiTheme = guiTheme
|
self.mainConf.guiTheme = guiTheme
|
||||||
self.mainConf.guiIcons = guiIcons
|
self.mainConf.guiIcons = guiIcons
|
||||||
self.mainConf.guiDark = guiDark
|
self.mainConf.guiDark = guiDark
|
||||||
|
self.mainConf.guiFont = guiFont
|
||||||
self.mainConf.guiFontSize = guiFontSize
|
self.mainConf.guiFontSize = guiFontSize
|
||||||
self.mainConf.showFullPath = showFullPath
|
self.mainConf.showFullPath = showFullPath
|
||||||
self.mainConf.autoSaveDoc = autoSaveDoc
|
self.mainConf.autoSaveDoc = autoSaveDoc
|
||||||
@@ -337,6 +354,18 @@ class GuiConfigEditGeneralTab(QWidget):
|
|||||||
self.askBeforeBackup.setEnabled(theState)
|
self.askBeforeBackup.setEnabled(theState)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
def _selectFont(self):
|
||||||
|
"""Open the QFontDialog and set a font for the font style.
|
||||||
|
"""
|
||||||
|
currFont = QFont()
|
||||||
|
currFont.setFamily(self.mainConf.guiFont)
|
||||||
|
currFont.setPointSize(self.mainConf.guiFontSize)
|
||||||
|
theFont, theStatus = QFontDialog.getFont(currFont, self)
|
||||||
|
if theStatus:
|
||||||
|
self.guiFont.setText(theFont.family())
|
||||||
|
self.guiFontSize.setValue(theFont.pointSize())
|
||||||
|
return
|
||||||
|
|
||||||
# END Class GuiConfigEditGeneralTab
|
# END Class GuiConfigEditGeneralTab
|
||||||
|
|
||||||
class GuiConfigEditLayoutTab(QWidget):
|
class GuiConfigEditLayoutTab(QWidget):
|
||||||
@@ -357,14 +386,20 @@ class GuiConfigEditLayoutTab(QWidget):
|
|||||||
# ==========
|
# ==========
|
||||||
self.mainForm.addGroupLabel("Text Style")
|
self.mainForm.addGroupLabel("Text Style")
|
||||||
|
|
||||||
|
|
||||||
## Font Family
|
## Font Family
|
||||||
self.textStyleFont = QFontComboBox()
|
self.textStyleFont = QLineEdit()
|
||||||
self.textStyleFont.setMaximumWidth(200)
|
self.textStyleFont.setReadOnly(True)
|
||||||
self.textStyleFont.setCurrentFont(QFont(self.mainConf.textFont))
|
self.textStyleFont.setFixedWidth(162)
|
||||||
|
self.textStyleFont.setText(self.mainConf.textFont)
|
||||||
|
self.fontButton = QPushButton("...")
|
||||||
|
self.fontButton.setMaximumWidth(30)
|
||||||
|
self.fontButton.clicked.connect(self._selectFont)
|
||||||
self.mainForm.addRow(
|
self.mainForm.addRow(
|
||||||
"Font family",
|
"Font family",
|
||||||
self.textStyleFont,
|
self.textStyleFont,
|
||||||
"Font for the document editor and viewer."
|
"Font for the document editor and viewer.",
|
||||||
|
theButton = self.fontButton
|
||||||
)
|
)
|
||||||
|
|
||||||
## Font Size
|
## Font Size
|
||||||
@@ -376,7 +411,7 @@ class GuiConfigEditLayoutTab(QWidget):
|
|||||||
self.mainForm.addRow(
|
self.mainForm.addRow(
|
||||||
"Font size",
|
"Font size",
|
||||||
self.textStyleSize,
|
self.textStyleSize,
|
||||||
theUnit="pt"
|
theUnit = "pt"
|
||||||
)
|
)
|
||||||
|
|
||||||
# Text Flow
|
# Text Flow
|
||||||
@@ -477,7 +512,7 @@ class GuiConfigEditLayoutTab(QWidget):
|
|||||||
validEntries = True
|
validEntries = True
|
||||||
needsRestart = False
|
needsRestart = False
|
||||||
|
|
||||||
textFont = self.textStyleFont.currentFont().family()
|
textFont = self.textStyleFont.text()
|
||||||
textSize = self.textStyleSize.value()
|
textSize = self.textStyleSize.value()
|
||||||
textWidth = self.textFlowMax.value()
|
textWidth = self.textFlowMax.value()
|
||||||
zenWidth = self.zenDocWidth.value()
|
zenWidth = self.zenDocWidth.value()
|
||||||
@@ -503,6 +538,22 @@ class GuiConfigEditLayoutTab(QWidget):
|
|||||||
|
|
||||||
return validEntries, needsRestart
|
return validEntries, needsRestart
|
||||||
|
|
||||||
|
##
|
||||||
|
# Slots
|
||||||
|
##
|
||||||
|
|
||||||
|
def _selectFont(self):
|
||||||
|
"""Open the QFontDialog and set a font for the font style.
|
||||||
|
"""
|
||||||
|
currFont = QFont()
|
||||||
|
currFont.setFamily(self.mainConf.guiFont)
|
||||||
|
currFont.setPointSize(self.mainConf.guiFontSize)
|
||||||
|
theFont, theStatus = QFontDialog.getFont(currFont, self)
|
||||||
|
if theStatus:
|
||||||
|
self.textStyleFont.setText(theFont.family())
|
||||||
|
self.textStyleSize.setValue(theFont.pointSize())
|
||||||
|
return
|
||||||
|
|
||||||
# END Class GuiConfigEditLayoutTab
|
# END Class GuiConfigEditLayoutTab
|
||||||
|
|
||||||
class GuiConfigEditEditingTab(QWidget):
|
class GuiConfigEditEditingTab(QWidget):
|
||||||
|
|||||||
+35
-19
@@ -33,7 +33,7 @@ from os import path, listdir
|
|||||||
|
|
||||||
from PyQt5.QtWidgets import qApp
|
from PyQt5.QtWidgets import qApp
|
||||||
from PyQt5.QtGui import (
|
from PyQt5.QtGui import (
|
||||||
QPalette, QColor, QIcon, QFontMetrics, QFontDatabase
|
QPalette, QColor, QIcon, QFont, QFontMetrics, QFontDatabase
|
||||||
)
|
)
|
||||||
|
|
||||||
from nw.constants import nwAlert
|
from nw.constants import nwAlert
|
||||||
@@ -50,7 +50,7 @@ class GuiTheme:
|
|||||||
self.theIcons = GuiIcons(self.theParent)
|
self.theIcons = GuiIcons(self.theParent)
|
||||||
self.guiPalette = QPalette()
|
self.guiPalette = QPalette()
|
||||||
self.guiPath = "gui"
|
self.guiPath = "gui"
|
||||||
self.iconPath = "icons"
|
self.fontPath = "fonts"
|
||||||
self.syntaxPath = "syntax"
|
self.syntaxPath = "syntax"
|
||||||
self.cssName = "style.qss"
|
self.cssName = "style.qss"
|
||||||
self.confName = "theme.conf"
|
self.confName = "theme.conf"
|
||||||
@@ -112,14 +112,10 @@ class GuiTheme:
|
|||||||
self.syntaxFile = None
|
self.syntaxFile = None
|
||||||
self.confFile = None
|
self.confFile = None
|
||||||
self.cssFile = None
|
self.cssFile = None
|
||||||
|
self.guiFontDB = QFontDatabase()
|
||||||
|
|
||||||
self.loadFonts()
|
self.loadFonts()
|
||||||
|
self.updateFont()
|
||||||
# Set Font Size and Theme
|
|
||||||
self.guiFont = qApp.font()
|
|
||||||
self.guiFont.setPointSizeF(self.mainConf.guiFontSize)
|
|
||||||
qApp.setFont(self.guiFont)
|
|
||||||
|
|
||||||
self.updateTheme()
|
self.updateTheme()
|
||||||
self.theIcons.updateTheme()
|
self.theIcons.updateTheme()
|
||||||
|
|
||||||
@@ -129,6 +125,7 @@ class GuiTheme:
|
|||||||
|
|
||||||
# Extract Other Info
|
# Extract Other Info
|
||||||
self.guiDPI = qApp.primaryScreen().physicalDotsPerInch()
|
self.guiDPI = qApp.primaryScreen().physicalDotsPerInch()
|
||||||
|
self.guiFont = qApp.font()
|
||||||
|
|
||||||
qMetric = QFontMetrics(self.guiFont)
|
qMetric = QFontMetrics(self.guiFont)
|
||||||
self.fontPointSize = self.guiFont.pointSizeF()
|
self.fontPointSize = self.guiFont.pointSizeF()
|
||||||
@@ -152,29 +149,48 @@ class GuiTheme:
|
|||||||
"""Add the fonts in the assets fonts folder to the app.
|
"""Add the fonts in the assets fonts folder to the app.
|
||||||
"""
|
"""
|
||||||
ttfList = []
|
ttfList = []
|
||||||
fontAssets = path.join(self.mainConf.assetPath, "fonts")
|
fontAssets = path.join(self.mainConf.assetPath, self.fontPath)
|
||||||
for fontFam in listdir(fontAssets):
|
for fontFam in listdir(fontAssets):
|
||||||
fontDir = path.join(fontAssets, fontFam)
|
fontDir = path.join(fontAssets, fontFam)
|
||||||
if path.isdir(fontDir):
|
if path.isdir(fontDir):
|
||||||
for fontFile in listdir(fontDir):
|
if not fontFam in self.guiFontDB.families():
|
||||||
ttfFile = path.join(fontDir, fontFile)
|
for fontFile in listdir(fontDir):
|
||||||
if path.isfile(ttfFile) and fontFile.endswith(".ttf"):
|
ttfFile = path.join(fontDir, fontFile)
|
||||||
ttfList.append(ttfFile)
|
if path.isfile(ttfFile) and fontFile.endswith(".ttf"):
|
||||||
|
ttfList.append(ttfFile)
|
||||||
|
|
||||||
for ttfFile in ttfList:
|
for ttfFile in ttfList:
|
||||||
logger.verbose("Font asset: %s" % path.relpath(ttfFile))
|
logger.verbose("Font asset: %s" % path.relpath(ttfFile))
|
||||||
try:
|
fontID = self.guiFontDB.addApplicationFont(ttfFile)
|
||||||
QFontDatabase.addApplicationFont(ttfFile)
|
if fontID < 0:
|
||||||
except Exception as e:
|
|
||||||
logger.error("Failed to add font: %s" % path.relpath(ttfFile))
|
logger.error("Failed to add font: %s" % path.relpath(ttfFile))
|
||||||
logger.error(str(e))
|
|
||||||
|
return
|
||||||
|
|
||||||
|
def updateFont(self):
|
||||||
|
"""Updated the GUI's font style from settings,
|
||||||
|
"""
|
||||||
|
theFont = QFont()
|
||||||
|
if self.mainConf.guiFont not in self.guiFontDB.families():
|
||||||
|
if self.mainConf.osWindows:
|
||||||
|
# On Windows, default to Cantarell provided by novelWriter
|
||||||
|
theFont.setFamily("Cantarell")
|
||||||
|
theFont.setPointSize(11)
|
||||||
|
else:
|
||||||
|
theFont = self.guiFontDB.systemFont(QFontDatabase.GeneralFont)
|
||||||
|
self.mainConf.guiFont = theFont.family()
|
||||||
|
self.mainConf.guiFontSize = theFont.pointSize()
|
||||||
|
else:
|
||||||
|
theFont.setFamily(self.mainConf.guiFont)
|
||||||
|
theFont.setPointSize(self.mainConf.guiFontSize)
|
||||||
|
|
||||||
|
qApp.setFont(theFont)
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
def updateTheme(self):
|
def updateTheme(self):
|
||||||
"""Update the GUI theme from theme files.
|
"""Update the GUI theme from theme files.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
self.guiTheme = self.mainConf.guiTheme
|
self.guiTheme = self.mainConf.guiTheme
|
||||||
self.guiSyntax = self.mainConf.guiSyntax
|
self.guiSyntax = self.mainConf.guiSyntax
|
||||||
self.themeRoot = self.mainConf.themeRoot
|
self.themeRoot = self.mainConf.themeRoot
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ theme = default
|
|||||||
syntax = default_light
|
syntax = default_light
|
||||||
icons = typicons_grey_light
|
icons = typicons_grey_light
|
||||||
guidark = False
|
guidark = False
|
||||||
guifontsize = 12
|
guifontsize = 11
|
||||||
|
|
||||||
[Sizes]
|
[Sizes]
|
||||||
geometry = 1100, 650
|
geometry = 1100, 650
|
||||||
|
|||||||
Reference in New Issue
Block a user