2012-12-21 08:51:59 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2019-02-05 04:59:03 +01:00
|
|
|
# Copyright: Ankitects Pty Ltd and contributors
|
2012-12-21 08:51:59 +01:00
|
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
|
2019-03-04 02:58:34 +01:00
|
|
|
from anki.lang import _
|
2020-01-15 04:49:26 +01:00
|
|
|
from aqt import gui_hooks
|
2019-12-20 10:19:03 +01:00
|
|
|
from aqt.qt import *
|
|
|
|
from aqt.utils import shortcut
|
|
|
|
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
class DeckChooser(QHBoxLayout):
|
2020-01-15 22:41:23 +01:00
|
|
|
def __init__(self, mw, widget: QWidget, label=True, start=None) -> None:
|
2012-12-21 08:51:59 +01:00
|
|
|
QHBoxLayout.__init__(self)
|
2020-01-15 22:53:12 +01:00
|
|
|
self.widget = widget # type: ignore
|
2012-12-21 08:51:59 +01:00
|
|
|
self.mw = mw
|
|
|
|
self.deck = mw.col
|
|
|
|
self.label = label
|
2019-12-23 01:34:10 +01:00
|
|
|
self.setContentsMargins(0, 0, 0, 0)
|
2012-12-21 08:51:59 +01:00
|
|
|
self.setSpacing(8)
|
|
|
|
self.setupDecks()
|
|
|
|
self.widget.setLayout(self)
|
2020-01-15 22:53:12 +01:00
|
|
|
gui_hooks.current_note_type_did_change.append(self.onModelChangeNew)
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
def setupDecks(self):
|
|
|
|
if self.label:
|
|
|
|
self.deckLabel = QLabel(_("Deck"))
|
|
|
|
self.addWidget(self.deckLabel)
|
|
|
|
# decks box
|
2016-05-31 10:51:40 +02:00
|
|
|
self.deck = QPushButton(clicked=self.onDeckChange)
|
2019-05-15 06:50:55 +02:00
|
|
|
self.deck.setAutoDefault(False)
|
2012-12-21 08:51:59 +01:00
|
|
|
self.deck.setToolTip(shortcut(_("Target Deck (Ctrl+D)")))
|
2019-12-23 01:34:10 +01:00
|
|
|
s = QShortcut(
|
|
|
|
QKeySequence(_("Ctrl+D")), self.widget, activated=self.onDeckChange
|
|
|
|
)
|
2012-12-21 08:51:59 +01:00
|
|
|
self.addWidget(self.deck)
|
|
|
|
# starting label
|
|
|
|
if self.mw.col.conf.get("addToCur", True):
|
|
|
|
col = self.mw.col
|
2019-12-23 01:34:10 +01:00
|
|
|
did = col.conf["curDeck"]
|
2012-12-21 08:51:59 +01:00
|
|
|
if col.decks.isDyn(did):
|
2013-05-22 04:51:42 +02:00
|
|
|
# if they're reviewing, try default to current card
|
|
|
|
c = self.mw.reviewer.card
|
|
|
|
if self.mw.state == "review" and c:
|
|
|
|
if not c.odid:
|
|
|
|
did = c.did
|
|
|
|
else:
|
|
|
|
did = c.odid
|
|
|
|
else:
|
|
|
|
did = 1
|
2019-12-23 01:34:10 +01:00
|
|
|
self.setDeckName(self.mw.col.decks.nameOrNone(did) or _("Default"))
|
2012-12-21 08:51:59 +01:00
|
|
|
else:
|
2019-12-23 01:34:10 +01:00
|
|
|
self.setDeckName(
|
|
|
|
self.mw.col.decks.nameOrNone(self.mw.col.models.current()["did"])
|
|
|
|
or _("Default")
|
|
|
|
)
|
2012-12-21 08:51:59 +01:00
|
|
|
# layout
|
2019-12-23 01:34:10 +01:00
|
|
|
sizePolicy = QSizePolicy(QSizePolicy.Policy(7), QSizePolicy.Policy(0))
|
2012-12-21 08:51:59 +01:00
|
|
|
self.deck.setSizePolicy(sizePolicy)
|
|
|
|
|
|
|
|
def show(self):
|
|
|
|
self.widget.show()
|
|
|
|
|
|
|
|
def hide(self):
|
|
|
|
self.widget.hide()
|
|
|
|
|
2020-01-15 22:41:23 +01:00
|
|
|
def cleanup(self) -> None:
|
2020-01-15 22:53:12 +01:00
|
|
|
gui_hooks.current_note_type_did_change.remove(self.onModelChangeNew)
|
|
|
|
|
2020-01-24 06:46:42 +01:00
|
|
|
def onModelChangeNew(self, unused=None):
|
2020-01-15 22:53:12 +01:00
|
|
|
self.onModelChange()
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
def onModelChange(self):
|
|
|
|
if not self.mw.col.conf.get("addToCur", True):
|
2019-12-23 01:34:10 +01:00
|
|
|
self.setDeckName(
|
|
|
|
self.mw.col.decks.nameOrNone(self.mw.col.models.current()["did"])
|
|
|
|
or _("Default")
|
|
|
|
)
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
def onDeckChange(self):
|
|
|
|
from aqt.studydeck import StudyDeck
|
2019-12-23 01:34:10 +01:00
|
|
|
|
2017-07-28 09:40:26 +02:00
|
|
|
current = self.deckName()
|
2012-12-21 08:51:59 +01:00
|
|
|
ret = StudyDeck(
|
2019-12-23 01:34:10 +01:00
|
|
|
self.mw,
|
|
|
|
current=current,
|
|
|
|
accept=_("Choose"),
|
|
|
|
title=_("Choose Deck"),
|
|
|
|
help="addingnotes",
|
|
|
|
cancel=False,
|
|
|
|
parent=self.widget,
|
|
|
|
geomKey="selectDeck",
|
|
|
|
)
|
2018-11-26 18:06:29 +01:00
|
|
|
if ret.name:
|
|
|
|
self.setDeckName(ret.name)
|
2017-07-28 09:40:26 +02:00
|
|
|
|
|
|
|
def setDeckName(self, name):
|
|
|
|
self.deck.setText(name.replace("&", "&&"))
|
|
|
|
self._deckName = name
|
|
|
|
|
|
|
|
def deckName(self):
|
|
|
|
return self._deckName
|
2012-12-21 08:51:59 +01:00
|
|
|
|
|
|
|
def selectedId(self):
|
|
|
|
# save deck name
|
2017-07-28 09:40:26 +02:00
|
|
|
name = self.deckName()
|
2012-12-21 08:51:59 +01:00
|
|
|
if not name.strip():
|
|
|
|
did = 1
|
|
|
|
else:
|
|
|
|
did = self.mw.col.decks.id(name)
|
|
|
|
return did
|