def __init__(self, text=""): ButtonsTextEdit.__init__(self, text) self.setReadOnly(0) button = self.addButton(":icons/ic_folder_pre.png", self.file_input, _("Read file")) button.setStyleSheet( "QToolButton { border: none; hover {border: 1px;border-image:ic_folder_pre.png;} pressed {border: 1px} padding: 0px; }" ) # button=self.addButton(":icons/ic_qr_code.png", self.qr_input, _("Read QR code")) # button.setStyleSheet("QToolButton { border: none; hover {border: 1px} pressed {border: 1px} padding: 0px; }") run_hook('scan_text_edit', self)
def __init__(self, text=None): ButtonsTextEdit.__init__(self, text) self.setReadOnly(1) self.addButton(":icons/qrcode.png", self.qr_show, _("Show as QR code")) run_hook('show_text_edit', self)
def __init__(self, text=""): ButtonsTextEdit.__init__(self, text) self.setReadOnly(0) self.addButton(":icons/file.png", self.file_input, _("Read file")) self.addButton(":icons/qrcode.png", self.qr_input, _("Read QR code")) run_hook('scan_text_edit', self)