Added text size and justify as editor options.
This commit is contained in:
+6
-3
@@ -16,8 +16,8 @@ import nw
|
||||
from time import time
|
||||
|
||||
from PyQt5.QtWidgets import QTextEdit
|
||||
from PyQt5.QtCore import QTimer
|
||||
from PyQt5.QtGui import QTextCursor
|
||||
from PyQt5.QtCore import Qt, QTimer
|
||||
from PyQt5.QtGui import QTextCursor, QTextOption
|
||||
|
||||
from nw.gui.dochighlight import GuiDocHighlighter
|
||||
from nw.gui.wordcounter import WordCounter
|
||||
@@ -61,12 +61,15 @@ class GuiDocEditor(QTextEdit):
|
||||
self.setViewportMargins(mLR,mTB,mLR,mTB)
|
||||
|
||||
self.theDoc = self.document()
|
||||
self.hLight = GuiDocHighlighter(self.theDoc)
|
||||
self.theDoc.setDocumentMargin(0)
|
||||
self.theDoc.contentsChange.connect(self._docChange)
|
||||
self.hLight = GuiDocHighlighter(self.theDoc)
|
||||
if self.mainConf.doJustify:
|
||||
self.theDoc.setDefaultTextOption(QTextOption(Qt.AlignJustify))
|
||||
|
||||
self.setMinimumWidth(400)
|
||||
self.setAcceptRichText(False)
|
||||
self.setFontPointSize(self.mainConf.textSize)
|
||||
|
||||
# Set Up Word Count Thread and Timer
|
||||
self.wcInterval = self.mainConf.wordCountTimer
|
||||
|
||||
@@ -37,10 +37,10 @@ class GuiDocHighlighter(QSyntaxHighlighter):
|
||||
self.colVal = (184,200, 0,255)
|
||||
|
||||
self.hStyles = {
|
||||
"header1" : self._makeFormat(self.colHead,"bold",20),
|
||||
"header2" : self._makeFormat(self.colHead,"bold",18),
|
||||
"header3" : self._makeFormat(self.colHead,"bold",16),
|
||||
"header4" : self._makeFormat(self.colHead,"bold",14),
|
||||
"header1" : self._makeFormat(self.colHead,"bold",1.8),
|
||||
"header2" : self._makeFormat(self.colHead,"bold",1.6),
|
||||
"header3" : self._makeFormat(self.colHead,"bold",1.4),
|
||||
"header4" : self._makeFormat(self.colHead,"bold",1.2),
|
||||
"bold" : self._makeFormat(self.colEmph,"bold"),
|
||||
"italic" : self._makeFormat(self.colEmph,"italic"),
|
||||
"strike" : self._makeFormat(self.colEmph,"strike"),
|
||||
@@ -103,8 +103,8 @@ class GuiDocHighlighter(QSyntaxHighlighter):
|
||||
if "underline" in fmtStyle:
|
||||
theFormat.setFontUnderline(True)
|
||||
|
||||
if isinstance(fmtSize,int):
|
||||
theFormat.setFontPointSize(fmtSize)
|
||||
if fmtSize is not None:
|
||||
theFormat.setFontPointSize(round(fmtSize*self.mainConf.textSize))
|
||||
|
||||
return theFormat
|
||||
|
||||
|
||||
Reference in New Issue
Block a user