2016-01-02 23:34:10 +09:00
|
|
|
from ..trezor.qt_generic import qt_plugin_class
|
2016-01-02 09:43:56 +09:00
|
|
|
from keepkey import KeepKeyPlugin
|
2015-12-31 11:36:33 +09:00
|
|
|
|
2015-11-23 19:38:48 +01:00
|
|
|
|
2016-01-02 09:43:56 +09:00
|
|
|
class Plugin(qt_plugin_class(KeepKeyPlugin)):
|
2016-08-27 11:30:53 +02:00
|
|
|
icon_paired = ":icons/keepkey.png"
|
|
|
|
|
icon_unpaired = ":icons/keepkey_unpaired.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 keepkeylib.qt.pinmatrix import PinMatrixWidget
|
|
|
|
|
return PinMatrixWidget
|