ResInsight/ApplicationLibCode/ProjectDataModel/CorrelationPlots/RimCorrelationMatrixPlot.h

98 lines
3.3 KiB
C
Raw Normal View History

2020-04-21 01:56:27 -05:00
/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2020 Equinor ASA
//
// ResInsight 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 3 of the License, or
// (at your option) any later version.
//
// ResInsight 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 at <http://www.gnu.org/licenses/gpl.html>
// for more details.
//
/////////////////////////////////////////////////////////////////////////////////
#pragma once
2021-03-29 08:45:53 -05:00
#include "RimAbstractCorrelationPlot.h"
2020-04-21 01:56:27 -05:00
#include "cafAppEnum.h"
class RimRegularLegendConfig;
class RimSummaryAddress;
2020-04-21 01:56:27 -05:00
class RiuGroupedBarChartBuilder;
class RiuPlotItem;
2020-04-21 01:56:27 -05:00
//==================================================================================================
///
///
//==================================================================================================
class RimCorrelationMatrixPlot : public RimAbstractCorrelationPlot
{
CAF_PDM_HEADER_INIT;
public:
caf::Signal<std::pair<QString, RiaSummaryCurveDefinition>> matrixCellSelected;
2020-04-21 01:56:27 -05:00
public:
enum class Sorting
{
NO_SORTING,
ROWS,
COLUMNS,
BOTH,
};
using SortingEnum = caf::AppEnum<Sorting>;
2020-04-21 01:56:27 -05:00
public:
RimCorrelationMatrixPlot();
~RimCorrelationMatrixPlot() override;
2020-05-28 01:11:37 -05:00
bool showAbsoluteValues() const;
bool sortByAbsoluteValues() const;
RimRegularLegendConfig* legendConfig();
void selectAllParameters();
bool showTopNCorrelations() const;
int topNFilterCount() const;
bool isCurveHighlightSupported() const override;
2020-04-29 01:11:30 -05:00
2020-04-21 01:56:27 -05:00
private:
// Overridden PDM methods
void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) override;
void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override;
QList<caf::PdmOptionItemInfo> calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions ) override;
2020-04-21 01:56:27 -05:00
void onLoadDataAndUpdate() override;
void childFieldChangedByUi( const caf::PdmFieldHandle* changedChildField ) override;
void updateAxes() override;
// Private methods
void createMatrix();
void updatePlotTitle() override;
void updateLegend() override;
void onPlotItemSelected( std::shared_ptr<RiuPlotItem> plotItem, bool toggle, int sampleIndex ) override;
2020-04-21 01:56:27 -05:00
private:
2020-09-23 08:48:19 -05:00
caf::PdmField<bool> m_showAbsoluteValues;
caf::PdmField<SortingEnum> m_sortByValues;
caf::PdmField<bool> m_sortByAbsoluteValues;
caf::PdmField<bool> m_excludeParametersWithoutVariation;
caf::PdmField<bool> m_showOnlyTopNCorrelations;
caf::PdmField<int> m_topNFilterCount;
caf::PdmField<std::vector<QString>> m_selectedParametersList;
2020-04-29 01:11:30 -05:00
2020-04-21 01:56:27 -05:00
caf::PdmChildField<RimRegularLegendConfig*> m_legendConfig;
std::map<size_t, QString> m_paramLabels;
std::map<size_t, QString> m_resultLabels;
};