96 lines
3.6 KiB
Python
96 lines
3.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# input.py - input line for chat and debug window
|
|
#
|
|
# Copyright (C) 2011-2021 Sébastien Helleu <flashcode@flashtux.org>
|
|
#
|
|
# This file is part of QWeeChat, a Qt remote GUI for WeeChat.
|
|
#
|
|
# QWeeChat is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# QWeeChat is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with QWeeChat. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
"""Input line for chat and debug window."""
|
|
|
|
from PySide6 import QtCore, QtWidgets
|
|
|
|
|
|
class InputLineEdit(QtWidgets.QLineEdit):
|
|
"""Input line."""
|
|
|
|
bufferSwitchPrev = QtCore.Signal()
|
|
bufferSwitchNext = QtCore.Signal()
|
|
textSent = QtCore.Signal(str)
|
|
|
|
def __init__(self, scroll_widget):
|
|
super().__init__()
|
|
self.scroll_widget = scroll_widget
|
|
self._history = []
|
|
self._history_index = -1
|
|
self.returnPressed.connect(self._input_return_pressed)
|
|
|
|
def keyPressEvent(self, event):
|
|
key = event.key()
|
|
modifiers = event.modifiers()
|
|
scroll = self.scroll_widget.verticalScrollBar()
|
|
if modifiers == QtCore.Qt.ControlModifier:
|
|
if key == QtCore.Qt.Key_PageUp:
|
|
self.bufferSwitchPrev.emit()
|
|
elif key == QtCore.Qt.Key_PageDown:
|
|
self.bufferSwitchNext.emit()
|
|
else:
|
|
QtWidgets.QLineEdit.keyPressEvent(self, event)
|
|
elif modifiers == QtCore.Qt.AltModifier:
|
|
if key in (QtCore.Qt.Key_Left, QtCore.Qt.Key_Up):
|
|
self.bufferSwitchPrev.emit()
|
|
elif key in (QtCore.Qt.Key_Right, QtCore.Qt.Key_Down):
|
|
self.bufferSwitchNext.emit()
|
|
elif key == QtCore.Qt.Key_PageUp:
|
|
scroll.setValue(scroll.value() - (scroll.pageStep() / 10))
|
|
elif key == QtCore.Qt.Key_PageDown:
|
|
scroll.setValue(scroll.value() + (scroll.pageStep() / 10))
|
|
elif key == QtCore.Qt.Key_Home:
|
|
scroll.setValue(scroll.minimum())
|
|
elif key == QtCore.Qt.Key_End:
|
|
scroll.setValue(scroll.maximum())
|
|
else:
|
|
QtWidgets.QLineEdit.keyPressEvent(self, event)
|
|
elif key == QtCore.Qt.Key_PageUp:
|
|
scroll.setValue(scroll.value() - scroll.pageStep())
|
|
elif key == QtCore.Qt.Key_PageDown:
|
|
scroll.setValue(scroll.value() + scroll.pageStep())
|
|
elif key == QtCore.Qt.Key_Up:
|
|
self._history_navigate(-1)
|
|
elif key == QtCore.Qt.Key_Down:
|
|
self._history_navigate(1)
|
|
else:
|
|
QtWidgets.QLineEdit.keyPressEvent(self, event)
|
|
|
|
def _input_return_pressed(self):
|
|
self._history.append(self.text())
|
|
self._history_index = len(self._history)
|
|
self.textSent.emit(self.text())
|
|
self.clear()
|
|
|
|
def _history_navigate(self, direction):
|
|
if self._history:
|
|
self._history_index += direction
|
|
if self._history_index < 0:
|
|
self._history_index = 0
|
|
return
|
|
if self._history_index > len(self._history) - 1:
|
|
self._history_index = len(self._history)
|
|
self.clear()
|
|
return
|
|
self.setText(self._history[self._history_index])
|