#5539 Populate the vector selection dialog from selection

This commit is contained in:
Jacob Støren
2020-02-24 10:44:51 +01:00
parent 3b0aacb666
commit 233f63e80b
6 changed files with 37 additions and 32 deletions

View File

@@ -107,6 +107,14 @@ void RiuSummaryVectorSelectionDialog::setEnsembleAndAddress( RimSummaryCaseColle
updateLabel();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RiuSummaryVectorSelectionDialog::setCurveSelection( const std::vector<RiaSummaryCurveDefinition>& selection )
{
summaryAddressSelection()->setSelectedCurveDefinitions( selection );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
@@ -132,11 +140,11 @@ void RiuSummaryVectorSelectionDialog::hideSummaryCases()
}
//--------------------------------------------------------------------------------------------------
///
///
//--------------------------------------------------------------------------------------------------
void RiuSummaryVectorSelectionDialog::enableMultiSelect( bool enable )
{
summaryAddressSelection()->setMultiSelectionMode(enable);
summaryAddressSelection()->setMultiSelectionMode( enable );
}
//--------------------------------------------------------------------------------------------------