Files
purple-electrumwallet/plugins/trezor/qt.py
T

13 lines
347 B
Python
Raw Normal View History

from ..trezor.qt_generic import QtPlugin
2016-01-02 09:43:56 +09:00
from trezor import TrezorPlugin
2015-11-23 19:38:48 +01:00
2015-12-27 15:10:53 +09:00
class Plugin(TrezorPlugin, QtPlugin):
icon_unpaired = ":icons/trezor_unpaired.png"
icon_paired = ":icons/trezor.png"
2015-12-31 11:36:33 +09:00
2016-01-02 09:43:56 +09:00
@classmethod
def pin_matrix_widget_class(self):
2015-12-31 11:36:33 +09:00
from trezorlib.qt.pinmatrix import PinMatrixWidget
return PinMatrixWidget