2013-06-23 01:34:41 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2009-12-10
|
2015-01-03 21:30:57 +00:00
|
|
|
# Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
2013-06-23 01:34:41 +00:00
|
|
|
#
|
2015-01-03 21:33:16 +00:00
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
2013-06-23 01:34:41 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2015-01-03 21:33:16 +00:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
2013-06-23 01:34:41 +00:00
|
|
|
|
2013-10-20 19:15:09 +00:00
|
|
|
from PyQt5.QtCore import pyqtSignal, Qt
|
|
|
|
from PyQt5.QtGui import QIcon, QPixmap, QPainter, QPalette
|
|
|
|
from PyQt5.QtWidgets import QToolButton, QLineEdit, QStyle, QStyleOptionFrame
|
2013-06-23 01:34:41 +00:00
|
|
|
|
|
|
|
from hscommon.trans import trget
|
|
|
|
|
|
|
|
tr = trget('qtlib')
|
|
|
|
|
|
|
|
# IMPORTANT: For this widget to work propertly, you have to add "search_clear_13" from the
|
|
|
|
# "images" folder in your resources.
|
|
|
|
|
|
|
|
class LineEditButton(QToolButton):
|
2013-10-20 19:53:59 +00:00
|
|
|
def __init__(self, parent, **kwargs):
|
|
|
|
super().__init__(parent, **kwargs)
|
2013-06-23 01:34:41 +00:00
|
|
|
pixmap = QPixmap(':/search_clear_13')
|
|
|
|
self.setIcon(QIcon(pixmap))
|
|
|
|
self.setIconSize(pixmap.size())
|
|
|
|
self.setCursor(Qt.ArrowCursor)
|
|
|
|
self.setPopupMode(QToolButton.InstantPopup)
|
|
|
|
stylesheet = "QToolButton { border: none; padding: 0px; }"
|
|
|
|
self.setStyleSheet(stylesheet)
|
|
|
|
|
|
|
|
|
|
|
|
class SearchEdit(QLineEdit):
|
2013-10-20 19:53:59 +00:00
|
|
|
def __init__(self, parent=None, immediate=False, **kwargs):
|
2013-06-23 01:34:41 +00:00
|
|
|
# immediate: send searchChanged signals at each keystroke.
|
2013-10-20 19:53:59 +00:00
|
|
|
super().__init__(parent, **kwargs)
|
2013-06-23 01:34:41 +00:00
|
|
|
self._clearButton = LineEditButton(self)
|
|
|
|
frameWidth = self.style().pixelMetric(QStyle.PM_DefaultFrameWidth)
|
|
|
|
paddingRight = self._clearButton.sizeHint().width() + frameWidth + 1
|
|
|
|
stylesheet = "QLineEdit {{ padding-right:{0}px; }}".format(paddingRight)
|
|
|
|
self.setStyleSheet(stylesheet)
|
|
|
|
self.inactiveText = tr("Search...")
|
|
|
|
self.immediate = immediate
|
|
|
|
self._updateClearButton(self.text())
|
|
|
|
|
|
|
|
self._clearButton.clicked.connect(self._clearSearch)
|
|
|
|
self.returnPressed.connect(self._returnPressed)
|
|
|
|
self.textChanged.connect(self._textChanged)
|
|
|
|
|
|
|
|
#--- Private
|
|
|
|
def _clearSearch(self):
|
|
|
|
self.clear()
|
|
|
|
self.searchChanged.emit()
|
|
|
|
|
|
|
|
def _updateClearButton(self, text):
|
|
|
|
self._clearButton.setVisible(bool(text))
|
|
|
|
|
|
|
|
#--- QLineEdit overrides
|
|
|
|
def resizeEvent(self, event):
|
|
|
|
frameWidth = self.style().pixelMetric(QStyle.PM_DefaultFrameWidth)
|
|
|
|
rect = self.rect()
|
|
|
|
rightHint = self._clearButton.sizeHint()
|
|
|
|
rightX = rect.right() - frameWidth - rightHint.width()
|
|
|
|
rightY = (rect.bottom() - rightHint.height()) // 2
|
|
|
|
self._clearButton.move(rightX, rightY)
|
|
|
|
|
|
|
|
def paintEvent(self, event):
|
|
|
|
QLineEdit.paintEvent(self, event)
|
|
|
|
if not bool(self.text()) and self.inactiveText and not self.hasFocus():
|
2013-10-20 19:15:09 +00:00
|
|
|
panel = QStyleOptionFrame()
|
2013-06-23 01:34:41 +00:00
|
|
|
self.initStyleOption(panel)
|
|
|
|
textRect = self.style().subElementRect(QStyle.SE_LineEditContents, panel, self)
|
|
|
|
leftMargin = 2
|
|
|
|
rightMargin = self._clearButton.iconSize().width()
|
|
|
|
textRect.adjust(leftMargin, 0, -rightMargin, 0)
|
|
|
|
painter = QPainter(self)
|
|
|
|
disabledColor = self.palette().brush(QPalette.Disabled, QPalette.Text).color()
|
|
|
|
painter.setPen(disabledColor)
|
|
|
|
painter.drawText(textRect, Qt.AlignLeft|Qt.AlignVCenter, self.inactiveText)
|
|
|
|
|
|
|
|
def keyPressEvent(self, event):
|
|
|
|
key = event.key()
|
|
|
|
if key == Qt.Key_Escape:
|
|
|
|
self._clearSearch()
|
|
|
|
else:
|
|
|
|
QLineEdit.keyPressEvent(self, event)
|
|
|
|
|
|
|
|
#--- Event Handlers
|
|
|
|
def _returnPressed(self):
|
|
|
|
if not self.immediate:
|
|
|
|
self.searchChanged.emit()
|
|
|
|
|
|
|
|
def _textChanged(self, text):
|
|
|
|
self._updateClearButton(text)
|
|
|
|
if self.immediate:
|
|
|
|
self.searchChanged.emit()
|
|
|
|
|
|
|
|
#--- Signals
|
|
|
|
searchChanged = pyqtSignal() # Emitted when return is pressed or when the test is cleared
|