250 lines
7.8 KiB
Python
250 lines
7.8 KiB
Python
"""
|
||
novelWriter – GUI Main Window Status Bar
|
||
========================================
|
||
GUI class for the main window status bar
|
||
|
||
File History:
|
||
Created: 2019-04-20 [0.0.1] GuiMainStatus
|
||
Created: 2020-05-17 [0.5.1] StatusLED
|
||
|
||
This file is a part of novelWriter
|
||
Copyright 2018–2023, Veronica Berglyd Olsen
|
||
|
||
This program is free software: you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation, either version 3 of the License, or
|
||
(at your option) any later version.
|
||
|
||
This program is distributed in the hope that it will be useful, but
|
||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
"""
|
||
|
||
import logging
|
||
import novelwriter
|
||
|
||
from time import time
|
||
|
||
from PyQt5.QtCore import pyqtSlot, QLocale
|
||
from PyQt5.QtGui import QColor
|
||
from PyQt5.QtWidgets import qApp, QStatusBar, QLabel
|
||
|
||
from novelwriter.common import formatTime
|
||
from novelwriter.gui.components import StatusLED
|
||
|
||
logger = logging.getLogger(__name__)
|
||
|
||
|
||
class GuiMainStatus(QStatusBar):
|
||
|
||
def __init__(self, mainGui):
|
||
super().__init__(parent=mainGui)
|
||
|
||
logger.debug("Initialising GuiMainStatus ...")
|
||
|
||
self.mainConf = novelwriter.CONFIG
|
||
self.mainGui = mainGui
|
||
self.mainTheme = mainGui.mainTheme
|
||
self.refTime = None
|
||
self.userIdle = False
|
||
|
||
colNone = QColor(*self.mainTheme.statNone)
|
||
colSaved = QColor(*self.mainTheme.statSaved)
|
||
colUnsaved = QColor(*self.mainTheme.statUnsaved)
|
||
|
||
iPx = self.mainTheme.baseIconSize
|
||
|
||
# Permanent Widgets
|
||
# =================
|
||
|
||
xM = self.mainConf.pxInt(8)
|
||
|
||
# The Spell Checker Language
|
||
self.langIcon = QLabel("")
|
||
self.langText = QLabel(self.tr("None"))
|
||
self.langIcon.setContentsMargins(0, 0, 0, 0)
|
||
self.langText.setContentsMargins(0, 0, xM, 0)
|
||
self.addPermanentWidget(self.langIcon)
|
||
self.addPermanentWidget(self.langText)
|
||
|
||
# The Editor Status
|
||
self.docIcon = StatusLED(colNone, colSaved, colUnsaved, iPx, iPx, self)
|
||
self.docText = QLabel(self.tr("Editor"))
|
||
self.docIcon.setContentsMargins(0, 0, 0, 0)
|
||
self.docText.setContentsMargins(0, 0, xM, 0)
|
||
self.addPermanentWidget(self.docIcon)
|
||
self.addPermanentWidget(self.docText)
|
||
|
||
# The Project Status
|
||
self.projIcon = StatusLED(colNone, colSaved, colUnsaved, iPx, iPx, self)
|
||
self.projText = QLabel(self.tr("Project"))
|
||
self.projIcon.setContentsMargins(0, 0, 0, 0)
|
||
self.projText.setContentsMargins(0, 0, xM, 0)
|
||
self.addPermanentWidget(self.projIcon)
|
||
self.addPermanentWidget(self.projText)
|
||
|
||
# The Project and Session Stats
|
||
self.statsIcon = QLabel()
|
||
self.statsText = QLabel("")
|
||
self.statsIcon.setContentsMargins(0, 0, 0, 0)
|
||
self.statsText.setContentsMargins(0, 0, xM, 0)
|
||
self.addPermanentWidget(self.statsIcon)
|
||
self.addPermanentWidget(self.statsText)
|
||
|
||
# The Session Clock
|
||
# Set the mimimum width so the label doesn't rescale every second
|
||
self.timeIcon = QLabel()
|
||
self.timeText = QLabel("")
|
||
self.timeText.setToolTip(self.tr("Session Time"))
|
||
self.timeText.setMinimumWidth(self.mainTheme.getTextWidth("00:00:00:"))
|
||
self.timeIcon.setContentsMargins(0, 0, 0, 0)
|
||
self.timeText.setContentsMargins(0, 0, 0, 0)
|
||
self.addPermanentWidget(self.timeIcon)
|
||
self.addPermanentWidget(self.timeText)
|
||
|
||
# Other Settings
|
||
self.setSizeGripEnabled(True)
|
||
|
||
logger.debug("GuiMainStatus initialisation complete")
|
||
|
||
self.updateTheme()
|
||
self.clearStatus()
|
||
|
||
return
|
||
|
||
def clearStatus(self):
|
||
"""Reset all widgets on the status bar to default values.
|
||
"""
|
||
self.setRefTime(None)
|
||
self.setLanguage(None, "")
|
||
self.setProjectStats(0, 0)
|
||
self.setProjectStatus(StatusLED.S_NONE)
|
||
self.setDocumentStatus(StatusLED.S_NONE)
|
||
self.updateTime()
|
||
return True
|
||
|
||
def updateTheme(self):
|
||
"""Update theme elements.
|
||
"""
|
||
iPx = self.mainTheme.baseIconSize
|
||
|
||
self.langIcon.setPixmap(self.mainTheme.getPixmap("status_lang", (iPx, iPx)))
|
||
self.statsIcon.setPixmap(self.mainTheme.getPixmap("status_stats", (iPx, iPx)))
|
||
|
||
self.timePixmap = self.mainTheme.getPixmap("status_time", (iPx, iPx))
|
||
self.idlePixmap = self.mainTheme.getPixmap("status_idle", (iPx, iPx))
|
||
|
||
self.timeIcon.setPixmap(self.timePixmap)
|
||
|
||
return
|
||
|
||
##
|
||
# Setters
|
||
##
|
||
|
||
def setRefTime(self, theTime):
|
||
"""Set the reference time for the status bar clock.
|
||
"""
|
||
self.refTime = theTime
|
||
return
|
||
|
||
def setStatus(self, theMessage, timeOut=20.0):
|
||
"""Set the status bar message to display for 'timeOut' seconds.
|
||
"""
|
||
self.showMessage(theMessage, int(timeOut*1000))
|
||
qApp.processEvents()
|
||
return
|
||
|
||
def setProjectStatus(self, theState):
|
||
"""Set the project status colour icon.
|
||
"""
|
||
self.projIcon.setState(theState)
|
||
return
|
||
|
||
def setDocumentStatus(self, theState):
|
||
"""Set the document status colour icon.
|
||
"""
|
||
self.docIcon.setState(theState)
|
||
return
|
||
|
||
def setUserIdle(self, userIdle):
|
||
"""Change the idle status icon.
|
||
"""
|
||
if not self.mainConf.stopWhenIdle:
|
||
userIdle = False
|
||
|
||
if self.userIdle != userIdle:
|
||
if userIdle:
|
||
self.timeIcon.setPixmap(self.idlePixmap)
|
||
else:
|
||
self.timeIcon.setPixmap(self.timePixmap)
|
||
|
||
self.userIdle = userIdle
|
||
|
||
return
|
||
|
||
def setProjectStats(self, pWC, sWC):
|
||
"""Update the current project statistics.
|
||
"""
|
||
self.statsText.setText(self.tr("Words: {0} ({1})").format(f"{pWC:n}", f"{sWC:+n}"))
|
||
if self.mainConf.incNotesWCount:
|
||
self.statsText.setToolTip(self.tr("Project word count (session change)"))
|
||
else:
|
||
self.statsText.setToolTip(self.tr("Novel word count (session change)"))
|
||
return
|
||
|
||
def updateTime(self, idleTime=0.0):
|
||
"""Update the session clock.
|
||
"""
|
||
if self.refTime is None:
|
||
self.timeText.setText("00:00:00")
|
||
else:
|
||
if self.mainConf.stopWhenIdle:
|
||
sessTime = round(time() - self.refTime - idleTime)
|
||
else:
|
||
sessTime = round(time() - self.refTime)
|
||
self.timeText.setText(formatTime(sessTime))
|
||
return
|
||
|
||
##
|
||
# Slots
|
||
##
|
||
|
||
@pyqtSlot(str, str)
|
||
def setLanguage(self, theLanguage, theProvider):
|
||
"""Set the language code for the spell checker.
|
||
"""
|
||
if theLanguage == "None":
|
||
self.langText.setText(self.tr("None"))
|
||
self.langText.setToolTip("")
|
||
else:
|
||
qLocal = QLocale(theLanguage)
|
||
spLang = qLocal.nativeLanguageName().title()
|
||
self.langText.setText(spLang)
|
||
if theProvider:
|
||
self.langText.setToolTip("%s (%s)" % (theLanguage, theProvider))
|
||
else:
|
||
self.langText.setToolTip(theLanguage)
|
||
|
||
return
|
||
|
||
@pyqtSlot(bool)
|
||
def doUpdateProjectStatus(self, isChanged):
|
||
"""Slot for updating the project status.
|
||
"""
|
||
self.setProjectStatus(StatusLED.S_BAD if isChanged else StatusLED.S_GOOD)
|
||
return
|
||
|
||
@pyqtSlot(bool)
|
||
def doUpdateDocumentStatus(self, isChanged):
|
||
"""Slot for updating the document status.
|
||
"""
|
||
self.setDocumentStatus(StatusLED.S_BAD if isChanged else StatusLED.S_GOOD)
|
||
return
|
||
|
||
# END Class GuiMainStatus
|