nanovna-saver/src/NanoVNASaver/Inputs.py

48 wiersze
1.9 KiB
Python
Czysty Zwykły widok Historia

2019-12-14 13:01:37 +00:00
# NanoVNASaver
2020-06-25 17:52:30 +00:00
#
2019-12-14 13:01:37 +00:00
# A python program to view and export Touchstone data from a NanoVNA
2020-06-25 17:52:30 +00:00
# Copyright (C) 2019, 2020 Rune B. Broberg
2021-06-30 05:21:14 +00:00
# Copyright (C) 2020,2021 NanoVNA-Saver Authors
2019-12-14 13:01:37 +00:00
#
# This program 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.
#
# This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
from PyQt5 import QtGui, QtWidgets, QtCore
from NanoVNASaver.Formatting import format_frequency_inputs
class FrequencyInputWidget(QtWidgets.QLineEdit):
def __init__(self, text=""):
super().__init__(text)
self.nextFrequency = -1
self.previousFrequency = -1
def setText(self, text: str) -> None:
super().setText(format_frequency_inputs(text))
class MarkerFrequencyInputWidget(FrequencyInputWidget):
def keyPressEvent(self, a0: QtGui.QKeyEvent) -> None:
if a0.type() == QtCore.QEvent.KeyPress:
if a0.key() == QtCore.Qt.Key_Up and self.nextFrequency != -1:
a0.accept()
2019-12-17 19:13:28 +00:00
self.setText(str(self.nextFrequency))
2020-07-27 15:05:11 +00:00
self.editingFinished.emit() # self.text())
2019-12-14 13:01:37 +00:00
return
2019-12-17 19:13:28 +00:00
if a0.key() == QtCore.Qt.Key_Down and self.previousFrequency != -1:
2019-12-14 13:01:37 +00:00
a0.accept()
2019-12-17 19:13:28 +00:00
self.setText(str(self.previousFrequency))
2020-07-27 15:05:11 +00:00
self.editingFinished.emit() # self.text())
2019-12-14 13:01:37 +00:00
return
super().keyPressEvent(a0)