Add the novel selector widget and use it for the outline

This commit is contained in:
Veronica Berglyd Olsen
2022-11-18 00:44:58 +01:00
parent 250a41a84a
commit 11b6ed87d4
2 changed files with 79 additions and 25 deletions
+64 -2
View File
@@ -4,7 +4,8 @@ novelWriter GUI Components Module
A module of various small GUI components A module of various small GUI components
File History: File History:
Created: 2020-05-17 [0.5.1] StatusLED Created: 2020-05-17 [0.5.1] StatusLED
Created: 2022-11-17 [2.0rc2] NovelSelector
This file is a part of novelWriter This file is a part of novelWriter
Copyright 20182022, Veronica Berglyd Olsen Copyright 20182022, Veronica Berglyd Olsen
@@ -26,11 +27,72 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
import logging import logging
from PyQt5.QtGui import QPainter from PyQt5.QtGui import QPainter
from PyQt5.QtWidgets import QAbstractButton from PyQt5.QtCore import pyqtSignal, pyqtSlot
from PyQt5.QtWidgets import QAbstractButton, QComboBox
from novelwriter.enum import nwItemClass
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
class NovelSelector(QComboBox):
novelSelectionChanged = pyqtSignal(str)
def __init__(self, parent, project, icon):
super().__init__(parent=parent)
self._project = project
self._icon = icon
self._blockSignal = False
self.currentIndexChanged.connect(self._indexChanged)
return
@property
def handle(self):
return self.currentData()
def setHandle(self, tHandle, blockSignal=True):
"""Set the currently selected handle.
"""
self._blockSignal = blockSignal
if tHandle is None:
index = self.count() - 1
else:
index = self.findData(tHandle)
if index >= 0:
self.setCurrentIndex(index)
self._blockSignal = False
return
def updateList(self):
"""Rebuild the list of novel items.
"""
self._blockSignal = True
self.clear()
for tHandle, nwItem in self._project.tree.iterRoots(nwItemClass.NOVEL):
self.addItem(self._icon, nwItem.itemName, tHandle)
self.insertSeparator(self.count())
self.addItem(self._icon, self.tr("All Novel Folders"), "")
self._blockSignal = False
return
##
# Private Slots
##
@pyqtSlot(int)
def _indexChanged(self, index):
if not self._blockSignal:
self.novelSelectionChanged.emit(self.currentData())
return
# END Class NovelSelector
class StatusLED(QAbstractButton): class StatusLED(QAbstractButton):
S_NONE = 0 S_NONE = 0
+15 -23
View File
@@ -37,9 +37,9 @@ from PyQt5.QtCore import (
Qt, pyqtSignal, pyqtSlot, QSize, QT_TRANSLATE_NOOP Qt, pyqtSignal, pyqtSlot, QSize, QT_TRANSLATE_NOOP
) )
from PyQt5.QtWidgets import ( from PyQt5.QtWidgets import (
QAbstractItemView, QAction, QComboBox, QFrame, QGridLayout, QGroupBox, QAbstractItemView, QAction, QFrame, QGridLayout, QGroupBox, QHBoxLayout,
QHBoxLayout, QLabel, QMenu, QScrollArea, QSizePolicy, QSplitter, QToolBar, QLabel, QMenu, QScrollArea, QSizePolicy, QSplitter, QToolBar, QToolButton,
QToolButton, QTreeWidget, QTreeWidgetItem, QVBoxLayout, QWidget QTreeWidget, QTreeWidgetItem, QVBoxLayout, QWidget
) )
from novelwriter.enum import ( from novelwriter.enum import (
@@ -47,6 +47,7 @@ from novelwriter.enum import (
) )
from novelwriter.common import checkInt from novelwriter.common import checkInt
from novelwriter.constants import nwHeaders, trConst, nwKeyWords, nwLabels from novelwriter.constants import nwHeaders, trConst, nwKeyWords, nwLabels
from novelwriter.gui.components import NovelSelector
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
@@ -233,9 +234,10 @@ class GuiOutlineToolBar(QToolBar):
self.novelLabel = QLabel(self.tr("Outline of")) self.novelLabel = QLabel(self.tr("Outline of"))
self.novelLabel.setContentsMargins(0, 0, mPx, 0) self.novelLabel.setContentsMargins(0, 0, mPx, 0)
self.novelValue = QComboBox(self) tIcon = self.mainTheme.getIcon(nwLabels.CLASS_ICON[nwItemClass.NOVEL])
self.novelValue = NovelSelector(self, self.theProject, tIcon)
self.novelValue.setMinimumWidth(self.mainConf.pxInt(200)) self.novelValue.setMinimumWidth(self.mainConf.pxInt(200))
self.novelValue.currentIndexChanged.connect(self._novelValueChanged) self.novelValue.novelSelectionChanged.connect(self._novelValueChanged)
# Actions # Actions
self.aRefresh = QAction(self.tr("Refresh"), self) self.aRefresh = QAction(self.tr("Refresh"), self)
@@ -280,25 +282,15 @@ class GuiOutlineToolBar(QToolBar):
return return
def populateNovelList(self): def populateNovelList(self):
"""Fill the novel combo box with a list of all novel folders. """Relaod the content of the novel list.
""" """
self.novelValue.clear() self.novelValue.updateList()
tIcon = self.mainTheme.getIcon(nwLabels.CLASS_ICON[nwItemClass.NOVEL])
for tHandle, nwItem in self.theProject.tree.iterRoots(nwItemClass.NOVEL):
self.novelValue.addItem(tIcon, nwItem.itemName, tHandle)
self.novelValue.insertSeparator(self.novelValue.count())
self.novelValue.addItem(tIcon, self.tr("All Novel Folders"), "")
return return
def setCurrentRoot(self, rootHandle): def setCurrentRoot(self, rootHandle):
"""Set the current active root handle. """Set the current active root handle.
""" """
if rootHandle is None: self.novelValue.setHandle(rootHandle)
rootIdx = self.novelValue.count() - 1
else:
rootIdx = self.novelValue.findData(rootHandle)
if rootIdx >= 0:
self.novelValue.setCurrentIndex(rootIdx)
return return
def setColumnHiddenState(self, hiddenState): def setColumnHiddenState(self, hiddenState):
@@ -311,19 +303,18 @@ class GuiOutlineToolBar(QToolBar):
# Private Slots # Private Slots
## ##
@pyqtSlot(int) @pyqtSlot(str)
def _novelValueChanged(self, index): def _novelValueChanged(self, tHandle):
"""Emit a signal containing the handle of the selected item. """Emit a signal containing the handle of the selected item.
""" """
if index >= 0: self.loadNovelRootRequest.emit(tHandle)
self.loadNovelRootRequest.emit(self.novelValue.currentData())
return return
@pyqtSlot() @pyqtSlot()
def _refreshRequested(self): def _refreshRequested(self):
"""Emit a signal containing the handle of the selected item. """Emit a signal containing the handle of the selected item.
""" """
self.loadNovelRootRequest.emit(self.novelValue.currentData()) self.loadNovelRootRequest.emit(self.novelValue.handle)
return return
# END Class GuiOutlineToolBar # END Class GuiOutlineToolBar
@@ -679,6 +670,7 @@ class GuiOutlineTree(QTreeWidget):
if they are hidden. This ensures that showing and hiding columns if they are hidden. This ensures that showing and hiding columns
is fast and doesn't require a rebuild of the tree. is fast and doesn't require a rebuild of the tree.
""" """
logger.debug("Rebuilding Outline tree")
self.clear() self.clear()
if self._firstView: if self._firstView: