mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Move most of the QtQuick code to its own directory, so that it can be reused in the future for the chart. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
31 lines
782 B
C++
31 lines
782 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "quartilemarker.h"
|
|
#include "statsaxis.h"
|
|
#include "statscolors.h"
|
|
#include "statsview.h"
|
|
#include "zvalues.h"
|
|
|
|
static const double quartileMarkerSize = 15.0;
|
|
|
|
QuartileMarker::QuartileMarker(ChartView &view, const StatsTheme &theme, double pos, double value, StatsAxis *xAxis, StatsAxis *yAxis) :
|
|
ChartLineItem(view, ChartZValue::ChartFeatures, theme.quartileMarkerColor, 2.0),
|
|
xAxis(xAxis), yAxis(yAxis),
|
|
pos(pos),
|
|
value(value)
|
|
{
|
|
updatePosition();
|
|
}
|
|
|
|
QuartileMarker::~QuartileMarker()
|
|
{
|
|
}
|
|
|
|
void QuartileMarker::updatePosition()
|
|
{
|
|
if (!xAxis || !yAxis)
|
|
return;
|
|
double x = xAxis->toScreen(pos);
|
|
double y = yAxis->toScreen(value);
|
|
setLine(QPointF(x - quartileMarkerSize / 2.0, y),
|
|
QPointF(x + quartileMarkerSize / 2.0, y));
|
|
}
|