You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
391 B
Python
16 lines
391 B
Python
# ConfigData
|
|
|
|
class ConfigData:
|
|
def __init__(self):
|
|
self.isShadow = False
|
|
self.isSecondVisible = False
|
|
self.timezone = ''
|
|
self.timezoneCaption = ''
|
|
self.stylesPath = '../styles'
|
|
self.size = (0, 0)
|
|
self.styleName = ''
|
|
self.filename = ''
|
|
self.kclockVersion = '1.1'
|
|
self.timezoneCaptionStyle = {'isVisible': True, 'fontName':'Arial', 'fontSize': 10, 'color': '#FFFFFF'}
|
|
|