2014-05-18 11:52:39 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2022-09-29 08:48:04 -04:00
|
|
|
// Copyright (C) 2022 Jon Beniston, M7RCE //
|
2014-05-18 11:52:39 -04: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 as version 3 of the License, or //
|
2019-04-11 08:43:33 -04:00
|
|
|
// (at your option) any later version. //
|
2014-05-18 11:52:39 -04:00
|
|
|
// //
|
|
|
|
// 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 V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2022-09-29 08:48:04 -04:00
|
|
|
#include <QSplitter>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QLabel>
|
2016-02-28 04:53:37 -05:00
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
#include "gui/glspectrum.h"
|
2022-09-29 08:48:04 -04:00
|
|
|
#include "gui/glspectrumview.h"
|
2022-09-28 11:59:35 -04:00
|
|
|
#include "gui/spectrummeasurements.h"
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2022-09-29 08:48:04 -04:00
|
|
|
GLSpectrum::GLSpectrum(QWidget *parent) :
|
|
|
|
QWidget(parent)
|
|
|
|
{
|
|
|
|
m_splitter = new QSplitter(Qt::Vertical);
|
|
|
|
m_spectrum = new GLSpectrumView();
|
|
|
|
m_measurements = new SpectrumMeasurements();
|
|
|
|
m_spectrum->setMeasurements(m_measurements);
|
|
|
|
m_splitter->addWidget(m_spectrum);
|
|
|
|
m_splitter->addWidget(m_measurements);
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout(this);
|
|
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
layout->addWidget(m_splitter);
|
|
|
|
setLayout(layout);
|
|
|
|
m_measurements->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
|
|
|
|
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLSpectrum::setMeasurementsVisible(bool visible)
|
|
|
|
{
|
|
|
|
m_measurements->setVisible(visible);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLSpectrum::setMeasurementsPosition(SpectrumSettings::MeasurementsPosition position)
|
|
|
|
{
|
|
|
|
switch (position)
|
|
|
|
{
|
|
|
|
case SpectrumSettings::PositionAbove:
|
|
|
|
m_splitter->setOrientation(Qt::Vertical);
|
|
|
|
m_splitter->insertWidget(0, m_measurements);
|
|
|
|
break;
|
|
|
|
case SpectrumSettings::PositionBelow:
|
|
|
|
m_splitter->setOrientation(Qt::Vertical);
|
|
|
|
m_splitter->insertWidget(0, m_spectrum);
|
|
|
|
break;
|
|
|
|
case SpectrumSettings::PositionLeft:
|
|
|
|
m_splitter->setOrientation(Qt::Horizontal);
|
|
|
|
m_splitter->insertWidget(0, m_measurements);
|
|
|
|
break;
|
|
|
|
case SpectrumSettings::PositionRight:
|
|
|
|
m_splitter->setOrientation(Qt::Horizontal);
|
|
|
|
m_splitter->insertWidget(0, m_spectrum);
|
|
|
|
break;
|
2022-06-18 07:35:44 -04:00
|
|
|
}
|
|
|
|
}
|