mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 10:44:09 -04:00
Enhancement 1878393: make double-click on an item in Quickview search for that item in the tag browser.
This commit is contained in:
parent
156bd97b17
commit
ae51f6e347
@ -179,6 +179,7 @@ class Quickview(QDialog, Ui_Quickview):
|
|||||||
self.items.setSelectionMode(QAbstractItemView.SingleSelection)
|
self.items.setSelectionMode(QAbstractItemView.SingleSelection)
|
||||||
self.items.currentTextChanged.connect(self.item_selected)
|
self.items.currentTextChanged.connect(self.item_selected)
|
||||||
self.items.setProperty('highlight_current_item', 150)
|
self.items.setProperty('highlight_current_item', 150)
|
||||||
|
self.items.itemDoubleClicked.connect(self.item_doubleclicked)
|
||||||
|
|
||||||
focus_filter = WidgetFocusFilter(self.items)
|
focus_filter = WidgetFocusFilter(self.items)
|
||||||
focus_filter.focus_entered_signal.connect(self.focus_entered)
|
focus_filter.focus_entered_signal.connect(self.focus_entered)
|
||||||
@ -277,6 +278,12 @@ class Quickview(QDialog, Ui_Quickview):
|
|||||||
self.close_button.setToolTip(_('Alternate shortcut: ') +
|
self.close_button.setToolTip(_('Alternate shortcut: ') +
|
||||||
toggle_shortcut.toString())
|
toggle_shortcut.toString())
|
||||||
|
|
||||||
|
def item_doubleclicked(self, item):
|
||||||
|
tb = self.gui.stack.tb_widget
|
||||||
|
tb.set_focus_to_find_box()
|
||||||
|
tb.item_search.lineEdit().setText(self.current_key + ':' + item.text())
|
||||||
|
tb.do_find()
|
||||||
|
|
||||||
def show_context_menu(self, point):
|
def show_context_menu(self, point):
|
||||||
index = self.books_table.indexAt(point)
|
index = self.books_table.indexAt(point)
|
||||||
item = self.books_table.item(index.row(), 0)
|
item = self.books_table.item(index.row(), 0)
|
||||||
@ -495,6 +502,10 @@ class Quickview(QDialog, Ui_Quickview):
|
|||||||
|
|
||||||
for v in vals:
|
for v in vals:
|
||||||
a = QListWidgetItem(v)
|
a = QListWidgetItem(v)
|
||||||
|
a.setToolTip('<p>' +
|
||||||
|
_('Click to show only books with this item. '
|
||||||
|
'Double click to search for this item in the tag browser')
|
||||||
|
+ '</p>')
|
||||||
self.items.addItem(a)
|
self.items.addItem(a)
|
||||||
self.items.setCurrentRow(0)
|
self.items.setCurrentRow(0)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user