113 lines
2.4 KiB
Python
113 lines
2.4 KiB
Python
"""
|
||
novelWriter – Project Data Class
|
||
================================
|
||
Class for holding the project settings
|
||
|
||
File History:
|
||
Created: 2022-10-30 [2.0rc1]
|
||
|
||
This file is a part of novelWriter
|
||
Copyright 2018–2022, 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
|
||
|
||
from novelwriter.common import checkInt, simplified
|
||
|
||
logger = logging.getLogger(__name__)
|
||
|
||
|
||
class NWProjectData:
|
||
|
||
def __init__(self):
|
||
|
||
# Project Meta
|
||
self._name = ""
|
||
self._title = ""
|
||
self._authors = []
|
||
self._saveCount = 0
|
||
self._autoCount = 0
|
||
self._editTime = 0
|
||
|
||
# Internal
|
||
self._changed = False
|
||
|
||
return
|
||
|
||
##
|
||
# Properties
|
||
##
|
||
|
||
@property
|
||
def name(self):
|
||
return self._name
|
||
|
||
@property
|
||
def title(self):
|
||
return self._title
|
||
|
||
@property
|
||
def autors(self):
|
||
return self._authors
|
||
|
||
@property
|
||
def saveCount(self):
|
||
return self._saveCount
|
||
|
||
@property
|
||
def autoCount(self):
|
||
return self._autoCount
|
||
|
||
@property
|
||
def editTime(self):
|
||
return self._editTime
|
||
|
||
##
|
||
# Setters
|
||
##
|
||
|
||
def setName(self, value):
|
||
self._name = simplified(str(value))
|
||
self._changed = True
|
||
return
|
||
|
||
def setTitle(self, value):
|
||
self._title = simplified(str(value))
|
||
self._changed = True
|
||
return
|
||
|
||
def addAuthor(self, value):
|
||
self._authors.append(simplified(str(value)))
|
||
self._changed = True
|
||
return
|
||
|
||
def setSaveCount(self, value):
|
||
self._saveCount = checkInt(value, 0)
|
||
self._changed = True
|
||
return
|
||
|
||
def setAutoCount(self, value):
|
||
self._autoCount = checkInt(value, 0)
|
||
self._changed = True
|
||
return
|
||
|
||
def setEditTime(self, value):
|
||
self._editTime = checkInt(value, 0)
|
||
self._changed = True
|
||
return
|
||
|
||
# END Class NWProjectData
|