WIP on custom search box

This commit is contained in:
Suzanne Soy 2021-08-30 13:57:07 +01:00
parent c0e466979b
commit 2ce29431a5
2 changed files with 351 additions and 92 deletions

109
SearchTools/SearchBox.py Normal file
View File

@ -0,0 +1,109 @@
if True:
from PySide import QtGui
class SearchBox(QtGui.QLineEdit):
def __init__(self, model, maxVisibleRows, parent):
# Call parent cosntructor
super(SearchBox, self).__init__(parent)
# Save arguments
self.model = model
self.maxVisibleRows = maxVisibleRows
# Create list view
self.listView = QtGui.QListView(self)
self.listView.setWindowFlags(QtGui.Qt.ToolTip)
self.listView.setWindowFlag(QtGui.Qt.FramelessWindowHint)
self.listView.setModel(self.model)
# make the QListView non-editable
self.listView.setEditTriggers(QtGui.QAbstractItemView.NoEditTriggers)
# Connect signals and slots
self.textChanged.connect(self.filterList)
self.listView.clicked.connect(self.selectResult)
self.listView.selectionModel().selectionChanged.connect(self.showExtraInfo)
def focusInEvent(self, qFocusEvent):
self.showList()
super(SearchBox, self).focusInEvent(qFocusEvent)
def focusOutEvent(self, qFocusEvent):
self.listView.hide()
super(SearchBox, self).focusOutEvent(qFocusEvent)
def keyPressEvent(self, qKeyEvent):
key = qKeyEvent.key()
listMovementKeys = {
QtCore.Qt.Key_Down: lambda current, nbRows: (current + 1) % nbRows,
QtCore.Qt.Key_Up: lambda current, nbRows: (current - 1) % nbRows,
QtCore.Qt.Key_PageDown: lambda current, nbRows: max(current + min(1, self.maxVisibleRows / 2), nbRows),
QtCore.Qt.Key_PageUp: lambda current, nbRows: min(current - min(1, self.maxVisibleRows / 2), 0),
}
acceptKeys = {
QtCore.Qt.Key_Enter: 'select',
QtCore.Qt.Key_Return: 'select',
# space on a toolbar/category should toggle the entire category in the search results
QtCore.Qt.Key_Space: 'toggle',
}
cancelKeys = {
QtCore.Qt.Key_Escape: True,
}
currentIndex = self.listView.currentIndex()
if key in listMovementKeys:
self.showList()
if self.listView.isEnabled():
currentRow = currentIndex.row()
nbRows = self.listView.model().rowCount()
newRow = listMovementKeys[key](currentRow, nbRows)
index = self.listView.model().index(newRow, 0)
self.listView.setCurrentIndex(index)
elif key in acceptKeys:
self.showList()
if currentIndex.isValid():
self.selectResult(acceptKeys[key], currentIndex, currentIndex.data())
elif key in cancelKeys:
self.listView.hide()
self.clearFocus()
else:
self.showList()
super(SearchBox, self).keyPressEvent(qKeyEvent)
def showList(self):
def getScreenPosition(widget):
geo = widget.geometry()
print(geo)
parent = widget.parent()
parentPos = getScreenPosition(parent) if parent is not None else QtCore.QPoint(0,0)
return QtCore.QPoint(geo.x() + parentPos.x(), geo.y() + parentPos.y())
pos = getScreenPosition(self)
siz = self.size()
screen = QtGui.QGuiApplication.screenAt(pos)
print(pos, siz, screen)
x = pos.x()
y = pos.y() + siz.height()
hint_w = self.listView.sizeHint().width()
# TODO: this can still bump into the bottom of the screen, in that case we should flip
w = max(siz.width(), hint_w)
h = 100
if screen is not None:
scr = screen.geometry()
x = min(scr.x() + scr.width() - hint_w, x)
self.listView.setGeometry(x, y, w, h)
self.listView.show()
def selectResult(self):
self.listView.hide()
# TODO: allow other options, e.g. some items could act as combinators / cumulative filters
self.setText('')
self.filterList(self.text())
def filterList(self, query):
print('TODO: do the actual filtering')
flt = QtCore.QSortFilterProxyModel()
flt.setSourceModel(self.model)
flt.setFilterCaseSensitivity(QtCore.Qt.CaseSensitivity.CaseInsensitive)
flt.setFilterWildcard(query)
self.listView.setModel(flt)
# TODO: try to find the already-highlighted item
nbRows = self.listView.model().rowCount()
if nbRows > 0:
index = self.listView.model().index(0, 0)
self.listView.setCurrentIndex(index)
#self.showList()
def showExtraInfo(selected, deselected):
print('show extra info...')
pass
mdl = QtCore.QStringListModel(['aaa', 'aab', 'aac', 'bxy', 'bac'])
sbx = SearchBox(mdl, 10, None)
sbx.show()

