1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/View/Plotter/ProjectionsPlot.cpp
//! @brief Implements class ProjectionsPlot.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#include "GUI/View/Plotter/ProjectionsPlot.h"
#include "Base/Axis/Scale.h"
#include "Base/Util/Assert.h"
#include "Device/Data/Datafield.h"
#include "GUI/Model/Axis/AmplitudeAxisItem.h"
#include "GUI/Model/Data/Data2DItem.h"
#include "GUI/Model/Mask/MasksSet.h" // projections
#include "GUI/View/Base/Fontsize.h"
#include "GUI/View/Plotter/RangeUtil.h"
#include "GUI/View/Plotter/SavePlot.h"
#include <utility>
ProjectionsPlot::ProjectionsPlot(Qt::Orientation orientation)
: m_orientation(orientation)
{
setAttribute(Qt::WA_NoMousePropagation, false);
QFont font(QFont().family(), GUI::Font::fontSizeSmall());
xAxis->setTickLabelFont(font);
yAxis->setTickLabelFont(font);
QCPAxisRect* axisRectangle = axisRect();
axisRectangle->setMinimumSize(0, 160);
axisRectangle->setAutoMargins(QCP::msTop | QCP::msBottom);
}
void ProjectionsPlot::exportPlot()
{
ASSERT(m_data_item);
GUI::Plot::savePlot(this, m_data_item->c_field());
}
void ProjectionsPlot::onDataDestroyed()
{
m_data_item = nullptr;
}
void ProjectionsPlot::setData2DItem(Data2DItem* item)
{
m_data_item = item;
clearAll();
connectItems();
}
void ProjectionsPlot::onMarginsChanged(double left, double right)
{
const QSize base_size = GUI::Font::SizeOfLetterM(this);
const int top = static_cast<int>(base_size.height() * 1.5);
const int bottom = static_cast<int>(base_size.height() * 4.5);
axisRect()->setMargins(QMargins(left, top, right, bottom));
replot();
}
void ProjectionsPlot::connectItems()
{
if (!m_data_item)
return;
// Set nullptr at destruction
connect(m_data_item, &QObject::destroyed, this, &ProjectionsPlot::onDataDestroyed,
Qt::UniqueConnection);
// Update projection plot on new item appearance
connect(m_data_item, &Data2DItem::projectionCreated, this, &ProjectionsPlot::updateProjections,
Qt::UniqueConnection);
// Update projection position
connect(m_data_item, &Data2DItem::projectionPositionChanged, this,
&ProjectionsPlot::onProjectionPropertyChanged, Qt::UniqueConnection);
// Remove projection plot
connect(m_data_item, &Data2DItem::projectionGone, this, &ProjectionsPlot::clearProjection,
Qt::UniqueConnection);
// Values of intensity changed, regenerate everything.
connect(m_data_item, &Data2DItem::datafieldChanged, this,
&ProjectionsPlot::updateProjectionsData, Qt::UniqueConnection);
// interpolation changed
connect(m_data_item, &Data2DItem::interpolationChanged, this, &ProjectionsPlot::setInterpolate,
Qt::UniqueConnection);
// AXES
// if the colormap is zoomed or dragged:
connect(m_data_item, &Data2DItem::updateOtherPlots, this, &ProjectionsPlot::updateAxesRange,
Qt::UniqueConnection);
// if axes are changed externally, from the properties panel:
// axes range
connect(m_data_item->axItemX(), &BasicAxisItem::axisRangeChanged, this,
&ProjectionsPlot::updateAxesRange, Qt::UniqueConnection);
connect(m_data_item->axItemY(), &BasicAxisItem::axisRangeChanged, this,
&ProjectionsPlot::updateAxesRange, Qt::UniqueConnection);
connect(m_data_item->zAxisItem(), &BasicAxisItem::axisRangeChanged, this,
&ProjectionsPlot::updateAxesRange, Qt::UniqueConnection);
// axes title
connect(m_data_item->axItemX(), &BasicAxisItem::axisTitleChanged, this,
&ProjectionsPlot::updateAxesTitle, Qt::UniqueConnection);
connect(m_data_item->axItemY(), &BasicAxisItem::axisTitleChanged, this,
&ProjectionsPlot::updateAxesTitle, Qt::UniqueConnection);
// z log scale
connect(m_data_item->zAxisItem(), &BasicAxisItem::logScaleChanged, this,
&ProjectionsPlot::setLogZ, Qt::UniqueConnection);
updateProjectionsData();
}
void ProjectionsPlot::disconnectItems()
{
if (!m_data_item)
return;
// disconnects only non-lambda connections within this class
disconnect(m_data_item, nullptr, this, nullptr);
disconnect(m_data_item->axItemX(), nullptr, this, nullptr);
disconnect(m_data_item->axItemY(), nullptr, this, nullptr);
disconnect(m_data_item->zAxisItem(), nullptr, this, nullptr);
}
QCPGraph* ProjectionsPlot::graphForItem(const LineItem* item)
{
if (!m_data_item)
return nullptr;
QCPGraph* graph = m_item_to_graph[item];
if (!graph) {
graph = addGraph();
QPen pen;
pen.setColor(QColor(0, 0, 255, 200));
graph->setLineStyle(m_data_item->isInterpolated() ? QCPGraph::lsLine
: QCPGraph::lsStepCenter);
graph->setPen(pen);
m_item_to_graph[item] = graph;
}
return graph;
}
//! Creates cached 2D histogram for later projection calculations.
void ProjectionsPlot::updateProjectionsData()
{
if (!m_data_item)
return;
updateAxesRange();
updateAxesTitle();
setLogZ(m_data_item->isLog());
updateProjections();
}
//! Runs through all projection items and generates missed plots.
void ProjectionsPlot::updateProjections()
{
ASSERT(m_data_item);
const auto* all_prjns = m_data_item->prjns();
if (!all_prjns)
return;
for (const auto* prjn : *all_prjns)
if (const auto* t = dynamic_cast<const LineItem*>(prjn))
if (t->orientation() == m_orientation)
setGraphFromItem(t);
replot();
}
void ProjectionsPlot::onProjectionPropertyChanged(const LineItem* item)
{
if (!item)
return;
setGraphFromItem(item);
replot();
}
//! Updates canvas axes to match current zoom level of Data2DItem
void ProjectionsPlot::updateAxesRange()
{
if (!m_data_item)
return;
if (m_orientation == Qt::Horizontal)
xAxis->setRange(QCPRange(m_data_item->lowerX(), m_data_item->upperX()));
else
xAxis->setRange(QCPRange(m_data_item->lowerY(), m_data_item->upperY()));
yAxis->setRange(QCPRange(m_data_item->lowerZ(), m_data_item->upperZ()));
}
void ProjectionsPlot::updateAxesTitle()
{
if (!m_data_item)
return;
if (m_orientation == Qt::Horizontal)
xAxis->setLabel(m_data_item->xAxisLabel());
else
xAxis->setLabel(m_data_item->yAxisLabel());
}
//! Removes plot corresponding to given projection item.
void ProjectionsPlot::clearProjection(const LineItem* item)
{
if (QCPGraph* graph = graphForItem(item)) {
removePlottable(graph);
m_item_to_graph.remove(item);
replot();
}
}
void ProjectionsPlot::clearAll()
{
clearPlottables();
m_item_to_graph.clear();
replot();
}
//! Sets the data to graph from given projection item. When all graphs are set, call replot.
void ProjectionsPlot::setGraphFromItem(const LineItem* item)
{
if (!m_data_item || !m_data_item->c_field())
return;
QCPGraph* graph = graphForItem(item);
if (!graph)
return;
// TODO: merge with similar code in ProjectionsSaver::projectionsData ?
std::unique_ptr<Datafield> field;
if (dynamic_cast<const HorizontalLineItem*>(item)) {
if (m_orientation != Qt::Horizontal)
return;
field.reset(m_data_item->c_field()->xProjection(item->pos().dVal()));
} else if (dynamic_cast<const VerticalLineItem*>(item)) {
if (m_orientation != Qt::Vertical)
return;
field.reset(m_data_item->c_field()->yProjection(item->pos().dVal()));
} else
ASSERT_NEVER;
auto centers = field->axis(0).binCenters();
auto values = field->flatVector();
graph->setData(QVector<double>(centers.begin(), centers.end()),
QVector<double>(values.begin(), values.end()));
}
void ProjectionsPlot::setInterpolate(bool isInterpolated)
{
for (auto* graph : m_item_to_graph)
graph->setLineStyle(isInterpolated ? QCPGraph::lsLine : QCPGraph::lsStepCenter);
}
void ProjectionsPlot::setLogZ(bool isLogz)
{
GUI::QCP_RangeUtil::setLogAmplitudeAxis(yAxis, isLogz);
}
void ProjectionsPlot::replot()
{
QCustomPlot::replot();
}
|