Summary table (#9997)

Summary Table for showing summary vectors in table format
- Resampling on date resolution
- Active for group, region and well
- Right click menu option from Summary case tree
This commit is contained in:
Jørgen Herje
2023-03-23 14:10:30 +01:00
committed by GitHub
parent d9ba01b927
commit 36e01523cb
18 changed files with 1354 additions and 2 deletions

View File

@@ -194,6 +194,16 @@ RimViewWindow* RiuMatrixPlotWidget::ownerViewWindow() const
return m_ownerViewWindow;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RiuMatrixPlotWidget::contextMenuEvent( QContextMenuEvent* )
{
// Added empty override to preventing menu for Mdi Area
// I.e.: RiuContextMenuLauncher for RiuPlotMainWindow (mdi area)
return;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------

View File

@@ -77,6 +77,9 @@ public:
RimViewWindow* ownerViewWindow() const override;
protected:
void contextMenuEvent( QContextMenuEvent* ) override;
private slots:
void onPlotItemSelected( std::shared_ptr<RiuPlotItem> plotItem, bool toggle, int sampleIndex );