mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 23:12:21 -04:00

Also: - create additional and missing widget styles and tweak existing ones - use single profile entry to set widget styles and reduce choices to Anki and Native
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import aqt
|
|
import aqt.main
|
|
from aqt.qt import QDialog, qconnect
|
|
from aqt.theme import AnkiStyles
|
|
from aqt.utils import restoreGeom, saveGeom
|
|
|
|
|
|
class WidgetGallery(QDialog):
|
|
silentlyClose = True
|
|
|
|
def __init__(self, mw: aqt.main.AnkiQt) -> None:
|
|
super().__init__(mw)
|
|
self.mw = mw.weakref()
|
|
|
|
self.form = aqt.forms.widgets.Ui_Dialog()
|
|
self.form.setupUi(self)
|
|
restoreGeom(self, "WidgetGallery")
|
|
|
|
qconnect(
|
|
self.form.disableCheckBox.stateChanged,
|
|
lambda: self.form.testGrid.setEnabled(
|
|
not self.form.disableCheckBox.isChecked()
|
|
),
|
|
)
|
|
|
|
self.form.styleComboBox.addItems(
|
|
[member.name.lower().capitalize() for member in AnkiStyles]
|
|
)
|
|
self.form.styleComboBox.setCurrentIndex(self.mw.pm.get_widget_style())
|
|
qconnect(
|
|
self.form.styleComboBox.currentIndexChanged,
|
|
self.mw.pm.set_widget_style,
|
|
)
|
|
|
|
def reject(self) -> None:
|
|
super().reject()
|
|
saveGeom(self, "WidgetGallery")
|