mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Implement doRenderWindowContent
Note: Not tested!
This commit is contained in:
parent
cfca0ac665
commit
0f0cc4c5a8
@ -51,6 +51,8 @@
|
|||||||
|
|
||||||
#include "cvfScalarMapper.h"
|
#include "cvfScalarMapper.h"
|
||||||
|
|
||||||
|
#include <QPainter>
|
||||||
|
|
||||||
CAF_PDM_SOURCE_INIT( RimWellConnectivityTable, "RimWellConnectivityTable" );
|
CAF_PDM_SOURCE_INIT( RimWellConnectivityTable, "RimWellConnectivityTable" );
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
@ -784,7 +786,12 @@ QString RimWellConnectivityTable::description() const
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
void RimWellConnectivityTable::doRenderWindowContent( QPaintDevice* paintDevice )
|
void RimWellConnectivityTable::doRenderWindowContent( QPaintDevice* paintDevice )
|
||||||
{
|
{
|
||||||
return;
|
// Note: Not tested yet!
|
||||||
|
if ( m_matrixPlotWidget )
|
||||||
|
{
|
||||||
|
QPainter painter( paintDevice );
|
||||||
|
m_matrixPlotWidget->render( &painter );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user