mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#2809, #2858, #2859 Fix icon inconsistencies. Edd icons for ensemble curves and new icons for cross plot
This commit is contained in:
@@ -101,7 +101,7 @@ const char RimWellPltPlot::PLOT_NAME_QFORMAT_STRING[] = "PLT: %1";
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimWellPltPlot::RimWellPltPlot()
|
||||
{
|
||||
CAF_PDM_InitObject("Well Allocation Plot", ":/WellAllocPlot16x16.png", "", "");
|
||||
CAF_PDM_InitObject("Well Allocation Plot", ":/WellFlowPlot16x16.png", "", "");
|
||||
|
||||
CAF_PDM_InitField(&m_userName, "PlotDescription", QString("PLT Plot"), "Name", "", "", "");
|
||||
m_userName.uiCapability()->setUiReadOnly(true);
|
||||
|
||||
@@ -70,7 +70,7 @@ const char RimWellRftPlot::PLOT_NAME_QFORMAT_STRING[] = "RFT: %1";
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimWellRftPlot::RimWellRftPlot()
|
||||
{
|
||||
CAF_PDM_InitObject("Well Allocation Plot", ":/WellAllocPlot16x16.png", "", "");
|
||||
CAF_PDM_InitObject("Well Allocation Plot", ":/FlowCharPlot16x16.png", "", "");
|
||||
|
||||
CAF_PDM_InitField(&m_userName, "PlotDescription", QString("RFT Plot"), "Name", "", "", "");
|
||||
m_userName.uiCapability()->setUiReadOnly(true);
|
||||
|
||||
@@ -262,7 +262,7 @@ caf::CmdFeatureMenuBuilder RimContextCommandBuilder::commandsFromSelection()
|
||||
|
||||
menuBuilder.addSeparator();
|
||||
|
||||
menuBuilder.subMenuStart("Well Plots", QIcon(":/SummaryPlot16x16.png"));
|
||||
menuBuilder.subMenuStart("Well Plots", QIcon(":/WellLogTrack16x16.png"));
|
||||
menuBuilder << "RicNewRftPlotFeature";
|
||||
menuBuilder << "RicNewPltPlotFeature";
|
||||
menuBuilder << "RicShowWellAllocationPlotFeature";
|
||||
@@ -537,7 +537,7 @@ caf::CmdFeatureMenuBuilder RimContextCommandBuilder::commandsFromSelection()
|
||||
menuBuilder << "RicNewWellLogRftCurveFeature";
|
||||
menuBuilder << "RicNewSimWellIntersectionFeature";
|
||||
|
||||
menuBuilder.subMenuStart("Well Plots", QIcon(":/SummaryPlot16x16.png"));
|
||||
menuBuilder.subMenuStart("Well Plots", QIcon(":/WellLogTrack16x16.png"));
|
||||
menuBuilder << "RicNewRftPlotFeature";
|
||||
menuBuilder << "RicNewPltPlotFeature";
|
||||
menuBuilder << "Separator";
|
||||
|
||||
@@ -39,7 +39,7 @@ CAF_PDM_SOURCE_INIT(RimPltPlotCollection, "WellPltPlotCollection");
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimPltPlotCollection::RimPltPlotCollection()
|
||||
{
|
||||
CAF_PDM_InitObject("PLT Plots", ":/WellLogPlots16x16.png", "", "");
|
||||
CAF_PDM_InitObject("PLT Plots", ":/WellAllocPlots16x16.png", "", "");
|
||||
|
||||
CAF_PDM_InitFieldNoDefault(&m_pltPlots, "PltPlots", "", "", "", "");
|
||||
m_pltPlots.uiCapability()->setUiHidden(true);
|
||||
|
||||
@@ -74,7 +74,7 @@ CAF_PDM_SOURCE_INIT(RimEnsembleCurveSet, "RimEnsembleCurveSet");
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimEnsembleCurveSet::RimEnsembleCurveSet()
|
||||
{
|
||||
CAF_PDM_InitObject("Ensemble Curve Set", ":/SummaryCurveFilter16x16.png", "", "");
|
||||
CAF_PDM_InitObject("Ensemble Curve Set", ":/EnsembleCurveSet16x16.png", "", "");
|
||||
|
||||
CAF_PDM_InitFieldNoDefault(&m_curves, "EnsembleCurveSet", "Ensemble Curve Set", "", "", "");
|
||||
m_curves.uiCapability()->setUiHidden(true);
|
||||
|
||||
@@ -42,7 +42,7 @@ CAF_PDM_SOURCE_INIT(RimEnsembleCurveSetCollection, "RimEnsembleCurveSetCollectio
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimEnsembleCurveSetCollection::RimEnsembleCurveSetCollection()
|
||||
{
|
||||
CAF_PDM_InitObject("Ensemble Curve Sets", ":/SummaryCurveFilter16x16.png", "", "");
|
||||
CAF_PDM_InitObject("Ensemble Curve Sets", ":/EnsembleCurveSets16x16.png", "", "");
|
||||
|
||||
CAF_PDM_InitFieldNoDefault(&m_curveSets, "EnsembleCurveSets", "Ensemble Curve Sets", "", "", "");
|
||||
m_curveSets.uiCapability()->setUiHidden(true);
|
||||
|
||||
@@ -26,7 +26,7 @@ CAF_PDM_SOURCE_INIT(RimSummaryCrossPlot, "SummaryCrossPlot");
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimSummaryCrossPlot::RimSummaryCrossPlot()
|
||||
{
|
||||
CAF_PDM_InitObject("Summary Cross Plot", ":/SummaryPlotLight16x16.png", "", "");
|
||||
CAF_PDM_InitObject("Summary Cross Plot", ":/SummaryXPlotLight16x16.png", "", "");
|
||||
|
||||
setAsCrossPlot();
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ CAF_PDM_SOURCE_INIT(RimSummaryCrossPlotCollection, "SummaryCrossPlotCollection")
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimSummaryCrossPlotCollection::RimSummaryCrossPlotCollection()
|
||||
{
|
||||
CAF_PDM_InitObject("Summary Cross Plots", ":/SummaryPlots16x16.png", "", "");
|
||||
CAF_PDM_InitObject("Summary Cross Plots", ":/SummaryXPlotsLight16x16.png", "", "");
|
||||
|
||||
CAF_PDM_InitFieldNoDefault(&m_summaryCrossPlots, "SummaryCrossPlots", "Summary Cross Plots", "", "", "");
|
||||
m_summaryCrossPlots.uiCapability()->setUiHidden(true);
|
||||
|
||||
@@ -28,7 +28,7 @@ CAF_PDM_SOURCE_INIT(RimSummaryPlotCollection, "SummaryPlotCollection");
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimSummaryPlotCollection::RimSummaryPlotCollection()
|
||||
{
|
||||
CAF_PDM_InitObject("Summary Plots", ":/SummaryPlots16x16.png", "", "");
|
||||
CAF_PDM_InitObject("Summary Plots", ":/SummaryPlotsLight16x16.png", "", "");
|
||||
|
||||
CAF_PDM_InitFieldNoDefault(&summaryPlots, "SummaryPlots", "Summary Plots", "", "", "");
|
||||
summaryPlots.uiCapability()->setUiHidden(true);
|
||||
|
||||
Reference in New Issue
Block a user