2017-12-04 14:06:37 +01:00
|
|
|
from .qt_generic import QtPlugin
|
2017-02-16 10:54:24 +01:00
|
|
|
from .keepkey import KeepKeyPlugin
|
2015-12-31 11:36:33 +09:00
|
|
|
|
2015-11-23 19:38:48 +01:00
|
|
|
|
2016-08-27 12:13:01 +02:00
|
|
|
class Plugin(KeepKeyPlugin, QtPlugin):
|
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
|