Add highlight option to build settings and preview
This commit is contained in:
@@ -82,6 +82,7 @@ SETTINGS_TEMPLATE = {
|
||||
"format.stripUnicode": (bool, False),
|
||||
"format.replaceTabs": (bool, False),
|
||||
"format.keepBreaks": (bool, True),
|
||||
"format.showDialogue": (bool, False),
|
||||
"format.firstLineIndent": (bool, False),
|
||||
"format.firstIndentWidth": (float, 1.4),
|
||||
"format.indentFirstPar": (bool, False),
|
||||
@@ -131,6 +132,7 @@ SETTINGS_LABELS = {
|
||||
"format.stripUnicode": QT_TRANSLATE_NOOP("Builds", "Replace Unicode Characters"),
|
||||
"format.replaceTabs": QT_TRANSLATE_NOOP("Builds", "Replace Tabs with Spaces"),
|
||||
"format.keepBreaks": QT_TRANSLATE_NOOP("Builds", "Preserve Hard Line Breaks"),
|
||||
"format.showDialogue": QT_TRANSLATE_NOOP("Builds", "Apply Dialogue Highlighting"),
|
||||
|
||||
"format.grpParIndent": QT_TRANSLATE_NOOP("Builds", "First Line Indent"),
|
||||
"format.firstLineIndent": QT_TRANSLATE_NOOP("Builds", "Enable Indent"),
|
||||
|
||||
@@ -338,6 +338,7 @@ class NWBuildDocument:
|
||||
bldObj.setJustify(self._build.getBool("format.justifyText"))
|
||||
bldObj.setLineHeight(self._build.getFloat("format.lineHeight"))
|
||||
bldObj.setKeepLineBreaks(self._build.getBool("format.keepBreaks"))
|
||||
bldObj.setDialogueHighlight(self._build.getBool("format.showDialogue"))
|
||||
bldObj.setFirstLineIndent(
|
||||
self._build.getBool("format.firstLineIndent"),
|
||||
self._build.getFloat("format.firstIndentWidth"),
|
||||
|
||||
@@ -341,6 +341,8 @@ class GuiManuscript(NToolDialog):
|
||||
theme.keyword = QColor(245, 135, 31)
|
||||
theme.tag = QColor(66, 113, 174)
|
||||
theme.optional = QColor(66, 113, 174)
|
||||
theme.dialog = QColor(174, 0, 0)
|
||||
theme.altdialog = QColor(66, 113, 174)
|
||||
|
||||
self.docPreview.beginNewBuild(len(docBuild))
|
||||
for step, _ in docBuild.iterBuildPreview(theme):
|
||||
|
||||
@@ -1093,11 +1093,13 @@ class _FormatTab(NScrollableForm):
|
||||
self.stripUnicode = NSwitch(self, height=iPx)
|
||||
self.replaceTabs = NSwitch(self, height=iPx)
|
||||
self.keepBreaks = NSwitch(self, height=iPx)
|
||||
self.showDialogue = NSwitch(self, height=iPx)
|
||||
|
||||
self.addRow(self._build.getLabel("format.justifyText"), self.justifyText)
|
||||
self.addRow(self._build.getLabel("format.stripUnicode"), self.stripUnicode)
|
||||
self.addRow(self._build.getLabel("format.replaceTabs"), self.replaceTabs)
|
||||
self.addRow(self._build.getLabel("format.keepBreaks"), self.keepBreaks)
|
||||
self.addRow(self._build.getLabel("format.showDialogue"), self.showDialogue)
|
||||
|
||||
# First Line Indent
|
||||
# =================
|
||||
@@ -1180,6 +1182,7 @@ class _FormatTab(NScrollableForm):
|
||||
self.stripUnicode.setChecked(self._build.getBool("format.stripUnicode"))
|
||||
self.replaceTabs.setChecked(self._build.getBool("format.replaceTabs"))
|
||||
self.keepBreaks.setChecked(self._build.getBool("format.keepBreaks"))
|
||||
self.showDialogue.setChecked(self._build.getBool("format.showDialogue"))
|
||||
|
||||
self.firstIndent.setChecked(self._build.getBool("format.firstLineIndent"))
|
||||
self.indentWidth.setValue(self._build.getFloat("format.firstIndentWidth"))
|
||||
@@ -1219,6 +1222,7 @@ class _FormatTab(NScrollableForm):
|
||||
self._build.setValue("format.stripUnicode", self.stripUnicode.isChecked())
|
||||
self._build.setValue("format.replaceTabs", self.replaceTabs.isChecked())
|
||||
self._build.setValue("format.keepBreaks", self.keepBreaks.isChecked())
|
||||
self._build.setValue("format.showDialogue", self.showDialogue.isChecked())
|
||||
|
||||
self._build.setValue("format.firstLineIndent", self.firstIndent.isChecked())
|
||||
self._build.setValue("format.firstIndentWidth", self.indentWidth.value())
|
||||
|
||||
Reference in New Issue
Block a user