kopia lustrzana https://github.com/NanoVNA-Saver/nanovna-saver
79 wiersze
3.0 KiB
Python
79 wiersze
3.0 KiB
Python
# NanoVNASaver
|
|
#
|
|
# A python program to view and export Touchstone data from a NanoVNA
|
|
# Copyright (C) 2019, 2020 Rune B. Broberg
|
|
# Copyright (C) 2020,2021 NanoVNA-Saver Authors
|
|
#
|
|
# 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/>.
|
|
import logging
|
|
|
|
from PyQt5 import QtWidgets, QtCore
|
|
from PyQt5.QtWidgets import QCheckBox
|
|
|
|
from NanoVNASaver.Marker import Marker
|
|
from NanoVNASaver.Controls.Control import Control
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
class MarkerControl(Control):
|
|
|
|
def __init__(self, app: QtWidgets.QWidget):
|
|
super().__init__(app, "Markers")
|
|
|
|
marker_count = max(self.app.settings.value("MarkerCount", 3, int), 1)
|
|
for i in range(marker_count):
|
|
marker = Marker("", self.app.settings)
|
|
#marker.setFixedHeight(20)
|
|
marker.updated.connect(self.app.markerUpdated)
|
|
label, layout = marker.getRow()
|
|
self.layout.addRow(label, layout)
|
|
self.app.markers.append(marker)
|
|
if i == 0:
|
|
marker.isMouseControlledRadioButton.setChecked(True)
|
|
|
|
self.check_delta = QCheckBox("Enable Delta Marker")
|
|
self.check_delta.toggled.connect(self.toggle_delta)
|
|
self.layout.addRow(self.check_delta)
|
|
|
|
self.showMarkerButton = QtWidgets.QPushButton()
|
|
self.showMarkerButton.setFixedHeight(20)
|
|
if self.app.marker_frame.isHidden():
|
|
self.showMarkerButton.setText("Show data")
|
|
else:
|
|
self.showMarkerButton.setText("Hide data")
|
|
self.showMarkerButton.clicked.connect(self.toggle_frame)
|
|
|
|
lock_radiobutton = QtWidgets.QRadioButton("Locked")
|
|
lock_radiobutton.setLayoutDirection(QtCore.Qt.RightToLeft)
|
|
lock_radiobutton.setSizePolicy(
|
|
QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Preferred)
|
|
|
|
hbox = QtWidgets.QHBoxLayout()
|
|
hbox.addWidget(self.showMarkerButton)
|
|
hbox.addWidget(lock_radiobutton)
|
|
self.layout.addRow(hbox)
|
|
|
|
def toggle_frame(self):
|
|
def settings(hidden: bool):
|
|
self.app.marker_frame.setHidden(not hidden)
|
|
self.app.settings.setValue("MarkersVisible", hidden)
|
|
self.showMarkerButton.setText(
|
|
"Hide data" if hidden else "Show data")
|
|
self.showMarkerButton.repaint()
|
|
settings(self.app.marker_frame.isHidden())
|
|
|
|
def toggle_delta(self):
|
|
self.app.delta_marker_layout.setVisible(self.check_delta.isChecked())
|