View File

@ -1,5 +1,4 @@
if True: if True:
xxx = 'xxx'
from PySide import QtGui from PySide import QtGui
def toolbarAction(act): def toolbarAction(act):
@ -20,18 +19,121 @@ if True:
'documentAction': documentAction 'documentAction': documentAction
} }
# Inspired by https://stackoverflow.com/a/7767999/324969 # Inspired by https://stackoverflow.com/a/5443220/324969
class SearchQCompleter(QtGui.QCompleter): from PySide import QtGui
def __init__(self, model, itemDelegate): #
super(SearchQCompleter, self).__init__() # Inspired by https://forum.qt.io/topic/69807/qtreeview-indent-entire-row
super(SearchQCompleter, self).setModel(QtCore.QIdentityProxyModel()) class IndentedItemDelegate(QtGui.QStyledItemDelegate):
super(SearchQCompleter, self).popup().setItemDelegate(itemDelegate) def __init__(self):
self.setModel(model) super(IndentedItemDelegate, self).__init__()
def paint(self, painter, option, index):
def setModel(self, itemGroups): depth = int(option.widget.model().itemData(index.siblingAtColumn(1))[0])
indent = 16 * depth
option.rect.adjust(indent, 0, 0, 0)
super(IndentedItemDelegate, self).paint(painter, option, index)
#
class SearchBox(QtGui.QLineEdit):
resultSelected = QtCore.Signal(int, str)
def __init__(self, itemGroups, itemDelegate = IndentedItemDelegate(), maxVisibleRows = 20, parent = None):
# Call parent cosntructor
super(SearchBox, self).__init__(parent)
# Save arguments
#self.model = model
self.itemGroups = itemGroups self.itemGroups = itemGroups
self.filterModel('') self.maxVisibleRows = maxVisibleRows # TODO: use this to compute the correct height
# Create proxy model
self.proxyModel = QtCore.QIdentityProxyModel()
#self.proxyModel.setModel(self.model)
# Create list view
self.listView = QtGui.QListView(self)
self.listView.setWindowFlags(QtGui.Qt.ToolTip)
self.listView.setWindowFlag(QtGui.Qt.FramelessWindowHint)
self.listView.setModel(self.proxyModel)
self.listView.setItemDelegate(itemDelegate) # https://stackoverflow.com/a/65930408/324969
# make the QListView non-editable
self.listView.setEditTriggers(QtGui.QAbstractItemView.NoEditTriggers)
# Connect signals and slots
self.textChanged.connect(self.filterModel)
self.listView.clicked.connect(self.selectResult)
self.listView.selectionModel().selectionChanged.connect(self.showExtraInfo)
# Thanks to https://saurabhg.com/programming/search-box-using-qlineedit/ for indicating a few useful options
ico = QtGui.QIcon(':/icons/help-browser.svg')
#ico = QtGui.QIcon(':/icons/WhatsThis.svg')
self.addAction(ico, QtGui.QLineEdit.LeadingPosition)
self.setClearButtonEnabled(True)
self.setPlaceholderText('Search tools, prefs & tree')
self.setFixedWidth(200) # needed to avoid a change of width when the clear button appears/disappears
# Initialize the model with the full list (assuming the text() is empty)
self.filterModel(self.text())
def focusInEvent(self, qFocusEvent):
self.showList()
super(SearchBox, self).focusInEvent(qFocusEvent)
def focusOutEvent(self, qFocusEvent):
self.listView.hide()
super(SearchBox, self).focusOutEvent(qFocusEvent)
def keyPressEvent(self, qKeyEvent):
key = qKeyEvent.key()
listMovementKeys = {
QtCore.Qt.Key_Down: lambda current, nbRows: (current + 1) % nbRows,
QtCore.Qt.Key_Up: lambda current, nbRows: (current - 1) % nbRows,
QtCore.Qt.Key_PageDown: lambda current, nbRows: max(current + min(1, self.maxVisibleRows / 2), nbRows),
QtCore.Qt.Key_PageUp: lambda current, nbRows: min(current - min(1, self.maxVisibleRows / 2), 0),
}
acceptKeys = {
QtCore.Qt.Key_Enter: 'select',
QtCore.Qt.Key_Return: 'select',
# space on a toolbar/category should toggle the entire category in the search results
QtCore.Qt.Key_Space: 'toggle',
}
cancelKeys = {
QtCore.Qt.Key_Escape: True,
}
currentIndex = self.listView.currentIndex()
if key in listMovementKeys:
self.showList()
if self.listView.isEnabled():
currentRow = currentIndex.row()
nbRows = self.listView.model().rowCount()
newRow = listMovementKeys[key](currentRow, nbRows)
index = self.listView.model().index(newRow, 0)
self.listView.setCurrentIndex(index)
elif key in acceptKeys:
self.showList()
if currentIndex.isValid():
self.selectResult(acceptKeys[key], currentIndex, currentIndex.data())
elif key in cancelKeys:
self.listView.hide()
self.clearFocus()
else:
self.showList()
super(SearchBox, self).keyPressEvent(qKeyEvent)
def showList(self):
def getScreenPosition(widget):
geo = widget.geometry()
parent = widget.parent()
parentPos = getScreenPosition(parent) if parent is not None else QtCore.QPoint(0,0)
return QtCore.QPoint(geo.x() + parentPos.x(), geo.y() + parentPos.y())
pos = getScreenPosition(self)
siz = self.size()
screen = QtGui.QGuiApplication.screenAt(pos)
x = pos.x()
y = pos.y() + siz.height()
hint_w = self.listView.sizeHint().width()
# TODO: this can still bump into the bottom of the screen, in that case we should flip
w = max(siz.width(), hint_w)
h = 100
if screen is not None:
scr = screen.geometry()
x = min(scr.x() + scr.width() - hint_w, x)
self.listView.setGeometry(x, y, w, h)
self.listView.show()
def selectResult(self):
self.listView.hide()
# TODO: allow other options, e.g. some items could act as combinators / cumulative filters
self.setText('')
self.filterModel(self.text())
self.resultSelected.emit("TODO: index", "TODO: str")
def filterModel(self, userInput): def filterModel(self, userInput):
def matches(s): def matches(s):
return userInput.lower() in s.lower() return userInput.lower() in s.lower()
@ -56,90 +158,138 @@ if True:
addGroups(group['subitems'], depth+1) addGroups(group['subitems'], depth+1)
mdl = QtGui.QStandardItemModel() mdl = QtGui.QStandardItemModel()
mdl.appendColumn([]) mdl.appendColumn([])
addGroups(filterGroups(itemGroups)) addGroups(filterGroups(self.itemGroups))
print('setSourceModel for userInput ' + repr(userInput) + ' with ' + str(mdl.rowCount()) + ' rows.') print('setSourceModel for userInput ' + repr(userInput) + ' with ' + str(mdl.rowCount()) + ' rows.')
self.model().setSourceModel(mdl) self.proxyModel.setSourceModel(mdl)
# https://stackoverflow.com/a/65930408/324969 #print('TODO: do the actual filtering')
#flt = QtCore.QSortFilterProxyModel()
# the splitPath(self, path) method is called every time the input string changes, before #flt.setSourceModel(self.model)
# drawing the completion list, we latch onto this method to also update the model to contain #flt.setFilterCaseSensitivity(QtCore.Qt.CaseSensitivity.CaseInsensitive)
# the appropriate results, as given by the custom filterAcceptsRow method above. #flt.setFilterWildcard(query)
def splitPath(self, path): #self.listView.setModel(flt)
self.filterModel(path) # TODO: try to find the already-highlighted item
# Pretend that the user endered the empty string, so that all items from the filteredProxyModel match. nbRows = self.listView.model().rowCount()
return '' if nbRows > 0:
index = self.listView.model().index(0, 0)
self.listView.setCurrentIndex(index)
#self.showList()
def showExtraInfo(selected, deselected):
print('show extra info...', repr(selected))
pass
#mdl = QtCore.QStringListModel(['aaa', 'aab', 'aac', 'bxy', 'bac'])
#sbx = SearchBox(mdl, 10, None)
#sbx.show()
# Inspired by https://stackoverflow.com/a/7767999/324969
#class SearchQCompleter(QtGui.QCompleter):
# def __init__(self, model, itemDelegate):
# super(SearchQCompleter, self).__init__()
# super(SearchQCompleter, self).setModel(QtCore.QIdentityProxyModel())
# #https://stackoverflow.com/a/65930408/324969
# super(SearchQCompleter, self).popup().setItemDelegate(itemDelegate)
# self.setModel(model)
#
# def setModel(self, itemGroups):
# self.itemGroups = itemGroups
# self.filterModel('')
#
# def filterModel(self, userInput):
# def matches(s):
# return userInput.lower() in s.lower()
# def filterGroup(group):
# if matches(group['text']):
# # If a group matches, include the entire subtree (might need to disable this if it causes too much noise)
# return group
# else:
# subitems = filterGroups(group['subitems'])
# if len(subitems) > 0 or matches(group['text']):
# return { 'text': group['text'], 'icon': group['icon'], 'action': group['action'], 'subitems': subitems }
# else:
# return None
# def filterGroups(groups):
# groups = (filterGroup(group) for group in groups)
# return [group for group in groups if group is not None]
# def addGroups(filteredGroups, depth=0):
# for group in filteredGroups:
# mdl.appendRow([QtGui.QStandardItem(group['icon'] or QtGui.QIcon(), group['text']),
# QtGui.QStandardItem(str(depth)),
# QtGui.QStandardItem(group['action'])])
# addGroups(group['subitems'], depth+1)
# mdl = QtGui.QStandardItemModel()
# mdl.appendColumn([])
# addGroups(filterGroups(itemGroups))
# #
# Inspired by https://forum.qt.io/topic/69807/qtreeview-indent-entire-row # print('setSourceModel for userInput ' + repr(userInput) + ' with ' + str(mdl.rowCount()) + ' rows.')
class IndentedItemDelegate(QtGui.QStyledItemDelegate): # self.model().setSourceModel(mdl)
def __init__(self): # # https://stackoverflow.com/a/65930408/324969
super(IndentedItemDelegate, self).__init__() #
def paint(self, painter, option, index): # # the splitPath(self, path) method is called every time the input string changes, before
depth = int(option.widget.model().itemData(index.siblingAtColumn(1))[0]) # # drawing the completion list, we latch onto this method to also update the model to contain
indent = 16 * depth # # the appropriate results, as given by the custom filterAcceptsRow method above.
option.rect.adjust(indent, 0, 0, 0) # def splitPath(self, path):
super(IndentedItemDelegate, self).paint(painter, option, index) # self.filterModel(path)
# # Pretend that the user endered the empty string, so that all items from the filteredProxyModel match.
# return ''
# #
class SearchBox(QtGui.QLineEdit): #class SearchBox(QtGui.QLineEdit):
resultSelected = QtCore.Signal(int, str) # resultSelected = QtCore.Signal(int, str)
def __init__(self, itemGroups): # def __init__(self, itemGroups):
super(SearchBox, self).__init__() # super(SearchBox, self).__init__()
qom = SearchQCompleter(itemGroups, IndentedItemDelegate()) # qom = SearchQCompleter(itemGroups, IndentedItemDelegate())
qom.setMaxVisibleItems(20) # qom.setMaxVisibleItems(20)
#qom.setCompletionMode(QtGui.QCompleter.CompletionMode.PopupCompletion) # #qom.setCompletionMode(QtGui.QCompleter.CompletionMode.PopupCompletion)
# Thanks to https://saurabhg.com/programming/search-box-using-qlineedit/ for indicating a few useful options # # Thanks to https://saurabhg.com/programming/search-box-using-qlineedit/ for indicating a few useful options
ico = QtGui.QIcon(':/icons/help-browser.svg') # ico = QtGui.QIcon(':/icons/help-browser.svg')
#ico = QtGui.QIcon(':/icons/WhatsThis.svg') # #ico = QtGui.QIcon(':/icons/WhatsThis.svg')
self.addAction(ico, QtGui.QLineEdit.LeadingPosition) # self.addAction(ico, QtGui.QLineEdit.LeadingPosition)
self.setClearButtonEnabled(True) # self.setClearButtonEnabled(True)
self.setPlaceholderText('Search tools, prefs & tree') # self.setPlaceholderText('Search tools, prefs & tree')
self.setFixedWidth(200) # self.setFixedWidth(200)
# Signals & slots for enter / click # # Signals & slots for enter / click
def completerActivated(index): # def completerActivated(index):
print('fooooooooooooo') # print('fooooooooooooo')
global xxx # print(qom.model().rowCount(), index.row())
xxx = index # # TODO: run the action!
print(qom.model().rowCount(), index.row()) # result = str(qom.model().data(index.siblingAtColumn(1)))
# TODO: run the action! # print('res='+result)
result = str(qom.model().data(index.siblingAtColumn(1))) # self.clear()
print('res='+result) # self.completer().setCompletionPrefix('')
self.clear() # self.resultSelected.emit(str(index), result)
self.completer().setCompletionPrefix('') # def returnPressed():
self.resultSelected.emit(str(index), result) # #self.clear()
def returnPressed(): # #self.completer().setCompletionPrefix('')
#self.clear() # pass
#self.completer().setCompletionPrefix('') # #text = sea.text()
pass # #self.clear()
#text = sea.text() # #self.resultSelected.emit('text returnPressed' + text)
#self.clear() # self.returnPressed.connect(returnPressed)
#self.resultSelected.emit('text returnPressed' + text) # #QtCore.QObject.connect(self.completer(), QtCore.SIGNAL('activated(QModelIndex)'), completerActivated) #, QtCore.Qt.ConnectionType.QueuedConnection)
self.returnPressed.connect(returnPressed) # qom.activated.connect(completerActivated, QtCore.Qt.ConnectionType.DirectConnection) #, QtCore.Qt.ConnectionType.QueuedConnection)
#QtCore.QObject.connect(self.completer(), QtCore.SIGNAL('activated(QModelIndex)'), completerActivated) #, QtCore.Qt.ConnectionType.QueuedConnection) # #self.completer().activated.connect(returnPressedOrCompleterActivated)
qom.activated.connect(completerActivated, QtCore.Qt.ConnectionType.DirectConnection) #, QtCore.Qt.ConnectionType.QueuedConnection) # def textChanged():
#self.completer().activated.connect(returnPressedOrCompleterActivated) # print('textChanged')
def textChanged(): # # Workaround: Clear completion prefix and still show the completion box when doing backspace after typing a single character
print('textChanged') # if self.text() == '':
# Workaround: Clear completion prefix and still show the completion box when doing backspace after typing a single character # self.completer().setCompletionPrefix(self.text())
if self.text() == '': # self.completer().complete()
self.completer().setCompletionPrefix(self.text()) # self.textChanged.connect(textChanged)
self.completer().complete() # QtCore.QObject.connect(qom.popup(), QtCore.SIGNAL('clicked(QModelIndex)'), lambda x: print(x))
self.textChanged.connect(textChanged) # self.setCompleter(qom)
self.setCompleter(qom) # def focusInEvent(self, e):
def focusInEvent(self, e): # super(SearchBox, self).focusInEvent(e)
super(SearchBox, self).focusInEvent(e) # self.completer().setCompletionPrefix(self.text())
self.completer().setCompletionPrefix(self.text()) # self.completer().complete()
self.completer().complete() # self.completer().setCurrentRow(1) # Does not work
self.completer().setCurrentRow(1) # Does not work # #d=QtGui.QKeyEvent(QtCore.QEvent.KeyPress, QtCore.Qt.Key_Down, QtCore.Qt.NoModifier)
#d=QtGui.QKeyEvent(QtCore.QEvent.KeyPress, QtCore.Qt.Key_Down, QtCore.Qt.NoModifier) # #QtCore.QCoreApplication.postEvent(self, d)
#QtCore.QCoreApplication.postEvent(self, d) # def mousePressEvent(self, e):
def mousePressEvent(self, e): # super(SearchBox, self).mousePressEvent(e)
super(SearchBox, self).mousePressEvent(e) # self.completer().setCompletionPrefix(self.text())
self.completer().setCompletionPrefix(self.text()) # self.completer().complete()
self.completer().complete() # self.completer().setCurrentRow(1) # Does not work
self.completer().setCurrentRow(1) # Does not work # #d=QtGui.QKeyEvent(QtCore.QEvent.KeyPress, QtCore.Qt.Key_Down, QtCore.Qt.NoModifier)
#d=QtGui.QKeyEvent(QtCore.QEvent.KeyPress, QtCore.Qt.Key_Down, QtCore.Qt.NoModifier) # #QtCore.QCoreApplication.postEvent(self, d)
#QtCore.QCoreApplication.postEvent(self, d)
sea = QtGui.QLineEdit()
# #
mw = Gui.getMainWindow() mw = Gui.getMainWindow()
mdi = mw.findChild(QtGui.QMdiArea) mdi = mw.findChild(QtGui.QMdiArea)