mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
- Add selector for excluding rows in table - Row selection is based on category, vector, threshold - Move data containers to utils class - TreeSelectionEditor: Add context menu to invert selection - Improved naming of menu items - Guard plotDefinition before connect signal/slots --------- Co-authored-by: Magne Sjaastad <magne.sjaastad@ceetronsolutions.com>
132 lines
5.2 KiB
C++
132 lines
5.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2023- 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
|
|
|
|
#include "RimPlotWindow.h"
|
|
|
|
#include "RiaDateTimeDefines.h"
|
|
|
|
#include "RifEclipseSummaryAddress.h"
|
|
|
|
#include "RimSummaryTableTools.h"
|
|
|
|
#include "cafPdmField.h"
|
|
#include "cafPdmPtrField.h"
|
|
|
|
#include <QDateTime>
|
|
#include <QPointer>
|
|
#include <QString>
|
|
|
|
class RifSummaryReaderInterface;
|
|
class RimSummaryCase;
|
|
class RimRegularLegendConfig;
|
|
class RiuMatrixPlotWidget;
|
|
|
|
//==================================================================================================
|
|
///
|
|
//==================================================================================================
|
|
class RimSummaryTable : public RimPlotWindow
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
RimSummaryTable();
|
|
~RimSummaryTable() override;
|
|
|
|
void setDefaultCaseAndCategoryAndVectorName();
|
|
void setFromCaseAndCategoryAndVectorName( RimSummaryCase* summaryCase,
|
|
RifEclipseSummaryAddress::SummaryVarCategory category,
|
|
const QString& vectorName );
|
|
void setDescription( const QString& description );
|
|
QString description() const override;
|
|
|
|
private:
|
|
void cleanupBeforeClose();
|
|
|
|
void onLoadDataAndUpdate() override;
|
|
void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) override;
|
|
void childFieldChangedByUi( const caf::PdmFieldHandle* changedChildField ) override;
|
|
void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override;
|
|
|
|
QList<caf::PdmOptionItemInfo> calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions ) override;
|
|
|
|
// Inherited via RimPlotWindow
|
|
void doRenderWindowContent( QPaintDevice* paintDevice ) override;
|
|
|
|
// Inherited via RimViewWindow
|
|
QWidget* viewWidget() override;
|
|
QImage snapshotWindowContent() override;
|
|
void zoomAll() override;
|
|
QWidget* createViewWidget( QWidget* mainWindowParent ) override;
|
|
void deleteViewWidget() override;
|
|
|
|
// PDM methods
|
|
caf::PdmFieldHandle* userDescriptionField() override;
|
|
|
|
int axisTitleFontSize() const;
|
|
int axisLabelFontSize() const;
|
|
int valueLabelFontSize() const;
|
|
|
|
QString createTableName() const;
|
|
|
|
private:
|
|
std::pair<double, double> createLegendMinMaxValues( const double maxTableValue ) const;
|
|
QString dateFormatString() const;
|
|
|
|
std::set<RifEclipseSummaryAddress> getSummaryAddressesFromReader( const RifSummaryReaderInterface* summaryReader,
|
|
RifEclipseSummaryAddress::SummaryVarCategory category,
|
|
const QString& vector ) const;
|
|
std::set<QString> getCategoryVectorFromSummaryReader( const RifSummaryReaderInterface* summaryReader,
|
|
RifEclipseSummaryAddress::SummaryVarCategory category ) const;
|
|
QString getCategoryNameFromAddress( const RifEclipseSummaryAddress& address ) const;
|
|
|
|
std::vector<RimSummaryCase*> getToplevelSummaryCases() const;
|
|
|
|
private:
|
|
// Matrix plot for visualizing table data
|
|
QPointer<RiuMatrixPlotWidget> m_matrixPlotWidget;
|
|
|
|
caf::PdmField<QString> m_tableName;
|
|
caf::PdmField<bool> m_isAutomaticName;
|
|
caf::PdmPtrField<RimSummaryCase*> m_case;
|
|
|
|
caf::PdmField<caf::AppEnum<RifEclipseSummaryAddress::SummaryVarCategory>> m_category;
|
|
caf::PdmField<QString> m_vector;
|
|
caf::PdmField<caf::AppEnum<RiaDefines::DateTimePeriod>> m_resamplingSelection;
|
|
caf::PdmField<double> m_thresholdValue;
|
|
|
|
caf::PdmField<std::vector<QString>> m_excludedRowsUiField;
|
|
|
|
caf::PdmChildField<RimRegularLegendConfig*> m_legendConfig;
|
|
|
|
caf::PdmField<caf::FontTools::RelativeSizeEnum> m_axisTitleFontSize;
|
|
caf::PdmField<caf::FontTools::RelativeSizeEnum> m_axisLabelFontSize;
|
|
caf::PdmField<caf::FontTools::RelativeSizeEnum> m_valueLabelFontSize;
|
|
caf::PdmField<bool> m_showValueLabels;
|
|
|
|
private:
|
|
using VectorData = RimSummaryTableTools::VectorData;
|
|
using TableData = RimSummaryTableTools::TableData;
|
|
|
|
TableData m_tableData;
|
|
|
|
void createTableData();
|
|
void setExcludedRowsUiSelectionsFromTableData();
|
|
};
|