580 lines
21 KiB
Python
580 lines
21 KiB
Python
# -*- coding: utf-8 -*-
|
||
"""novelWriter GUI Writing Statistics
|
||
|
||
novelWriter – GUI Writing Statistics
|
||
======================================
|
||
Class showing the word count and session statistics
|
||
|
||
File History:
|
||
Created: 2019-10-20 [0.3]
|
||
|
||
This file is a part of novelWriter
|
||
Copyright 2018–2020, 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 nw
|
||
import logging
|
||
import json
|
||
|
||
from os import path
|
||
from datetime import datetime
|
||
|
||
from PyQt5.QtCore import Qt
|
||
from PyQt5.QtGui import QPixmap
|
||
from PyQt5.QtWidgets import (
|
||
qApp, QDialog, QTreeWidget, QTreeWidgetItem, QDialogButtonBox, QGridLayout,
|
||
QLabel, QGroupBox, QMenu, QAction, QFileDialog, QSpinBox, QHBoxLayout
|
||
)
|
||
|
||
from nw.constants import nwConst, nwFiles, nwAlert
|
||
from nw.gui.custom import QSwitch
|
||
|
||
logger = logging.getLogger(__name__)
|
||
|
||
class GuiWritingStats(QDialog):
|
||
|
||
C_TIME = 0
|
||
C_LENGTH = 1
|
||
C_COUNT = 2
|
||
C_BAR = 3
|
||
|
||
FMT_JSON = 0
|
||
FMT_CSV = 1
|
||
|
||
def __init__(self, theParent, theProject):
|
||
QDialog.__init__(self, theParent)
|
||
|
||
logger.debug("Initialising GuiWritingStats ...")
|
||
self.setObjectName("GuiWritingStats")
|
||
|
||
self.mainConf = nw.CONFIG
|
||
self.theParent = theParent
|
||
self.theProject = theProject
|
||
self.theTheme = theParent.theTheme
|
||
self.optState = theProject.optState
|
||
|
||
self.logData = []
|
||
self.filterData = []
|
||
self.timeFilter = 0.0
|
||
self.wordOffset = 0
|
||
|
||
self.setWindowTitle("Writing Statistics")
|
||
self.setMinimumWidth(self.mainConf.pxInt(420))
|
||
self.setMinimumHeight(self.mainConf.pxInt(400))
|
||
self.resize(
|
||
self.mainConf.pxInt(self.optState.getInt("GuiWritingStats", "winWidth", 550)),
|
||
self.mainConf.pxInt(self.optState.getInt("GuiWritingStats", "winHeight", 500))
|
||
)
|
||
|
||
# List Box
|
||
wCol0 = self.mainConf.pxInt(
|
||
self.optState.getInt("GuiWritingStats", "widthCol0", 180)
|
||
)
|
||
wCol1 = self.mainConf.pxInt(
|
||
self.optState.getInt("GuiWritingStats", "widthCol1", 80)
|
||
)
|
||
wCol2 = self.mainConf.pxInt(
|
||
self.optState.getInt("GuiWritingStats", "widthCol2", 80)
|
||
)
|
||
|
||
self.listBox = QTreeWidget()
|
||
self.listBox.setHeaderLabels(["Session Start", "Length", "Words", "Histogram"])
|
||
self.listBox.setIndentation(0)
|
||
self.listBox.setColumnWidth(self.C_TIME, wCol0)
|
||
self.listBox.setColumnWidth(self.C_LENGTH, wCol1)
|
||
self.listBox.setColumnWidth(self.C_COUNT, wCol2)
|
||
|
||
hHeader = self.listBox.headerItem()
|
||
hHeader.setTextAlignment(self.C_LENGTH, Qt.AlignRight)
|
||
hHeader.setTextAlignment(self.C_COUNT, Qt.AlignRight)
|
||
|
||
sortValid = (Qt.AscendingOrder, Qt.DescendingOrder)
|
||
sortCol = self.optState.validIntRange(
|
||
self.optState.getInt("GuiWritingStats", "sortCol", 0), 0, 2, 0
|
||
)
|
||
sortOrder = self.optState.validIntTuple(
|
||
self.optState.getInt("GuiWritingStats", "sortOrder", Qt.DescendingOrder),
|
||
sortValid, Qt.DescendingOrder
|
||
)
|
||
self.listBox.sortByColumn(sortCol, sortOrder)
|
||
self.listBox.setSortingEnabled(True)
|
||
|
||
# Word Bar
|
||
self.barHeight = int(round(0.5*self.theTheme.fontPixelSize))
|
||
self.barWidth = self.mainConf.pxInt(200)
|
||
self.barImage = QPixmap(self.barHeight, self.barHeight)
|
||
self.barImage.fill(self.palette().highlight().color())
|
||
|
||
# Session Info
|
||
self.infoBox = QGroupBox("Sum Totals", self)
|
||
self.infoForm = QGridLayout(self)
|
||
self.infoBox.setLayout(self.infoForm)
|
||
|
||
self.labelTotal = QLabel(self._formatTime(0))
|
||
self.labelTotal.setFont(self.theTheme.guiFontFixed)
|
||
self.labelTotal.setAlignment(Qt.AlignVCenter | Qt.AlignRight)
|
||
|
||
self.labelFilter = QLabel(self._formatTime(0))
|
||
self.labelFilter.setFont(self.theTheme.guiFontFixed)
|
||
self.labelFilter.setAlignment(Qt.AlignVCenter | Qt.AlignRight)
|
||
|
||
self.novelWords = QLabel("0")
|
||
self.novelWords.setFont(self.theTheme.guiFontFixed)
|
||
self.novelWords.setAlignment(Qt.AlignVCenter | Qt.AlignRight)
|
||
|
||
self.notesWords = QLabel("0")
|
||
self.notesWords.setFont(self.theTheme.guiFontFixed)
|
||
self.notesWords.setAlignment(Qt.AlignVCenter | Qt.AlignRight)
|
||
|
||
self.totalWords = QLabel("0")
|
||
self.totalWords.setFont(self.theTheme.guiFontFixed)
|
||
self.totalWords.setAlignment(Qt.AlignVCenter | Qt.AlignRight)
|
||
|
||
self.infoForm.addWidget(QLabel("Total Time:"), 0, 0)
|
||
self.infoForm.addWidget(QLabel("Filtered Time:"), 1, 0)
|
||
self.infoForm.addWidget(QLabel("Novel Word Count:"), 2, 0)
|
||
self.infoForm.addWidget(QLabel("Notes Word Count:"), 3, 0)
|
||
self.infoForm.addWidget(QLabel("Total Word Count:"), 4, 0)
|
||
self.infoForm.addWidget(self.labelTotal, 0, 1)
|
||
self.infoForm.addWidget(self.labelFilter, 1, 1)
|
||
self.infoForm.addWidget(self.novelWords, 2, 1)
|
||
self.infoForm.addWidget(self.notesWords, 3, 1)
|
||
self.infoForm.addWidget(self.totalWords, 4, 1)
|
||
self.infoForm.setRowStretch(5, 1)
|
||
|
||
# Filter Options
|
||
sPx = self.theTheme.baseIconSize
|
||
|
||
self.filterBox = QGroupBox("Filters", self)
|
||
self.filterForm = QGridLayout(self)
|
||
self.filterBox.setLayout(self.filterForm)
|
||
|
||
self.incNovel = QSwitch(width=2*sPx, height=sPx)
|
||
self.incNovel.setChecked(
|
||
self.optState.getBool("GuiWritingStats", "incNovel", True)
|
||
)
|
||
self.incNovel.clicked.connect(self._updateListBox)
|
||
|
||
self.incNotes = QSwitch(width=2*sPx, height=sPx)
|
||
self.incNotes.setChecked(
|
||
self.optState.getBool("GuiWritingStats", "incNotes", True)
|
||
)
|
||
self.incNotes.clicked.connect(self._updateListBox)
|
||
|
||
self.hideZeros = QSwitch(width=2*sPx, height=sPx)
|
||
self.hideZeros.setChecked(
|
||
self.optState.getBool("GuiWritingStats", "hideZeros", True)
|
||
)
|
||
self.hideZeros.clicked.connect(self._updateListBox)
|
||
|
||
self.hideNegative = QSwitch(width=2*sPx, height=sPx)
|
||
self.hideNegative.setChecked(
|
||
self.optState.getBool("GuiWritingStats", "hideNegative", False)
|
||
)
|
||
self.hideNegative.clicked.connect(self._updateListBox)
|
||
|
||
self.groupByDay = QSwitch(width=2*sPx, height=sPx)
|
||
self.groupByDay.setChecked(
|
||
self.optState.getBool("GuiWritingStats", "groupByDay", False)
|
||
)
|
||
self.groupByDay.clicked.connect(self._updateListBox)
|
||
|
||
self.filterForm.addWidget(QLabel("Count novel files"), 0, 0)
|
||
self.filterForm.addWidget(QLabel("Count note files"), 1, 0)
|
||
self.filterForm.addWidget(QLabel("Hide zero word count"), 2, 0)
|
||
self.filterForm.addWidget(QLabel("Hide negative word count"), 3, 0)
|
||
self.filterForm.addWidget(QLabel("Group entries by day"), 4, 0)
|
||
self.filterForm.addWidget(self.incNovel, 0, 1)
|
||
self.filterForm.addWidget(self.incNotes, 1, 1)
|
||
self.filterForm.addWidget(self.hideZeros, 2, 1)
|
||
self.filterForm.addWidget(self.hideNegative, 3, 1)
|
||
self.filterForm.addWidget(self.groupByDay, 4, 1)
|
||
self.filterForm.setRowStretch(5, 1)
|
||
|
||
# Settings
|
||
self.histMax = QSpinBox(self)
|
||
self.histMax.setMinimum(100)
|
||
self.histMax.setMaximum(100000)
|
||
self.histMax.setSingleStep(100)
|
||
self.histMax.setValue(
|
||
self.optState.getInt("GuiWritingStats", "histMax", 2000)
|
||
)
|
||
self.histMax.valueChanged.connect(self._updateListBox)
|
||
|
||
self.optsBox = QHBoxLayout()
|
||
self.optsBox.addStretch(1)
|
||
self.optsBox.addWidget(QLabel("Word count cap for the histogram"), 0)
|
||
self.optsBox.addWidget(self.histMax, 0)
|
||
|
||
# Buttons
|
||
self.buttonBox = QDialogButtonBox()
|
||
self.buttonBox.rejected.connect(self._doClose)
|
||
|
||
self.btnClose = self.buttonBox.addButton(QDialogButtonBox.Close)
|
||
self.btnClose.setAutoDefault(False)
|
||
|
||
self.btnSave = self.buttonBox.addButton("Save As", QDialogButtonBox.ActionRole)
|
||
self.btnSave.setAutoDefault(False)
|
||
|
||
self.saveMenu = QMenu(self)
|
||
self.btnSave.setMenu(self.saveMenu)
|
||
|
||
self.saveJSON = QAction("JSON Data File (.json)", self)
|
||
self.saveJSON.triggered.connect(lambda: self._saveData(self.FMT_JSON))
|
||
self.saveMenu.addAction(self.saveJSON)
|
||
|
||
self.saveCSV = QAction("CSV Data File (.csv)", self)
|
||
self.saveCSV.triggered.connect(lambda: self._saveData(self.FMT_CSV))
|
||
self.saveMenu.addAction(self.saveCSV)
|
||
|
||
# Assemble
|
||
self.outerBox = QGridLayout()
|
||
self.outerBox.addWidget(self.listBox, 0, 0, 1, 2)
|
||
self.outerBox.addLayout(self.optsBox, 1, 0, 1, 2)
|
||
self.outerBox.addWidget(self.infoBox, 2, 0)
|
||
self.outerBox.addWidget(self.filterBox, 2, 1)
|
||
self.outerBox.addWidget(self.buttonBox, 3, 0, 1, 2)
|
||
self.outerBox.setRowStretch(0, 1)
|
||
|
||
self.setLayout(self.outerBox)
|
||
|
||
logger.debug("GuiWritingStats initialisation complete")
|
||
|
||
qApp.processEvents()
|
||
self._loadLogFile()
|
||
self._updateListBox()
|
||
|
||
return
|
||
|
||
##
|
||
# Slots
|
||
##
|
||
|
||
def _doClose(self):
|
||
"""Save the state of the window, clear cache, end close.
|
||
"""
|
||
self.logData = []
|
||
|
||
winWidth = self.mainConf.rpxInt(self.width())
|
||
winHeight = self.mainConf.rpxInt(self.height())
|
||
widthCol0 = self.mainConf.rpxInt(self.listBox.columnWidth(0))
|
||
widthCol1 = self.mainConf.rpxInt(self.listBox.columnWidth(1))
|
||
widthCol2 = self.mainConf.rpxInt(self.listBox.columnWidth(2))
|
||
sortCol = self.listBox.sortColumn()
|
||
sortOrder = self.listBox.header().sortIndicatorOrder()
|
||
incNovel = self.incNovel.isChecked()
|
||
incNotes = self.incNotes.isChecked()
|
||
hideZeros = self.hideZeros.isChecked()
|
||
hideNegative = self.hideNegative.isChecked()
|
||
groupByDay = self.groupByDay.isChecked()
|
||
histMax = self.histMax.value()
|
||
|
||
self.optState.setValue("GuiWritingStats", "winWidth", winWidth)
|
||
self.optState.setValue("GuiWritingStats", "winHeight", winHeight)
|
||
self.optState.setValue("GuiWritingStats", "widthCol0", widthCol0)
|
||
self.optState.setValue("GuiWritingStats", "widthCol1", widthCol1)
|
||
self.optState.setValue("GuiWritingStats", "widthCol2", widthCol2)
|
||
self.optState.setValue("GuiWritingStats", "sortCol", sortCol)
|
||
self.optState.setValue("GuiWritingStats", "sortOrder", sortOrder)
|
||
self.optState.setValue("GuiWritingStats", "incNovel", incNovel)
|
||
self.optState.setValue("GuiWritingStats", "incNotes", incNotes)
|
||
self.optState.setValue("GuiWritingStats", "hideZeros", hideZeros)
|
||
self.optState.setValue("GuiWritingStats", "hideNegative", hideNegative)
|
||
self.optState.setValue("GuiWritingStats", "groupByDay", groupByDay)
|
||
self.optState.setValue("GuiWritingStats", "histMax", histMax)
|
||
|
||
self.optState.saveSettings()
|
||
self.close()
|
||
|
||
return
|
||
|
||
def _saveData(self, dataFmt):
|
||
"""Save the content of the list box to a file.
|
||
"""
|
||
fileExt = ""
|
||
textFmt = ""
|
||
|
||
if dataFmt == self.FMT_JSON:
|
||
fileExt = "json"
|
||
textFmt = "JSON Data File"
|
||
|
||
elif dataFmt == self.FMT_CSV:
|
||
fileExt = "csv"
|
||
textFmt = "CSV Data File"
|
||
|
||
else:
|
||
return False
|
||
|
||
# Generate the file name
|
||
if fileExt:
|
||
fileName = "sessionStats.%s" % fileExt
|
||
saveDir = self.mainConf.lastPath
|
||
savePath = path.join(saveDir, fileName)
|
||
if not path.isdir(saveDir):
|
||
saveDir = self.mainConf.homePath
|
||
|
||
if self.mainConf.blockGUI:
|
||
dlgOpt = QFileDialog.Options()
|
||
dlgOpt |= QFileDialog.DontUseNativeDialog
|
||
saveTo = QFileDialog.getSaveFileName(
|
||
self, "Save Document As", savePath, options=dlgOpt
|
||
)
|
||
if saveTo[0]:
|
||
savePath = saveTo[0]
|
||
else:
|
||
return False
|
||
|
||
self.mainConf.setLastPath(savePath)
|
||
|
||
else:
|
||
return False
|
||
|
||
# Do the actual writing
|
||
wSuccess = False
|
||
errMsg = ""
|
||
|
||
try:
|
||
with open(savePath, mode="w", encoding="utf8") as outFile:
|
||
if dataFmt == self.FMT_JSON:
|
||
jsonData = []
|
||
for _, sD, tT, wD, wA, wB in self.filterData:
|
||
jsonData.append({
|
||
"date": sD,
|
||
"length": tT,
|
||
"newWords": wD,
|
||
"novelWords": wA,
|
||
"noteWords": wB,
|
||
})
|
||
outFile.write(json.dumps(jsonData, indent=2))
|
||
wSuccess = True
|
||
|
||
elif dataFmt == self.FMT_CSV:
|
||
outFile.write(
|
||
"\"%s\",\"%s\",\"%s\",\"%s\",\"%s\"\n" % (
|
||
"Date", "Length (sec)", "Words Changed", "Novel Words", "Note Words"
|
||
)
|
||
)
|
||
for _, sD, tT, wD, wA, wB in self.filterData:
|
||
outFile.write(
|
||
"\"%s\",%d,%d,%d,%d\n" % (sD, tT, wD, wA, wB)
|
||
)
|
||
wSuccess = True
|
||
|
||
else:
|
||
errMsg = "Unknown format"
|
||
|
||
except Exception as e:
|
||
errMsg = str(e)
|
||
|
||
# Report to user
|
||
if self.mainConf.blockGUI:
|
||
if wSuccess:
|
||
self.theParent.makeAlert(
|
||
"%s file successfully written to:<br> %s" % (
|
||
textFmt, savePath
|
||
), nwAlert.INFO
|
||
)
|
||
else:
|
||
self.theParent.makeAlert(
|
||
"Failed to write %s file. %s" % (
|
||
textFmt, errMsg
|
||
), nwAlert.ERROR
|
||
)
|
||
|
||
return True
|
||
|
||
##
|
||
# Internal Functions
|
||
##
|
||
|
||
def _loadLogFile(self):
|
||
"""Load the content of the log file into a buffer.
|
||
"""
|
||
logger.debug("Loading session log file")
|
||
|
||
self.logData = []
|
||
|
||
ttNovel = 0
|
||
ttNotes = 0
|
||
ttTime = 0
|
||
|
||
try:
|
||
logFile = path.join(self.theProject.projMeta, nwFiles.SESS_STATS)
|
||
with open(logFile, mode="r", encoding="utf8") as inFile:
|
||
for inLine in inFile:
|
||
if inLine.startswith("#"):
|
||
if inLine.startswith("# Offset"):
|
||
self.wordOffset = int(inLine[9:].strip())
|
||
logger.verbose(
|
||
"Initial word count when log was started is %d" % self.wordOffset
|
||
)
|
||
continue
|
||
|
||
inData = inLine.split()
|
||
if len(inData) != 6:
|
||
continue
|
||
|
||
dStart = datetime.strptime(
|
||
"%s %s" % (inData[0], inData[1]), nwConst.tStampFmt
|
||
)
|
||
dEnd = datetime.strptime(
|
||
"%s %s" % (inData[2], inData[3]), nwConst.tStampFmt
|
||
)
|
||
|
||
tDiff = dEnd - dStart
|
||
sDiff = tDiff.total_seconds()
|
||
ttTime += sDiff
|
||
|
||
wcNovel = int(inData[4])
|
||
wcNotes = int(inData[5])
|
||
ttNovel = wcNovel
|
||
ttNotes = wcNotes
|
||
|
||
self.logData.append((dStart, sDiff, wcNovel, wcNotes))
|
||
|
||
except Exception as e:
|
||
self.theParent.makeAlert(
|
||
["Failed to read session log file.", str(e)], nwAlert.ERROR
|
||
)
|
||
return False
|
||
|
||
self.labelTotal.setText(self._formatTime(ttTime))
|
||
self.novelWords.setText("{:n}".format(ttNovel))
|
||
self.notesWords.setText("{:n}".format(ttNotes))
|
||
self.totalWords.setText("{:n}".format(ttNovel + ttNotes))
|
||
|
||
return True
|
||
|
||
def _updateListBox(self, dummyVar=None):
|
||
"""Load/reload the content of the list box. The dummyVar
|
||
variable captures the variable sent from the widgets connecting
|
||
to it and discards it.
|
||
"""
|
||
self.listBox.clear()
|
||
self.timeFilter = 0.0
|
||
|
||
incNovel = self.incNovel.isChecked()
|
||
incNotes = self.incNotes.isChecked()
|
||
hideZeros = self.hideZeros.isChecked()
|
||
hideNegative = self.hideNegative.isChecked()
|
||
groupByDay = self.groupByDay.isChecked()
|
||
histMax = self.histMax.value()
|
||
|
||
# Group the data
|
||
if groupByDay:
|
||
tempData = []
|
||
sessDate = None
|
||
sessTime = 0
|
||
lstNovel = 0
|
||
lstNotes = 0
|
||
|
||
for n, (dStart, sDiff, wcNovel, wcNotes) in enumerate(self.logData):
|
||
if n == 0:
|
||
sessDate = dStart.date()
|
||
if sessDate != dStart.date():
|
||
tempData.append((sessDate, sessTime, lstNovel, lstNotes))
|
||
sessDate = dStart.date()
|
||
sessTime = sDiff
|
||
lstNovel = wcNovel
|
||
lstNotes = wcNotes
|
||
else:
|
||
sessTime += sDiff
|
||
lstNovel = wcNovel
|
||
lstNotes = wcNotes
|
||
|
||
if sessDate is not None:
|
||
tempData.append((sessDate, sessTime, lstNovel, lstNotes))
|
||
|
||
else:
|
||
tempData = self.logData
|
||
|
||
# Calculate Word Diff
|
||
self.filterData = []
|
||
pcTotal = 0
|
||
listMax = 0
|
||
isFirst = True
|
||
for dStart, sDiff, wcNovel, wcNotes in tempData:
|
||
|
||
wcTotal = 0
|
||
if incNovel:
|
||
wcTotal += wcNovel
|
||
if incNotes:
|
||
wcTotal += wcNotes
|
||
|
||
dwTotal = wcTotal - pcTotal
|
||
if hideZeros and dwTotal == 0:
|
||
continue
|
||
if hideNegative and dwTotal < 0:
|
||
continue
|
||
|
||
if isFirst:
|
||
# Subtract the offset from the first list entry
|
||
dwTotal -= self.wordOffset
|
||
dwTotal = max(dwTotal, 1) # Don't go zero or negative
|
||
isFirst = False
|
||
|
||
if groupByDay:
|
||
sStart = dStart.strftime(nwConst.dStampFmt)
|
||
else:
|
||
sStart = dStart.strftime(nwConst.tStampFmt)
|
||
|
||
self.filterData.append((dStart, sStart, sDiff, dwTotal, wcNovel, wcNotes))
|
||
listMax = min(max(listMax, dwTotal), histMax)
|
||
pcTotal = wcTotal
|
||
|
||
# Populate the list
|
||
for _, sStart, sDiff, nWords, _, _ in self.filterData:
|
||
|
||
newItem = QTreeWidgetItem()
|
||
newItem.setText(self.C_TIME, sStart)
|
||
newItem.setText(self.C_LENGTH, self._formatTime(sDiff))
|
||
newItem.setText(self.C_COUNT, "{:n}".format(nWords))
|
||
|
||
if nWords > 0 and listMax > 0:
|
||
theBar = self.barImage.scaled(
|
||
int(200*min(nWords, histMax)/listMax),
|
||
self.barHeight,
|
||
Qt.IgnoreAspectRatio,
|
||
Qt.FastTransformation
|
||
)
|
||
newItem.setData(self.C_BAR, Qt.DecorationRole, theBar)
|
||
|
||
newItem.setTextAlignment(self.C_LENGTH, Qt.AlignRight)
|
||
newItem.setTextAlignment(self.C_COUNT, Qt.AlignRight)
|
||
newItem.setTextAlignment(self.C_BAR, Qt.AlignLeft | Qt.AlignVCenter)
|
||
|
||
newItem.setFont(self.C_TIME, self.theTheme.guiFontFixed)
|
||
newItem.setFont(self.C_LENGTH, self.theTheme.guiFontFixed)
|
||
newItem.setFont(self.C_COUNT, self.theTheme.guiFontFixed)
|
||
|
||
self.listBox.addTopLevelItem(newItem)
|
||
self.timeFilter += sDiff
|
||
|
||
self.labelFilter.setText(self._formatTime(self.timeFilter))
|
||
|
||
return True
|
||
|
||
def _formatTime(self, tS):
|
||
"""Format the time spent in 00:00:00 format.
|
||
"""
|
||
tM = int(tS/60)
|
||
tH = int(tM/60)
|
||
tM = tM - tH*60
|
||
tS = tS - tM*60 - tH*3600
|
||
return "%02d:%02d:%02d" % (tH, tM, tS)
|
||
|
||
# END Class GuiWritingStats
|