mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-04 22:26:07 -05:00
71 lines
2.4 KiB
C++
71 lines
2.4 KiB
C++
/*
|
|
* VecControls.cpp - definition of VecControls class.
|
|
*
|
|
* Copyright (c) 2019 Martin Pavelek <he29/dot/HS/at/gmail/dot/com>
|
|
*
|
|
* This file is part of LMMS - https://lmms.io
|
|
*
|
|
* 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 2 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 (see COPYING); if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
*/
|
|
|
|
#include "VecControls.h"
|
|
|
|
#include <QtXml/QDomElement>
|
|
|
|
#include "VecControlsDialog.h"
|
|
#include "Vectorscope.h"
|
|
|
|
|
|
VecControls::VecControls(Vectorscope *effect) :
|
|
EffectControls(effect),
|
|
m_effect(effect),
|
|
|
|
// initialize models and set default values
|
|
m_persistenceModel(0.5f, 0.0f, 1.0f, 0.05f, this, tr("Display persistence amount")),
|
|
m_logarithmicModel(false, this, tr("Logarithmic scale")),
|
|
m_highQualityModel(false, this, tr("High quality"))
|
|
{
|
|
// Colors (percentages include sRGB gamma correction)
|
|
m_colorFG = QColor(60, 255, 130, 255); // ~LMMS green
|
|
m_colorGrid = QColor(76, 80, 84, 128); // ~60 % gray (slightly cold / blue), 50 % transparent
|
|
m_colorLabels = QColor(76, 80, 84, 255); // ~60 % gray (slightly cold / blue)
|
|
m_colorOutline = QColor(30, 34, 38, 255); // ~40 % gray (slightly cold / blue)
|
|
}
|
|
|
|
|
|
// Create the VecControlDialog widget which handles display of GUI elements.
|
|
EffectControlDialog* VecControls::createView()
|
|
{
|
|
return new VecControlsDialog(this);
|
|
}
|
|
|
|
|
|
void VecControls::loadSettings(const QDomElement &element)
|
|
{
|
|
m_persistenceModel.loadSettings(element, "Persistence");
|
|
m_logarithmicModel.loadSettings(element, "Logarithmic");
|
|
m_highQualityModel.loadSettings(element, "HighQuality");
|
|
}
|
|
|
|
|
|
void VecControls::saveSettings(QDomDocument &document, QDomElement &element)
|
|
{
|
|
m_persistenceModel.saveSettings(document, element, "Persistence");
|
|
m_logarithmicModel.saveSettings(document, element, "Logarithmic");
|
|
m_highQualityModel.saveSettings(document, element, "HighQuality");
|
|
}
|