forked from Ivasoft/DSView
189 lines
4.5 KiB
C++
189 lines
4.5 KiB
C++
/*
|
|
* This file is part of the DSView project.
|
|
* DSView is based on PulseView.
|
|
*
|
|
* Copyright (C) 2014 DreamSourceLab <support@dreamsourcelab.com>
|
|
*
|
|
* 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; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "dsldial.h"
|
|
|
|
#include <cassert>
|
|
#include <cmath>
|
|
|
|
namespace pv {
|
|
namespace view {
|
|
|
|
dslDial::dslDial(const uint64_t div, const uint64_t step,
|
|
const QVector<uint64_t> value, const QVector<QString> unit)
|
|
{
|
|
assert(div > 0);
|
|
assert(step > 0);
|
|
assert((uint64_t)value.count() == div);
|
|
assert(unit.count() > 0);
|
|
|
|
_div = div;
|
|
_step = step;
|
|
_value = value;
|
|
_unit = unit;
|
|
_sel = 0;
|
|
_factor = 1;
|
|
}
|
|
|
|
dslDial::~dslDial()
|
|
{
|
|
}
|
|
|
|
void dslDial::paint(QPainter &p, QRectF dialRect, QColor dialColor, const QPoint pt, QString &pText)
|
|
{
|
|
p.setPen(dialColor);
|
|
p.setBrush(dialColor);
|
|
|
|
int dialMarginAngle = 15 * 16;
|
|
int dialStartAngle = 75 * 16;
|
|
int dialSpanAngle = -150 * 16;
|
|
|
|
// draw dial arc
|
|
p.drawArc(dialRect, dialStartAngle + dialMarginAngle,
|
|
dialSpanAngle - dialMarginAngle * 2);
|
|
// draw ticks
|
|
p.save();
|
|
p.translate(dialRect.center());
|
|
p.rotate(270 - dialStartAngle/16);
|
|
// draw pointer
|
|
p.rotate(-dialSpanAngle/16.0/(_div-1)*_sel);
|
|
p.drawEllipse(-3, -3, 6, 6);
|
|
p.drawLine(3, 0, 0, dialRect.width()/2-3);
|
|
p.drawLine(-3, 0, 0, dialRect.width()/2-3);
|
|
p.rotate(+dialSpanAngle/16.0/(_div-1)*_sel);
|
|
for (uint64_t i = 0; i < _div; i++) {
|
|
// draw major ticks
|
|
p.drawLine(0, dialRect.width()/2+3, 0, dialRect.width()/2+8);
|
|
// draw minor ticks
|
|
for (uint64_t j = 0; (j < 5) && (i < _div - 1); j++) {
|
|
p.drawLine(0, dialRect.width()/2+3, 0, dialRect.width()/2+5);
|
|
p.rotate(-dialSpanAngle/16/5.0/(_div-1));
|
|
}
|
|
}
|
|
p.restore();
|
|
// draw value
|
|
uint64_t displayValue = _value[_sel]*_factor;
|
|
uint64_t displayIndex = 0;
|
|
while(displayValue / _step >= 1) {
|
|
displayValue = displayValue / _step;
|
|
displayIndex++;
|
|
}
|
|
//tr
|
|
pText = QString::number(displayValue) + _unit[displayIndex] + "/div";
|
|
|
|
// draw +/-
|
|
if (dialRect.contains(pt) && pt.x() > dialRect.center().x()) {
|
|
const int arcInc = 12;
|
|
const QRectF hoverRect = QRectF(dialRect.left()-arcInc, dialRect.top()-arcInc,
|
|
dialRect.width()+arcInc*2, dialRect.height()+arcInc*2);
|
|
p.drawArc(hoverRect, dialStartAngle + dialSpanAngle/4, dialSpanAngle/2);
|
|
p.save();
|
|
p.translate(hoverRect.center());
|
|
const bool inc = pt.y() > dialRect.center().y();
|
|
if (inc)
|
|
p.rotate(270-(dialStartAngle/16 + dialSpanAngle/16/4 + dialSpanAngle/16/2));
|
|
else
|
|
p.rotate(270-(dialStartAngle/16 + dialSpanAngle/16/4));
|
|
p.drawLine(0, hoverRect.width()/2,
|
|
inc ? 10 : -10, hoverRect.width()/2 + 4);
|
|
p.restore();
|
|
}
|
|
}
|
|
|
|
void dslDial::set_sel(uint64_t sel)
|
|
{
|
|
assert(sel < _div);
|
|
|
|
_sel = sel;
|
|
}
|
|
|
|
uint64_t dslDial::get_sel()
|
|
{
|
|
return _sel;
|
|
}
|
|
|
|
uint64_t dslDial::get_count()
|
|
{
|
|
return _div;
|
|
}
|
|
|
|
bool dslDial::isMin()
|
|
{
|
|
if(_sel == 0)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
bool dslDial::isMax()
|
|
{
|
|
if(_sel == _div - 1)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
uint64_t dslDial::get_min()
|
|
{
|
|
return _value[0];
|
|
}
|
|
|
|
uint64_t dslDial::get_max()
|
|
{
|
|
return _value[_div-1];
|
|
}
|
|
|
|
uint64_t dslDial::get_value()
|
|
{
|
|
if (_sel >= (uint64_t)_value.count()){
|
|
assert(false);
|
|
}
|
|
|
|
return _value[_sel];
|
|
}
|
|
|
|
uint64_t dslDial::get_value(uint64_t i)
|
|
{
|
|
assert(i < _div);
|
|
return _value[i];
|
|
}
|
|
|
|
void dslDial::set_value(uint64_t value)
|
|
{
|
|
assert(_value.contains(value));
|
|
_sel = _value.indexOf(value, 0);
|
|
}
|
|
|
|
void dslDial::set_factor(uint64_t factor)
|
|
{
|
|
if (_factor != factor) {
|
|
_factor = factor;
|
|
}
|
|
}
|
|
|
|
uint64_t dslDial::get_factor()
|
|
{
|
|
return _factor;
|
|
}
|
|
|
|
} // namespace view
|
|
} // namespace pv
|