This commit is contained in:
GRiker 2011-05-06 05:12:40 -06:00
commit d5c52c842e
2 changed files with 28 additions and 8 deletions

View File

@ -156,7 +156,7 @@ class AuthorsEdit(MultiCompleteComboBox):
TOOLTIP = '' TOOLTIP = ''
LABEL = _('&Author(s):') LABEL = _('&Author(s):')
def __init__(self, parent): def __init__(self, parent, manage_authors):
self.dialog = parent self.dialog = parent
self.books_to_refresh = set([]) self.books_to_refresh = set([])
MultiCompleteComboBox.__init__(self, parent) MultiCompleteComboBox.__init__(self, parent)
@ -164,6 +164,22 @@ class AuthorsEdit(MultiCompleteComboBox):
self.setWhatsThis(self.TOOLTIP) self.setWhatsThis(self.TOOLTIP)
self.setEditable(True) self.setEditable(True)
self.setSizeAdjustPolicy(self.AdjustToMinimumContentsLengthWithIcon) self.setSizeAdjustPolicy(self.AdjustToMinimumContentsLengthWithIcon)
manage_authors.triggered.connect(self.manage_authors)
def manage_authors(self):
if self.original_val != self.current_val:
if (question_dialog(self, _('Authors changed'),
_('You have changed the authors for this book. You must save '
'these changes before you can use Manage authors. Do you '
'want to save these changes?'), show_copy_button=False)):
self.commit(self.db, self.id_)
self.db.commit()
self.original_val = self.current_val
else:
self.current_val = self.original_val
self.dialog.parent().do_author_sort_edit(self, self.id_)
self.initialize(self.db, self.id_)
self.dialog.author_sort.initialize(self.db, self.id_)
def get_default(self): def get_default(self):
return _('Unknown') return _('Unknown')
@ -175,7 +191,7 @@ class AuthorsEdit(MultiCompleteComboBox):
self.clear() self.clear()
for i in all_authors: for i in all_authors:
id, name = i id, name = i
name = [name.strip().replace('|', ',') for n in name.split(',')] name = name.strip().replace('|', ',')
self.addItem(authors_to_string(name)) self.addItem(authors_to_string(name))
self.set_separator('&') self.set_separator('&')
@ -188,6 +204,8 @@ class AuthorsEdit(MultiCompleteComboBox):
au = _('Unknown') au = _('Unknown')
self.current_val = [a.strip().replace('|', ',') for a in au.split(',')] self.current_val = [a.strip().replace('|', ',') for a in au.split(',')]
self.original_val = self.current_val self.original_val = self.current_val
self.id_ = id_
self.db = db
def commit(self, db, id_): def commit(self, db, id_):
authors = self.current_val authors = self.current_val

View File

@ -103,16 +103,18 @@ class MetadataSingleDialogBase(ResizableDialog):
self.basic_metadata_widgets.extend([self.title, self.title_sort]) self.basic_metadata_widgets.extend([self.title, self.title_sort])
self.deduce_author_sort_button = b = QToolButton(self) self.deduce_author_sort_button = b = QToolButton(self)
b.setToolTip(_( b.setToolTip('<p>' +
'Automatically create the author sort entry based on the current' _('Automatically create the author sort entry based on the current '
' author entry.\n' 'author entry. Using this button to create author sort will '
'Using this button to create author sort will change author sort from' 'change author sort from red to green. There is a menu of '
' red to green.')) 'functions available under this button. Click and hold '
'on the button to see it.') + '</p>')
b.m = m = QMenu() b.m = m = QMenu()
ac = m.addAction(QIcon(I('forward.png')), _('Set author sort from author')) ac = m.addAction(QIcon(I('forward.png')), _('Set author sort from author'))
ac2 = m.addAction(QIcon(I('back.png')), _('Set author from author sort')) ac2 = m.addAction(QIcon(I('back.png')), _('Set author from author sort'))
ac3 = m.addAction(QIcon(I('user_profile.png')), _('Manage authors'))
b.setMenu(m) b.setMenu(m)
self.authors = AuthorsEdit(self) self.authors = AuthorsEdit(self, ac3)
self.author_sort = AuthorSortEdit(self, self.authors, b, self.db, ac, self.author_sort = AuthorSortEdit(self, self.authors, b, self.db, ac,
ac2) ac2)
self.basic_metadata_widgets.extend([self.authors, self.author_sort]) self.basic_metadata_widgets.extend([self.authors, self.author_sort])