Importance colours added to the GUI
This commit is contained in:
+11
-3
@@ -71,11 +71,19 @@ class GuiDocDetails(QFrame):
|
|||||||
colTwo = [""]*4
|
colTwo = [""]*4
|
||||||
else:
|
else:
|
||||||
itemStatus = nwItem.itemStatus
|
itemStatus = nwItem.itemStatus
|
||||||
if itemStatus < 0 or itemStatus >= len(self.theParent.statusLabels):
|
if nwItem.itemClass == nwItemClass.NOVEL:
|
||||||
itemStatus = 0
|
if itemStatus < 0 or itemStatus >= len(self.theParent.statusLabels):
|
||||||
|
statusLabel = self.theParent.statusLabels[0]
|
||||||
|
else:
|
||||||
|
statusLabel = self.theParent.statusLabels[itemStatus]
|
||||||
|
else:
|
||||||
|
if itemStatus < 0 or itemStatus >= len(self.theParent.importLabels):
|
||||||
|
statusLabel = self.theParent.importLabels[0]
|
||||||
|
else:
|
||||||
|
statusLabel = self.theParent.importLabels[itemStatus]
|
||||||
colTwo = [
|
colTwo = [
|
||||||
nwItem.itemName,
|
nwItem.itemName,
|
||||||
self.theParent.statusLabels[itemStatus],
|
statusLabel,
|
||||||
nwLabels.CLASS_NAME[nwItem.itemClass],
|
nwLabels.CLASS_NAME[nwItem.itemClass],
|
||||||
nwLabels.LAYOUT_NAME[nwItem.itemLayout],
|
nwLabels.LAYOUT_NAME[nwItem.itemLayout],
|
||||||
]
|
]
|
||||||
|
|||||||
+13
-5
@@ -19,9 +19,8 @@ from PyQt5.QtGui import QIcon, QFont, QColor
|
|||||||
from PyQt5.QtWidgets import QTreeWidget, QTreeWidgetItem, QAbstractItemView, QInputDialog, QLineEdit, QApplication
|
from PyQt5.QtWidgets import QTreeWidget, QTreeWidgetItem, QAbstractItemView, QInputDialog, QLineEdit, QApplication
|
||||||
|
|
||||||
from nw.project.item import NWItem
|
from nw.project.item import NWItem
|
||||||
from nw.enum import nwItemType, nwItemClass
|
from nw.enum import nwItemType, nwItemClass, nwAlert
|
||||||
from nw.constants import nwLabels
|
from nw.constants import nwLabels
|
||||||
from nw.enum import nwAlert
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
@@ -256,6 +255,7 @@ class GuiDocTree(QTreeWidget):
|
|||||||
trItem = self._getTreeItem(tHandle)
|
trItem = self._getTreeItem(tHandle)
|
||||||
nwItem = self.theProject.getItem(tHandle)
|
nwItem = self.theProject.getItem(tHandle)
|
||||||
tName = nwItem.itemName
|
tName = nwItem.itemName
|
||||||
|
tClass = nwItem.itemClass
|
||||||
tHandle = nwItem.itemHandle
|
tHandle = nwItem.itemHandle
|
||||||
pHandle = nwItem.parHandle
|
pHandle = nwItem.parHandle
|
||||||
|
|
||||||
@@ -263,12 +263,20 @@ class GuiDocTree(QTreeWidget):
|
|||||||
if nwItem.itemType == nwItemType.FILE:
|
if nwItem.itemType == nwItemType.FILE:
|
||||||
tStatus += "."+nwLabels.LAYOUT_FLAG[nwItem.itemLayout]
|
tStatus += "."+nwLabels.LAYOUT_FLAG[nwItem.itemLayout]
|
||||||
nStatus = nwItem.itemStatus
|
nStatus = nwItem.itemStatus
|
||||||
if nStatus < 0 or nStatus >= len(self.theParent.statusIcons):
|
if tClass == nwItemClass.NOVEL:
|
||||||
nStatus = 0
|
if nStatus < 0 or nStatus >= len(self.theParent.statusIcons):
|
||||||
|
flagIcon = self.theParent.statusIcons[0]
|
||||||
|
else:
|
||||||
|
flagIcon = self.theParent.statusIcons[nStatus]
|
||||||
|
else:
|
||||||
|
if nStatus < 0 or nStatus >= len(self.theParent.importIcons):
|
||||||
|
flagIcon = self.theParent.importIcons[0]
|
||||||
|
else:
|
||||||
|
flagIcon = self.theParent.importIcons[nStatus]
|
||||||
|
|
||||||
trItem.setText(self.C_NAME,tName)
|
trItem.setText(self.C_NAME,tName)
|
||||||
trItem.setText(self.C_FLAGS,tStatus)
|
trItem.setText(self.C_FLAGS,tStatus)
|
||||||
trItem.setIcon(self.C_FLAGS,self.theParent.statusIcons[nStatus])
|
trItem.setIcon(self.C_FLAGS,flagIcon)
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
+10
-4
@@ -54,10 +54,16 @@ class GuiItemEditor(QDialog):
|
|||||||
self.editStatus = QComboBox()
|
self.editStatus = QComboBox()
|
||||||
self.editLayout = QComboBox()
|
self.editLayout = QComboBox()
|
||||||
|
|
||||||
for n in range(len(self.theParent.statusLabels)):
|
if self.theItem.itemClass == nwItemClass.NOVEL:
|
||||||
self.editStatus.addItem(
|
for n in range(len(self.theParent.statusLabels)):
|
||||||
self.theParent.statusIcons[n], self.theParent.statusLabels[n], n
|
self.editStatus.addItem(
|
||||||
)
|
self.theParent.statusIcons[n], self.theParent.statusLabels[n], n
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
for n in range(len(self.theParent.statusLabels)):
|
||||||
|
self.editStatus.addItem(
|
||||||
|
self.theParent.importIcons[n], self.theParent.importLabels[n], n
|
||||||
|
)
|
||||||
|
|
||||||
self.validLayouts = []
|
self.validLayouts = []
|
||||||
if self.theItem.itemType == nwItemType.FILE:
|
if self.theItem.itemType == nwItemType.FILE:
|
||||||
|
|||||||
@@ -60,6 +60,8 @@ class GuiMain(QMainWindow):
|
|||||||
# Minor Gui Elements
|
# Minor Gui Elements
|
||||||
self.statusIcons = []
|
self.statusIcons = []
|
||||||
self.statusLabels = []
|
self.statusLabels = []
|
||||||
|
self.importIcons = []
|
||||||
|
self.importLabels = []
|
||||||
|
|
||||||
# Assemble Main Window
|
# Assemble Main Window
|
||||||
self.stackPane = QStackedWidget()
|
self.stackPane = QStackedWidget()
|
||||||
@@ -87,6 +89,7 @@ class GuiMain(QMainWindow):
|
|||||||
self.treeView.itemDoubleClicked.connect(self._treeDoubleClick)
|
self.treeView.itemDoubleClicked.connect(self._treeDoubleClick)
|
||||||
self.treeView.buildTree()
|
self.treeView.buildTree()
|
||||||
self._makeStatusIcons()
|
self._makeStatusIcons()
|
||||||
|
self._makeImportIcons()
|
||||||
|
|
||||||
# Set Main Window Elements
|
# Set Main Window Elements
|
||||||
self.setMenuBar(self.mainMenu)
|
self.setMenuBar(self.mainMenu)
|
||||||
@@ -179,6 +182,7 @@ class GuiMain(QMainWindow):
|
|||||||
self.treeView.buildTree()
|
self.treeView.buildTree()
|
||||||
self._setWindowTitle(self.theProject.projName)
|
self._setWindowTitle(self.theProject.projName)
|
||||||
self._makeStatusIcons()
|
self._makeStatusIcons()
|
||||||
|
self._makeImportIcons()
|
||||||
self.docEditor.setPwl(path.join(self.theProject.projMeta,"wordlist.txt"))
|
self.docEditor.setPwl(path.join(self.theProject.projMeta,"wordlist.txt"))
|
||||||
self.docEditor.setSpellCheck(self.theProject.spellCheck)
|
self.docEditor.setSpellCheck(self.theProject.spellCheck)
|
||||||
self.mainMenu.updateMenu()
|
self.mainMenu.updateMenu()
|
||||||
@@ -370,6 +374,16 @@ class GuiMain(QMainWindow):
|
|||||||
self.statusLabels.append(sLabel)
|
self.statusLabels.append(sLabel)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
def _makeImportIcons(self):
|
||||||
|
self.importIcons = []
|
||||||
|
self.importLabels = []
|
||||||
|
for sLabel, sR, sG, sB in self.theProject.importCols:
|
||||||
|
theIcon = QPixmap(32,32)
|
||||||
|
theIcon.fill(QColor(sR,sG,sB))
|
||||||
|
self.importIcons.append(QIcon(theIcon))
|
||||||
|
self.importLabels.append(sLabel)
|
||||||
|
return
|
||||||
|
|
||||||
##
|
##
|
||||||
# Events
|
# Events
|
||||||
##
|
##
|
||||||
|
|||||||
@@ -46,7 +46,6 @@ class NWProject():
|
|||||||
self.projMeta = None
|
self.projMeta = None
|
||||||
self.projCache = None
|
self.projCache = None
|
||||||
self.projFile = None
|
self.projFile = None
|
||||||
self.statusCols = None
|
|
||||||
|
|
||||||
# Project Meta
|
# Project Meta
|
||||||
self.projName = None
|
self.projName = None
|
||||||
@@ -55,6 +54,8 @@ class NWProject():
|
|||||||
|
|
||||||
# Project Settings
|
# Project Settings
|
||||||
self.spellCheck = False
|
self.spellCheck = False
|
||||||
|
self.statusCols = None
|
||||||
|
self.importCols = None
|
||||||
|
|
||||||
# Set Defaults
|
# Set Defaults
|
||||||
self.clearProject()
|
self.clearProject()
|
||||||
@@ -147,6 +148,12 @@ class NWProject():
|
|||||||
("Draft", 200,150, 0),
|
("Draft", 200,150, 0),
|
||||||
("Finished", 50,200, 0),
|
("Finished", 50,200, 0),
|
||||||
]
|
]
|
||||||
|
self.importCols = [
|
||||||
|
("None", 100,100,100),
|
||||||
|
("Minor", 200, 45, 60),
|
||||||
|
("Major", 160, 67,130),
|
||||||
|
("Main", 120, 90,200),
|
||||||
|
]
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user