forked from openlp/openlp
Head984
This commit is contained in:
commit
992cebb05c
@ -38,7 +38,7 @@ class GeneralTab(SettingsTab):
|
|||||||
"""
|
"""
|
||||||
self.screens = screens
|
self.screens = screens
|
||||||
self.monitorNumber = 0
|
self.monitorNumber = 0
|
||||||
# Set to true to allow PostSetUp to work first time
|
# Set to True to allow PostSetup to work on application start up
|
||||||
self.overrideChanged = True
|
self.overrideChanged = True
|
||||||
SettingsTab.__init__(self, u'General')
|
SettingsTab.__init__(self, u'General')
|
||||||
|
|
||||||
|
@ -113,6 +113,12 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
u'%s %s' % (author.first_name, author.last_name))
|
u'%s %s' % (author.first_name, author.last_name))
|
||||||
author_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(author.id))
|
author_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(author.id))
|
||||||
self.AuthorsListWidget.addItem(author_name)
|
self.AuthorsListWidget.addItem(author_name)
|
||||||
|
if self.AuthorsListWidget.count() == 0:
|
||||||
|
self.AuthorDeleteButton.setEnabled(False)
|
||||||
|
self.AuthorEditButton.setEnabled(False)
|
||||||
|
else:
|
||||||
|
self.AuthorDeleteButton.setEnabled(True)
|
||||||
|
self.AuthorEditButton.setEnabled(True)
|
||||||
|
|
||||||
def resetTopics(self):
|
def resetTopics(self):
|
||||||
"""
|
"""
|
||||||
@ -125,6 +131,12 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
topic_name = QtGui.QListWidgetItem(topic.name)
|
topic_name = QtGui.QListWidgetItem(topic.name)
|
||||||
topic_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(topic.id))
|
topic_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(topic.id))
|
||||||
self.TopicsListWidget.addItem(topic_name)
|
self.TopicsListWidget.addItem(topic_name)
|
||||||
|
if self.TopicsListWidget.count() == 0:
|
||||||
|
self.TopicDeleteButton.setEnabled(False)
|
||||||
|
self.TopicEditButton.setEnabled(False)
|
||||||
|
else:
|
||||||
|
self.TopicDeleteButton.setEnabled(True)
|
||||||
|
self.TopicEditButton.setEnabled(True)
|
||||||
|
|
||||||
def resetBooks(self):
|
def resetBooks(self):
|
||||||
"""
|
"""
|
||||||
@ -137,6 +149,12 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
book.publisher))
|
book.publisher))
|
||||||
book_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(book.id))
|
book_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(book.id))
|
||||||
self.BooksListWidget.addItem(book_name)
|
self.BooksListWidget.addItem(book_name)
|
||||||
|
if self.BooksListWidget.count() == 0:
|
||||||
|
self.BookDeleteButton.setEnabled(False)
|
||||||
|
self.BookEditButton.setEnabled(False)
|
||||||
|
else:
|
||||||
|
self.BookDeleteButton.setEnabled(True)
|
||||||
|
self.BookEditButton.setEnabled(True)
|
||||||
|
|
||||||
def checkAuthor(self, new_author, edit=False):
|
def checkAuthor(self, new_author, edit=False):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user