mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Changes to refactored metadata dialog for case change
This commit is contained in:
parent
947ae40a97
commit
75b28092d3
@ -300,6 +300,7 @@ class SeriesEdit(MultiCompleteComboBox):
|
|||||||
self.setToolTip(self.TOOLTIP)
|
self.setToolTip(self.TOOLTIP)
|
||||||
self.setWhatsThis(self.TOOLTIP)
|
self.setWhatsThis(self.TOOLTIP)
|
||||||
self.setEditable(True)
|
self.setEditable(True)
|
||||||
|
self.books_to_refresh = set([])
|
||||||
|
|
||||||
@dynamic_property
|
@dynamic_property
|
||||||
def current_val(self):
|
def current_val(self):
|
||||||
@ -316,6 +317,7 @@ class SeriesEdit(MultiCompleteComboBox):
|
|||||||
return property(fget=fget, fset=fset)
|
return property(fget=fget, fset=fset)
|
||||||
|
|
||||||
def initialize(self, db, id_):
|
def initialize(self, db, id_):
|
||||||
|
self.books_to_refresh = set([])
|
||||||
all_series = db.all_series()
|
all_series = db.all_series()
|
||||||
all_series.sort(key=lambda x : sort_key(x[1]))
|
all_series.sort(key=lambda x : sort_key(x[1]))
|
||||||
self.update_items_cache([x[1] for x in all_series])
|
self.update_items_cache([x[1] for x in all_series])
|
||||||
@ -335,7 +337,8 @@ class SeriesEdit(MultiCompleteComboBox):
|
|||||||
|
|
||||||
def commit(self, db, id_):
|
def commit(self, db, id_):
|
||||||
series = self.current_val
|
series = self.current_val
|
||||||
db.set_series(id_, series, notify=False, commit=True)
|
self.books_to_refresh |= db.set_series(id_, series, notify=False,
|
||||||
|
commit=True, allow_case_change=True)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
class SeriesIndexEdit(QDoubleSpinBox):
|
class SeriesIndexEdit(QDoubleSpinBox):
|
||||||
@ -927,6 +930,7 @@ class PublisherEdit(MultiCompleteComboBox): # {{{
|
|||||||
self.set_separator(None)
|
self.set_separator(None)
|
||||||
self.setSizeAdjustPolicy(
|
self.setSizeAdjustPolicy(
|
||||||
self.AdjustToMinimumContentsLengthWithIcon)
|
self.AdjustToMinimumContentsLengthWithIcon)
|
||||||
|
self.books_to_refresh = set([])
|
||||||
|
|
||||||
@dynamic_property
|
@dynamic_property
|
||||||
def current_val(self):
|
def current_val(self):
|
||||||
@ -943,6 +947,7 @@ class PublisherEdit(MultiCompleteComboBox): # {{{
|
|||||||
return property(fget=fget, fset=fset)
|
return property(fget=fget, fset=fset)
|
||||||
|
|
||||||
def initialize(self, db, id_):
|
def initialize(self, db, id_):
|
||||||
|
self.books_to_refresh = set([])
|
||||||
all_publishers = db.all_publishers()
|
all_publishers = db.all_publishers()
|
||||||
all_publishers.sort(key=lambda x : sort_key(x[1]))
|
all_publishers.sort(key=lambda x : sort_key(x[1]))
|
||||||
self.update_items_cache([x[1] for x in all_publishers])
|
self.update_items_cache([x[1] for x in all_publishers])
|
||||||
@ -960,7 +965,8 @@ class PublisherEdit(MultiCompleteComboBox): # {{{
|
|||||||
self.setCurrentIndex(idx)
|
self.setCurrentIndex(idx)
|
||||||
|
|
||||||
def commit(self, db, id_):
|
def commit(self, db, id_):
|
||||||
db.set_publisher(id_, self.current_val, notify=False, commit=False)
|
self.books_to_refresh |= db.set_publisher(id_, self.current_val,
|
||||||
|
notify=False, commit=False, allow_case_change=True)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
@ -311,7 +311,7 @@ class MetadataSingleDialogBase(ResizableDialog):
|
|||||||
return False
|
return False
|
||||||
raise
|
raise
|
||||||
for widget in getattr(self, 'custom_metadata_widgets', []):
|
for widget in getattr(self, 'custom_metadata_widgets', []):
|
||||||
widget.commit(self.book_id)
|
self.books_to_refresh |= widget.commit(self.book_id)
|
||||||
|
|
||||||
self.db.commit()
|
self.db.commit()
|
||||||
rows = self.db.refresh_ids(list(self.books_to_refresh))
|
rows = self.db.refresh_ids(list(self.books_to_refresh))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user