2021-04-12 09:50:44 +02:00
|
|
|
# Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
from __future__ import annotations
|
|
|
|
|
2021-10-05 05:53:01 +02:00
|
|
|
from typing import Any, Callable, Sequence
|
2021-04-12 09:50:44 +02:00
|
|
|
|
|
|
|
import aqt
|
2022-02-13 04:40:47 +01:00
|
|
|
import aqt.browser
|
2021-04-12 09:50:44 +02:00
|
|
|
import aqt.forms
|
|
|
|
from anki.cards import Card, CardId
|
|
|
|
from anki.collection import Collection, Config, OpChanges
|
|
|
|
from anki.consts import *
|
|
|
|
from anki.notes import Note, NoteId
|
2022-09-19 02:58:05 +02:00
|
|
|
from aqt import gui_hooks
|
2021-04-12 09:50:44 +02:00
|
|
|
from aqt.browser.table import Columns, ItemId, SearchContext
|
|
|
|
from aqt.browser.table.model import DataModel
|
|
|
|
from aqt.browser.table.state import CardState, ItemState, NoteState
|
|
|
|
from aqt.qt import *
|
|
|
|
from aqt.theme import theme_manager
|
|
|
|
from aqt.utils import (
|
|
|
|
KeyboardModifiersPressed,
|
|
|
|
qtMenuShortcutWorkaround,
|
|
|
|
restoreHeader,
|
|
|
|
saveHeader,
|
|
|
|
showInfo,
|
|
|
|
tr,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class Table:
|
|
|
|
SELECTION_LIMIT: int = 500
|
|
|
|
|
|
|
|
def __init__(self, browser: aqt.browser.Browser) -> None:
|
|
|
|
self.browser = browser
|
|
|
|
self.col: Collection = browser.col
|
|
|
|
self._state: ItemState = (
|
|
|
|
NoteState(self.col)
|
|
|
|
if self.col.get_config_bool(Config.Bool.BROWSER_TABLE_SHOW_NOTES_MODE)
|
|
|
|
else CardState(self.col)
|
|
|
|
)
|
2021-09-25 15:39:27 +02:00
|
|
|
self._model = DataModel(
|
2022-02-18 10:00:12 +01:00
|
|
|
self.browser,
|
2021-09-25 15:39:27 +02:00
|
|
|
self.col,
|
|
|
|
self._state,
|
|
|
|
self._on_row_state_will_change,
|
|
|
|
self._on_row_state_changed,
|
|
|
|
)
|
2021-10-03 10:59:42 +02:00
|
|
|
self._view: QTableView | None = None
|
2021-09-28 11:45:22 +02:00
|
|
|
# cached for performance
|
2021-09-25 15:39:27 +02:00
|
|
|
self._len_selection = 0
|
2021-10-03 10:59:42 +02:00
|
|
|
self._selected_rows: list[QModelIndex] | None = None
|
2021-09-28 11:45:22 +02:00
|
|
|
# temporarily set for selection preservation
|
2021-10-03 10:59:42 +02:00
|
|
|
self._current_item: ItemId | None = None
|
2021-04-12 09:50:44 +02:00
|
|
|
self._selected_items: Sequence[ItemId] = []
|
|
|
|
|
|
|
|
def set_view(self, view: QTableView) -> None:
|
|
|
|
self._view = view
|
|
|
|
self._setup_view()
|
|
|
|
self._setup_headers()
|
|
|
|
|
|
|
|
def cleanup(self) -> None:
|
|
|
|
self._save_header()
|
|
|
|
|
|
|
|
# Public Methods
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
# Get metadata
|
|
|
|
|
|
|
|
def len(self) -> int:
|
|
|
|
return self._model.len_rows()
|
|
|
|
|
2021-09-25 15:39:27 +02:00
|
|
|
def len_selection(self, refresh: bool = False) -> int:
|
2021-09-27 10:15:53 +02:00
|
|
|
# `len(self._view.selectionModel().selectedRows())` is slow for large
|
|
|
|
# selections, because Qt queries flags() for every selected cell, so we
|
|
|
|
# calculate the number of selected rows ourselves
|
2021-09-25 15:39:27 +02:00
|
|
|
return self._len_selection
|
2021-04-12 09:50:44 +02:00
|
|
|
|
|
|
|
def has_current(self) -> bool:
|
|
|
|
return self._view.selectionModel().currentIndex().isValid()
|
|
|
|
|
|
|
|
def has_previous(self) -> bool:
|
|
|
|
return self.has_current() and self._current().row() > 0
|
|
|
|
|
|
|
|
def has_next(self) -> bool:
|
|
|
|
return self.has_current() and self._current().row() < self.len() - 1
|
|
|
|
|
|
|
|
def is_notes_mode(self) -> bool:
|
|
|
|
return self._state.is_notes_mode()
|
|
|
|
|
|
|
|
# Get objects
|
|
|
|
|
2021-10-03 10:59:42 +02:00
|
|
|
def get_current_card(self) -> Card | None:
|
2021-04-12 09:50:44 +02:00
|
|
|
return self._model.get_card(self._current())
|
|
|
|
|
2021-10-03 10:59:42 +02:00
|
|
|
def get_current_note(self) -> Note | None:
|
2021-04-12 09:50:44 +02:00
|
|
|
return self._model.get_note(self._current())
|
|
|
|
|
2021-10-03 10:59:42 +02:00
|
|
|
def get_single_selected_card(self) -> Card | None:
|
2021-04-12 09:50:44 +02:00
|
|
|
"""If there is only one row selected return its card, else None.
|
|
|
|
This may be a different one than the current card."""
|
|
|
|
if self.len_selection() != 1:
|
|
|
|
return None
|
|
|
|
return self._model.get_card(self._selected()[0])
|
|
|
|
|
|
|
|
# Get ids
|
|
|
|
|
|
|
|
def get_selected_card_ids(self) -> Sequence[CardId]:
|
|
|
|
return self._model.get_card_ids(self._selected())
|
|
|
|
|
|
|
|
def get_selected_note_ids(self) -> Sequence[NoteId]:
|
|
|
|
return self._model.get_note_ids(self._selected())
|
|
|
|
|
|
|
|
def get_card_ids_from_selected_note_ids(self) -> Sequence[CardId]:
|
|
|
|
return self._state.card_ids_from_note_ids(self.get_selected_note_ids())
|
|
|
|
|
|
|
|
# Selecting
|
|
|
|
|
|
|
|
def select_all(self) -> None:
|
|
|
|
self._view.selectAll()
|
|
|
|
|
|
|
|
def clear_selection(self) -> None:
|
2021-09-27 10:15:53 +02:00
|
|
|
self._len_selection = 0
|
2021-09-28 11:45:22 +02:00
|
|
|
self._selected_rows = None
|
2021-04-12 09:50:44 +02:00
|
|
|
self._view.selectionModel().clear()
|
|
|
|
|
|
|
|
def invert_selection(self) -> None:
|
|
|
|
selection = self._view.selectionModel().selection()
|
|
|
|
self.select_all()
|
|
|
|
self._view.selectionModel().select(
|
|
|
|
selection,
|
2021-10-05 05:53:01 +02:00
|
|
|
QItemSelectionModel.SelectionFlag.Deselect
|
|
|
|
| QItemSelectionModel.SelectionFlag.Rows,
|
2021-04-12 09:50:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
def select_single_card(self, card_id: CardId) -> None:
|
|
|
|
"""Try to set the selection to the item corresponding to the given card."""
|
2021-09-28 10:19:33 +02:00
|
|
|
self._reset_selection()
|
2021-04-12 09:50:44 +02:00
|
|
|
if (row := self._model.get_card_row(card_id)) is not None:
|
|
|
|
self._view.selectRow(row)
|
2021-06-08 08:22:56 +02:00
|
|
|
self._scroll_to_row(row, scroll_even_if_visible=True)
|
2021-09-28 10:19:33 +02:00
|
|
|
else:
|
2021-10-01 16:40:25 +02:00
|
|
|
self.browser.on_all_or_selected_rows_changed()
|
|
|
|
self.browser.on_current_row_changed()
|
2021-04-12 09:50:44 +02:00
|
|
|
|
|
|
|
# Reset
|
|
|
|
|
|
|
|
def reset(self) -> None:
|
|
|
|
"""Reload table data from collection and redraw."""
|
|
|
|
self.begin_reset()
|
|
|
|
self.end_reset()
|
|
|
|
|
|
|
|
def begin_reset(self) -> None:
|
|
|
|
self._save_selection()
|
|
|
|
self._model.begin_reset()
|
|
|
|
|
|
|
|
def end_reset(self) -> None:
|
|
|
|
self._model.end_reset()
|
|
|
|
self._restore_selection(self._intersected_selection)
|
|
|
|
|
|
|
|
def on_backend_will_block(self) -> None:
|
|
|
|
# make sure the card list doesn't try to refresh itself during the operation,
|
|
|
|
# as that will block the UI
|
|
|
|
self._model.begin_blocking()
|
|
|
|
|
|
|
|
def on_backend_did_block(self) -> None:
|
|
|
|
self._model.end_blocking()
|
|
|
|
|
|
|
|
def redraw_cells(self) -> None:
|
|
|
|
self._model.redraw_cells()
|
|
|
|
|
|
|
|
def op_executed(
|
2021-10-03 10:59:42 +02:00
|
|
|
self, changes: OpChanges, handler: object | None, focused: bool
|
2021-04-12 09:50:44 +02:00
|
|
|
) -> None:
|
|
|
|
if changes.browser_table:
|
|
|
|
self._model.mark_cache_stale()
|
|
|
|
if focused:
|
|
|
|
self.redraw_cells()
|
|
|
|
|
|
|
|
# Modify table
|
|
|
|
|
|
|
|
def search(self, txt: str) -> None:
|
|
|
|
self._save_selection()
|
|
|
|
self._model.search(SearchContext(search=txt, browser=self.browser))
|
|
|
|
self._restore_selection(self._intersected_selection)
|
|
|
|
|
|
|
|
def toggle_state(self, is_notes_mode: bool, last_search: str) -> None:
|
|
|
|
if is_notes_mode == self.is_notes_mode():
|
|
|
|
return
|
|
|
|
self._save_header()
|
|
|
|
self._save_selection()
|
|
|
|
self._state = self._model.toggle_state(
|
|
|
|
SearchContext(search=last_search, browser=self.browser)
|
|
|
|
)
|
|
|
|
self.col.set_config_bool(
|
2021-05-24 06:50:46 +02:00
|
|
|
Config.Bool.BROWSER_TABLE_SHOW_NOTES_MODE,
|
|
|
|
self.is_notes_mode(),
|
2021-04-12 09:50:44 +02:00
|
|
|
)
|
|
|
|
self._restore_header()
|
|
|
|
self._restore_selection(self._toggled_selection)
|
|
|
|
|
|
|
|
# Move cursor
|
|
|
|
|
|
|
|
def to_previous_row(self) -> None:
|
2021-10-05 05:53:01 +02:00
|
|
|
self._move_current(QAbstractItemView.CursorAction.MoveUp)
|
2021-04-12 09:50:44 +02:00
|
|
|
|
|
|
|
def to_next_row(self) -> None:
|
2021-10-05 05:53:01 +02:00
|
|
|
self._move_current(QAbstractItemView.CursorAction.MoveDown)
|
2021-04-12 09:50:44 +02:00
|
|
|
|
|
|
|
def to_first_row(self) -> None:
|
|
|
|
self._move_current_to_row(0)
|
|
|
|
|
|
|
|
def to_last_row(self) -> None:
|
|
|
|
self._move_current_to_row(self._model.len_rows() - 1)
|
|
|
|
|
2021-09-28 11:47:13 +02:00
|
|
|
def to_row_of_unselected_note(self) -> Sequence[NoteId]:
|
|
|
|
"""Select and set focus to a row whose note is not selected, trying
|
|
|
|
the rows below the bottomost, then above the topmost selected row.
|
2021-09-25 17:28:38 +02:00
|
|
|
If that's not possible, clear selection.
|
2021-09-28 11:47:13 +02:00
|
|
|
Return previously selected note ids.
|
2021-09-25 17:28:38 +02:00
|
|
|
"""
|
|
|
|
nids = self.get_selected_note_ids()
|
2021-09-28 11:47:13 +02:00
|
|
|
|
|
|
|
bottom = max(r.row() for r in self._selected()) + 1
|
|
|
|
for row in range(bottom, self.len()):
|
|
|
|
index = self._model.index(row, 0)
|
2022-03-28 11:06:19 +02:00
|
|
|
if self._model.get_row(index).is_disabled:
|
2021-09-28 11:47:13 +02:00
|
|
|
continue
|
|
|
|
if self._model.get_note_id(index) in nids:
|
|
|
|
continue
|
|
|
|
self._move_current_to_row(row)
|
|
|
|
return nids
|
|
|
|
|
|
|
|
top = min(r.row() for r in self._selected()) - 1
|
|
|
|
for row in range(top, -1, -1):
|
|
|
|
index = self._model.index(row, 0)
|
2022-03-28 11:06:19 +02:00
|
|
|
if self._model.get_row(index).is_disabled:
|
2021-09-28 11:47:13 +02:00
|
|
|
continue
|
|
|
|
if self._model.get_note_id(index) in nids:
|
|
|
|
continue
|
|
|
|
self._move_current_to_row(row)
|
|
|
|
return nids
|
|
|
|
|
2021-09-28 10:19:33 +02:00
|
|
|
self._reset_selection()
|
2021-10-01 16:40:25 +02:00
|
|
|
self.browser.on_all_or_selected_rows_changed()
|
|
|
|
self.browser.on_current_row_changed()
|
2021-09-28 11:47:13 +02:00
|
|
|
return nids
|
2021-09-25 17:28:38 +02:00
|
|
|
|
2021-09-25 15:39:27 +02:00
|
|
|
def clear_current(self) -> None:
|
|
|
|
self._view.selectionModel().setCurrentIndex(
|
2021-10-05 05:53:01 +02:00
|
|
|
QModelIndex(),
|
|
|
|
QItemSelectionModel.SelectionFlag.NoUpdate,
|
2021-09-25 15:39:27 +02:00
|
|
|
)
|
|
|
|
|
2021-04-12 09:50:44 +02:00
|
|
|
# Private methods
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
# Helpers
|
|
|
|
|
|
|
|
def _current(self) -> QModelIndex:
|
|
|
|
return self._view.selectionModel().currentIndex()
|
|
|
|
|
2021-10-03 10:59:42 +02:00
|
|
|
def _selected(self) -> list[QModelIndex]:
|
2021-09-28 11:45:22 +02:00
|
|
|
if self._selected_rows is None:
|
|
|
|
self._selected_rows = self._view.selectionModel().selectedRows()
|
|
|
|
return self._selected_rows
|
2021-04-12 09:50:44 +02:00
|
|
|
|
|
|
|
def _set_current(self, row: int, column: int = 0) -> None:
|
|
|
|
index = self._model.index(
|
|
|
|
row, self._view.horizontalHeader().logicalIndex(column)
|
|
|
|
)
|
2021-10-05 05:53:01 +02:00
|
|
|
self._view.selectionModel().setCurrentIndex(
|
|
|
|
index,
|
|
|
|
QItemSelectionModel.SelectionFlag.NoUpdate,
|
|
|
|
)
|
2021-04-12 09:50:44 +02:00
|
|
|
|
2021-09-28 10:19:33 +02:00
|
|
|
def _reset_selection(self) -> None:
|
2021-09-28 11:45:22 +02:00
|
|
|
"""Remove selection and focus without emitting signals.
|
2022-11-24 11:18:57 +01:00
|
|
|
If no selection change is triggered afterwards, `browser.on_all_or_selected_rows_changed()`
|
2021-10-01 16:40:25 +02:00
|
|
|
and `browser.on_current_row_changed()` must be called.
|
2021-09-28 11:45:22 +02:00
|
|
|
"""
|
2021-09-28 10:19:33 +02:00
|
|
|
self._view.selectionModel().reset()
|
|
|
|
self._len_selection = 0
|
2021-09-28 11:45:22 +02:00
|
|
|
self._selected_rows = None
|
2021-09-28 10:19:33 +02:00
|
|
|
|
2021-10-03 10:59:42 +02:00
|
|
|
def _select_rows(self, rows: list[int]) -> None:
|
2021-04-12 09:50:44 +02:00
|
|
|
selection = QItemSelection()
|
|
|
|
for row in rows:
|
|
|
|
selection.select(
|
|
|
|
self._model.index(row, 0),
|
|
|
|
self._model.index(row, self._model.len_columns() - 1),
|
|
|
|
)
|
2021-10-05 05:53:01 +02:00
|
|
|
self._view.selectionModel().select(
|
|
|
|
selection, QItemSelectionModel.SelectionFlag.SelectCurrent
|
|
|
|
)
|
2021-04-12 09:50:44 +02:00
|
|
|
|
|
|
|
def _set_sort_indicator(self) -> None:
|
|
|
|
hh = self._view.horizontalHeader()
|
|
|
|
index = self._model.active_column_index(self._state.sort_column)
|
|
|
|
if index is None:
|
|
|
|
hh.setSortIndicatorShown(False)
|
|
|
|
return
|
|
|
|
if self._state.sort_backwards:
|
2021-10-05 05:53:01 +02:00
|
|
|
order = Qt.SortOrder.DescendingOrder
|
2021-04-12 09:50:44 +02:00
|
|
|
else:
|
2021-10-05 05:53:01 +02:00
|
|
|
order = Qt.SortOrder.AscendingOrder
|
2021-04-12 09:50:44 +02:00
|
|
|
hh.blockSignals(True)
|
|
|
|
hh.setSortIndicator(index, order)
|
|
|
|
hh.blockSignals(False)
|
|
|
|
hh.setSortIndicatorShown(True)
|
|
|
|
|
|
|
|
def _set_column_sizes(self) -> None:
|
|
|
|
hh = self._view.horizontalHeader()
|
2021-10-05 05:53:01 +02:00
|
|
|
hh.setSectionResizeMode(QHeaderView.ResizeMode.Interactive)
|
2021-04-12 09:50:44 +02:00
|
|
|
hh.setSectionResizeMode(
|
2021-10-05 05:53:01 +02:00
|
|
|
hh.logicalIndex(self._model.len_columns() - 1),
|
|
|
|
QHeaderView.ResizeMode.Stretch,
|
2021-04-12 09:50:44 +02:00
|
|
|
)
|
|
|
|
# this must be set post-resize or it doesn't work
|
|
|
|
hh.setCascadingSectionResizes(False)
|
|
|
|
|
|
|
|
def _save_header(self) -> None:
|
2022-06-19 02:44:10 +02:00
|
|
|
saveHeader(
|
2022-06-20 02:26:42 +02:00
|
|
|
self._view.horizontalHeader(), self._state.GEOMETRY_KEY_PREFIX + "31"
|
2022-06-19 02:44:10 +02:00
|
|
|
)
|
2021-04-12 09:50:44 +02:00
|
|
|
|
|
|
|
def _restore_header(self) -> None:
|
2021-05-17 20:07:52 +02:00
|
|
|
self._view.horizontalHeader().blockSignals(True)
|
2022-06-19 02:44:10 +02:00
|
|
|
# Qt 6.3.1 won't allow headers to be clicked when restoring state from a previous
|
|
|
|
# version, so we need to bump the key.
|
|
|
|
restoreHeader(
|
2022-06-20 02:26:42 +02:00
|
|
|
self._view.horizontalHeader(), self._state.GEOMETRY_KEY_PREFIX + "31"
|
2022-06-19 02:44:10 +02:00
|
|
|
)
|
2021-05-17 20:13:45 +02:00
|
|
|
self._set_column_sizes()
|
|
|
|
self._set_sort_indicator()
|
2021-05-17 20:07:52 +02:00
|
|
|
self._view.horizontalHeader().blockSignals(False)
|
2021-04-12 09:50:44 +02:00
|
|
|
|
|
|
|
# Setup
|
|
|
|
|
|
|
|
def _setup_view(self) -> None:
|
|
|
|
self._view.setSortingEnabled(True)
|
|
|
|
self._view.setModel(self._model)
|
|
|
|
self._view.selectionModel()
|
|
|
|
self._view.setItemDelegate(StatusDelegate(self.browser, self._model))
|
|
|
|
qconnect(
|
2021-09-25 15:39:27 +02:00
|
|
|
self._view.selectionModel().selectionChanged, self._on_selection_changed
|
2021-04-12 09:50:44 +02:00
|
|
|
)
|
2021-10-01 16:40:25 +02:00
|
|
|
qconnect(self._view.selectionModel().currentChanged, self._on_current_changed)
|
2021-04-12 09:50:44 +02:00
|
|
|
self._view.setWordWrap(False)
|
2021-10-05 05:53:01 +02:00
|
|
|
self._view.setHorizontalScrollMode(QAbstractItemView.ScrollMode.ScrollPerPixel)
|
2021-05-21 18:59:53 +02:00
|
|
|
self._view.horizontalScrollBar().setSingleStep(10)
|
2021-04-12 09:50:44 +02:00
|
|
|
self._update_font()
|
2021-10-05 05:53:01 +02:00
|
|
|
self._view.setContextMenuPolicy(Qt.ContextMenuPolicy.CustomContextMenu)
|
2021-04-12 09:50:44 +02:00
|
|
|
qconnect(self._view.customContextMenuRequested, self._on_context_menu)
|
|
|
|
|
|
|
|
def _update_font(self) -> None:
|
|
|
|
# we can't choose different line heights efficiently, so we need
|
|
|
|
# to pick a line height big enough for any card template
|
|
|
|
curmax = 16
|
|
|
|
for m in self.col.models.all():
|
|
|
|
for t in m["tmpls"]:
|
|
|
|
bsize = t.get("bsize", 0)
|
|
|
|
if bsize > curmax:
|
|
|
|
curmax = bsize
|
|
|
|
self._view.verticalHeader().setDefaultSectionSize(curmax + 6)
|
|
|
|
|
|
|
|
def _setup_headers(self) -> None:
|
|
|
|
vh = self._view.verticalHeader()
|
|
|
|
hh = self._view.horizontalHeader()
|
2022-11-05 02:11:32 +01:00
|
|
|
vh.hide()
|
|
|
|
hh.show()
|
2021-04-12 09:50:44 +02:00
|
|
|
hh.setHighlightSections(False)
|
|
|
|
hh.setMinimumSectionSize(50)
|
|
|
|
hh.setSectionsMovable(True)
|
2021-10-05 05:53:01 +02:00
|
|
|
hh.setContextMenuPolicy(Qt.ContextMenuPolicy.CustomContextMenu)
|
2021-04-12 09:50:44 +02:00
|
|
|
self._restore_header()
|
|
|
|
qconnect(hh.customContextMenuRequested, self._on_header_context)
|
2021-10-30 01:08:07 +02:00
|
|
|
if qtmajor == 5:
|
|
|
|
qconnect(hh.sortIndicatorChanged, self._on_sort_column_changed_qt5)
|
|
|
|
else:
|
|
|
|
qconnect(hh.sortIndicatorChanged, self._on_sort_column_changed)
|
2021-04-12 09:50:44 +02:00
|
|
|
qconnect(hh.sectionMoved, self._on_column_moved)
|
|
|
|
|
|
|
|
# Slots
|
|
|
|
|
2021-10-01 16:40:25 +02:00
|
|
|
def _on_current_changed(self, current: QModelIndex, previous: QModelIndex) -> None:
|
|
|
|
if current.row() != previous.row():
|
|
|
|
self.browser.on_current_row_changed()
|
|
|
|
|
2021-09-27 10:15:53 +02:00
|
|
|
def _on_selection_changed(
|
|
|
|
self, selected: QItemSelection, deselected: QItemSelection
|
|
|
|
) -> None:
|
2021-09-28 10:22:20 +02:00
|
|
|
# `selection.indexes()` calls `flags()` for all the selection's indexes,
|
|
|
|
# whereas `selectedRows()` calls it for the indexes of the resulting selection.
|
|
|
|
# Both may be slow, so we try to optimise.
|
|
|
|
if KeyboardModifiersPressed().shift or KeyboardModifiersPressed().control:
|
|
|
|
# Current selection is modified. The number of added/removed rows is
|
|
|
|
# usually smaller than the number of rows in the resulting selection.
|
2021-09-28 12:11:20 +02:00
|
|
|
self._len_selection += (
|
|
|
|
len(selected.indexes()) - len(deselected.indexes())
|
|
|
|
) // self._model.len_columns()
|
2021-09-28 10:22:20 +02:00
|
|
|
else:
|
|
|
|
# New selection is created. Usually a single row or none at all.
|
|
|
|
self._len_selection = len(self._view.selectionModel().selectedRows())
|
2021-09-28 11:45:22 +02:00
|
|
|
self._selected_rows = None
|
2021-10-01 16:40:25 +02:00
|
|
|
self.browser.on_all_or_selected_rows_changed()
|
2021-09-25 15:39:27 +02:00
|
|
|
|
|
|
|
def _on_row_state_will_change(self, index: QModelIndex, was_restored: bool) -> None:
|
|
|
|
if not was_restored:
|
|
|
|
if self._view.selectionModel().isSelected(index):
|
|
|
|
self._len_selection -= 1
|
2021-09-28 11:45:22 +02:00
|
|
|
self._selected_rows = None
|
2021-10-01 16:40:25 +02:00
|
|
|
self.browser.on_all_or_selected_rows_changed()
|
2021-09-25 15:39:27 +02:00
|
|
|
if index.row() == self._current().row():
|
|
|
|
# avoid focus on deleted (disabled) rows
|
|
|
|
self.clear_current()
|
2021-10-01 16:40:25 +02:00
|
|
|
self.browser.on_current_row_changed()
|
2021-09-25 15:39:27 +02:00
|
|
|
|
|
|
|
def _on_row_state_changed(self, index: QModelIndex, was_restored: bool) -> None:
|
|
|
|
if was_restored:
|
|
|
|
if self._view.selectionModel().isSelected(index):
|
|
|
|
self._len_selection += 1
|
2021-09-28 11:45:22 +02:00
|
|
|
self._selected_rows = None
|
2021-10-01 16:40:25 +02:00
|
|
|
self.browser.on_all_or_selected_rows_changed()
|
|
|
|
elif not self._current().isValid() and self.len_selection() == 0:
|
2021-09-25 15:39:27 +02:00
|
|
|
# restore focus for convenience
|
|
|
|
self._select_rows([index.row()])
|
|
|
|
self._set_current(index.row())
|
|
|
|
self._scroll_to_row(index.row())
|
2021-10-01 16:40:25 +02:00
|
|
|
# row change and redraw have been triggered
|
2021-09-25 15:39:27 +02:00
|
|
|
return
|
|
|
|
# Workaround for a bug where the flags for the first column don't update
|
|
|
|
# automatically (due to the shortcut in 'model.flags()')
|
|
|
|
top_left = self._model.index(index.row(), 0)
|
|
|
|
bottom_right = self._model.index(index.row(), self._model.len_columns() - 1)
|
|
|
|
self._model.dataChanged.emit(top_left, bottom_right) # type: ignore
|
|
|
|
|
2021-04-12 09:50:44 +02:00
|
|
|
def _on_context_menu(self, _point: QPoint) -> None:
|
|
|
|
menu = QMenu()
|
|
|
|
if self.is_notes_mode():
|
|
|
|
main = self.browser.form.menu_Notes
|
|
|
|
other = self.browser.form.menu_Cards
|
|
|
|
other_name = tr.qt_accel_cards()
|
|
|
|
else:
|
|
|
|
main = self.browser.form.menu_Cards
|
|
|
|
other = self.browser.form.menu_Notes
|
|
|
|
other_name = tr.qt_accel_notes()
|
|
|
|
for action in main.actions():
|
|
|
|
menu.addAction(action)
|
|
|
|
menu.addSeparator()
|
|
|
|
sub_menu = menu.addMenu(other_name)
|
|
|
|
for action in other.actions():
|
|
|
|
sub_menu.addAction(action)
|
|
|
|
gui_hooks.browser_will_show_context_menu(self.browser, menu)
|
|
|
|
qtMenuShortcutWorkaround(menu)
|
2021-10-05 02:01:45 +02:00
|
|
|
menu.exec(QCursor.pos())
|
2021-04-12 09:50:44 +02:00
|
|
|
|
|
|
|
def _on_header_context(self, pos: QPoint) -> None:
|
|
|
|
gpos = self._view.mapToGlobal(pos)
|
|
|
|
m = QMenu()
|
2021-09-30 12:45:05 +02:00
|
|
|
m.setToolTipsVisible(True)
|
2021-04-12 09:50:44 +02:00
|
|
|
for key, column in self._model.columns.items():
|
|
|
|
a = m.addAction(self._state.column_label(column))
|
|
|
|
a.setCheckable(True)
|
|
|
|
a.setChecked(self._model.active_column_index(key) is not None)
|
2021-09-30 12:45:05 +02:00
|
|
|
a.setToolTip(self._state.column_tooltip(column))
|
2021-04-12 09:50:44 +02:00
|
|
|
qconnect(
|
|
|
|
a.toggled,
|
|
|
|
lambda checked, key=key: self._on_column_toggled(checked, key),
|
|
|
|
)
|
|
|
|
gui_hooks.browser_header_will_show_context_menu(self.browser, m)
|
2021-10-05 02:01:45 +02:00
|
|
|
m.exec(gpos)
|
2021-04-12 09:50:44 +02:00
|
|
|
|
|
|
|
def _on_column_moved(self, *_args: Any) -> None:
|
|
|
|
self._set_column_sizes()
|
|
|
|
|
|
|
|
def _on_column_toggled(self, checked: bool, column: str) -> None:
|
|
|
|
if not checked and self._model.len_columns() < 2:
|
|
|
|
showInfo(tr.browsing_you_must_have_at_least_one())
|
|
|
|
return
|
|
|
|
self._model.toggle_column(column)
|
|
|
|
self._set_column_sizes()
|
|
|
|
# sorted field may have been hidden or revealed
|
|
|
|
self._set_sort_indicator()
|
|
|
|
if checked:
|
|
|
|
self._scroll_to_column(self._model.len_columns() - 1)
|
|
|
|
|
2021-10-30 01:08:07 +02:00
|
|
|
def _on_sort_column_changed_qt5(self, section: int, order: int) -> None:
|
|
|
|
self._on_sort_column_changed(
|
|
|
|
section,
|
|
|
|
Qt.SortOrder.AscendingOrder if not order else Qt.SortOrder.DescendingOrder,
|
|
|
|
)
|
|
|
|
|
|
|
|
def _on_sort_column_changed(self, section: int, order: Qt.SortOrder) -> None:
|
2021-04-12 09:50:44 +02:00
|
|
|
column = self._model.column_at_section(section)
|
|
|
|
if column.sorting == Columns.SORTING_NONE:
|
|
|
|
showInfo(tr.browsing_sorting_on_this_column_is_not())
|
2021-05-17 18:33:59 +02:00
|
|
|
self._set_sort_indicator()
|
|
|
|
return
|
|
|
|
if self._state.sort_column != column.key:
|
|
|
|
self._state.sort_column = column.key
|
2021-10-30 01:08:07 +02:00
|
|
|
# numeric fields default to descending
|
|
|
|
if column.sorting == Columns.SORTING_DESCENDING:
|
|
|
|
order = Qt.SortOrder.DescendingOrder
|
|
|
|
self._state.sort_backwards = order == Qt.SortOrder.DescendingOrder
|
2021-04-12 09:50:44 +02:00
|
|
|
self.browser.search()
|
|
|
|
else:
|
2021-10-30 01:08:07 +02:00
|
|
|
descending = order == Qt.SortOrder.DescendingOrder
|
|
|
|
if self._state.sort_backwards != descending:
|
|
|
|
self._state.sort_backwards = descending
|
2021-04-12 09:50:44 +02:00
|
|
|
self._reverse()
|
|
|
|
self._set_sort_indicator()
|
|
|
|
|
|
|
|
def _reverse(self) -> None:
|
|
|
|
self._save_selection()
|
|
|
|
self._model.reverse()
|
|
|
|
self._restore_selection(self._intersected_selection)
|
|
|
|
|
|
|
|
# Restore selection
|
|
|
|
|
|
|
|
def _save_selection(self) -> None:
|
|
|
|
"""Save the current item and selected items."""
|
|
|
|
if self.has_current():
|
|
|
|
self._current_item = self._model.get_item(self._current())
|
|
|
|
self._selected_items = self._model.get_items(self._selected())
|
|
|
|
|
|
|
|
def _restore_selection(self, new_selected_and_current: Callable) -> None:
|
|
|
|
"""Restore the saved selection and current element as far as possible and scroll to the
|
|
|
|
new current element. Clear the saved selection.
|
|
|
|
"""
|
2021-09-28 10:19:33 +02:00
|
|
|
self._reset_selection()
|
2021-04-12 09:50:44 +02:00
|
|
|
if not self._model.is_empty():
|
|
|
|
rows, current = new_selected_and_current()
|
|
|
|
rows = self._qualify_selected_rows(rows, current)
|
|
|
|
current = current or rows[0]
|
|
|
|
self._select_rows(rows)
|
|
|
|
self._set_current(current)
|
2021-06-08 04:54:05 +02:00
|
|
|
self._scroll_to_row(current)
|
2021-09-27 10:15:53 +02:00
|
|
|
if self.len_selection() == 0:
|
2021-04-12 09:50:44 +02:00
|
|
|
# no row change will fire
|
2021-10-01 16:40:25 +02:00
|
|
|
self.browser.on_all_or_selected_rows_changed()
|
|
|
|
self.browser.on_current_row_changed()
|
2021-04-12 09:50:44 +02:00
|
|
|
self._selected_items = []
|
|
|
|
self._current_item = None
|
|
|
|
|
2021-10-03 10:59:42 +02:00
|
|
|
def _qualify_selected_rows(self, rows: list[int], current: int | None) -> list[int]:
|
2021-04-12 09:50:44 +02:00
|
|
|
"""Return between 1 and SELECTION_LIMIT rows, as far as possible from rows or current."""
|
|
|
|
if rows:
|
|
|
|
if len(rows) < self.SELECTION_LIMIT:
|
|
|
|
return rows
|
|
|
|
if current and current in rows:
|
|
|
|
return [current]
|
|
|
|
return rows[0:1]
|
|
|
|
return [current if current else 0]
|
|
|
|
|
2021-10-03 10:59:42 +02:00
|
|
|
def _intersected_selection(self) -> tuple[list[int], int | None]:
|
2021-04-12 09:50:44 +02:00
|
|
|
"""Return all rows of items that were in the saved selection and the row of the saved
|
|
|
|
current element if present.
|
|
|
|
"""
|
|
|
|
selected_rows = self._model.get_item_rows(self._selected_items)
|
|
|
|
current_row = self._current_item and self._model.get_item_row(
|
|
|
|
self._current_item
|
|
|
|
)
|
|
|
|
return selected_rows, current_row
|
|
|
|
|
2021-10-03 10:59:42 +02:00
|
|
|
def _toggled_selection(self) -> tuple[list[int], int | None]:
|
2021-04-12 09:50:44 +02:00
|
|
|
"""Convert the items of the saved selection and current element to the new state and
|
|
|
|
return their rows.
|
|
|
|
"""
|
|
|
|
selected_rows = self._model.get_item_rows(
|
|
|
|
self._state.get_new_items(self._selected_items)
|
|
|
|
)
|
|
|
|
current_row = None
|
|
|
|
if self._current_item:
|
|
|
|
if new_current := self._state.get_new_items([self._current_item]):
|
|
|
|
current_row = self._model.get_item_row(new_current[0])
|
|
|
|
return selected_rows, current_row
|
|
|
|
|
|
|
|
# Move
|
|
|
|
|
2021-06-08 08:22:56 +02:00
|
|
|
def _scroll_to_row(self, row: int, scroll_even_if_visible: bool = False) -> None:
|
2021-04-12 09:50:44 +02:00
|
|
|
"""Scroll vertically to row."""
|
|
|
|
top_border = self._view.rowViewportPosition(row)
|
|
|
|
bottom_border = top_border + self._view.rowHeight(0)
|
|
|
|
visible = top_border >= 0 and bottom_border < self._view.viewport().height()
|
2021-06-08 08:22:56 +02:00
|
|
|
if not visible or scroll_even_if_visible:
|
2021-04-12 09:50:44 +02:00
|
|
|
horizontal = self._view.horizontalScrollBar().value()
|
2021-10-05 05:53:01 +02:00
|
|
|
self._view.scrollTo(
|
|
|
|
self._model.index(row, 0), QAbstractItemView.ScrollHint.PositionAtTop
|
|
|
|
)
|
2021-04-12 09:50:44 +02:00
|
|
|
self._view.horizontalScrollBar().setValue(horizontal)
|
|
|
|
|
|
|
|
def _scroll_to_column(self, column: int) -> None:
|
|
|
|
"""Scroll horizontally to column."""
|
|
|
|
position = self._view.columnViewportPosition(column)
|
|
|
|
visible = 0 <= position < self._view.viewport().width()
|
|
|
|
if not visible:
|
|
|
|
vertical = self._view.verticalScrollBar().value()
|
|
|
|
self._view.scrollTo(
|
2021-10-05 05:53:01 +02:00
|
|
|
self._model.index(0, column),
|
|
|
|
QAbstractItemView.ScrollHint.PositionAtCenter,
|
2021-04-12 09:50:44 +02:00
|
|
|
)
|
|
|
|
self._view.verticalScrollBar().setValue(vertical)
|
|
|
|
|
2021-10-05 05:53:01 +02:00
|
|
|
def _move_current(
|
|
|
|
self, direction: QAbstractItemView.CursorAction, index: QModelIndex = None
|
|
|
|
) -> None:
|
2021-04-12 09:50:44 +02:00
|
|
|
if not self.has_current():
|
|
|
|
return
|
|
|
|
if index is None:
|
|
|
|
index = self._view.moveCursor(
|
2021-10-05 05:53:01 +02:00
|
|
|
direction,
|
2021-04-12 09:50:44 +02:00
|
|
|
self.browser.mw.app.keyboardModifiers(),
|
|
|
|
)
|
|
|
|
self._view.selectionModel().setCurrentIndex(
|
|
|
|
index,
|
2021-10-05 05:53:01 +02:00
|
|
|
QItemSelectionModel.SelectionFlag.Clear
|
|
|
|
| QItemSelectionModel.SelectionFlag.Select
|
|
|
|
| QItemSelectionModel.SelectionFlag.Rows,
|
2021-04-12 09:50:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
def _move_current_to_row(self, row: int) -> None:
|
|
|
|
old = self._view.selectionModel().currentIndex()
|
|
|
|
self._move_current(None, self._model.index(row, 0))
|
|
|
|
if not KeyboardModifiersPressed().shift:
|
|
|
|
return
|
|
|
|
new = self._view.selectionModel().currentIndex()
|
|
|
|
selection = QItemSelection(new, old)
|
|
|
|
self._view.selectionModel().select(
|
|
|
|
selection,
|
2021-10-05 05:53:01 +02:00
|
|
|
QItemSelectionModel.SelectionFlag.SelectCurrent
|
|
|
|
| QItemSelectionModel.SelectionFlag.Rows,
|
2021-04-12 09:50:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class StatusDelegate(QItemDelegate):
|
|
|
|
def __init__(self, browser: aqt.browser.Browser, model: DataModel) -> None:
|
|
|
|
QItemDelegate.__init__(self, browser)
|
|
|
|
self._model = model
|
|
|
|
|
|
|
|
def paint(
|
|
|
|
self, painter: QPainter, option: QStyleOptionViewItem, index: QModelIndex
|
|
|
|
) -> None:
|
|
|
|
if self._model.get_cell(index).is_rtl:
|
2021-10-05 05:53:01 +02:00
|
|
|
option.direction = Qt.LayoutDirection.RightToLeft
|
2021-04-12 09:50:44 +02:00
|
|
|
if row_color := self._model.get_row(index).color:
|
|
|
|
brush = QBrush(theme_manager.qcolor(row_color))
|
|
|
|
painter.save()
|
|
|
|
painter.fillRect(option.rect, brush)
|
|
|
|
painter.restore()
|
|
|
|
return QItemDelegate.paint(self, painter, option, index)
|