1
0
mirror of https://gitlab.com/openlp/openlp.git synced 2024-09-28 10:57:36 +00:00

Add persistance to Alerts Tab and default colors

bzr-revno: 363
This commit is contained in:
Tim Bentley 2009-03-03 17:21:47 +00:00
parent da86e4a2ee
commit d924329cf0

View File

@ -159,20 +159,20 @@ class AlertsTab(SettingsTab):
self.PreviewGroupBox.setTitle(translate(u'AlertsTab', u'Preview'))
def onBackgroundColourButtonclicked(self):
old_name = 0
colour = QtGui.QColorDialog.getColor(QColor(old_name), self).name()
print colour
self.BackgroundColourButton.setStyleSheet('background-color: %s' % colour)
self.bg_color = QtGui.QColorDialog.getColor(QColor(self.bg_color), self).name()
self.BackgroundColourButton.setStyleSheet('background-color: %s' % self.bg_color)
def onFontColourButtonclicked(self):
old_name = 0
colour = QtGui.QColorDialog.getColor(QColor(old_name), self).name()
print colour
self.FontColourButton.setStyleSheet('background-color: %s' % colour)
self.font_color = QtGui.QColorDialog.getColor(QColor(self.font_color), self).name()
self.FontColourButton.setStyleSheet('background-color: %s' % self.font_color)
def load(self):
pass
self.font_color = self.config.get_config("font color",u"#ffffff" )
self.FontColourButton.setStyleSheet('background-color: %s' % self.font_color)
self.bg_color = self.config.get_config("background color",u"#00007f" )
self.BackgroundColourButton.setStyleSheet('background-color: %s' % self.bg_color)
def save(self):
pass
self.config.set_config("background color", str(self.bg_color))
self.config.set_config("font color", str(self.font_color))