Well log plots now contain one plot per trace

This commit is contained in:
Pål Hagen
2015-08-28 14:25:14 +02:00
parent 7401160677
commit 4e83cff8a2
7 changed files with 133 additions and 6 deletions

View File

@@ -106,4 +106,6 @@ void RimWellLogPlot::addTrace()
RiuMainWindow::instance()->projectTreeView()->setExpanded(this, true);
updateConnectedEditors();
m_viewer->update(*this);
}

View File

@@ -40,10 +40,11 @@ public:
RimWellLogPlot();
virtual ~RimWellLogPlot();
void addTrace();
caf::PdmChildArrayField<RimWellLogPlotTrace*> traces;
caf::PdmField<bool> showWindow;
void addTrace();
protected:
// Overridden PDM methods
@@ -56,5 +57,4 @@ private:
private:
QPointer<RiuWellLogPlot> m_viewer;
caf::PdmChildArrayField<RimWellLogPlotTrace*> traces;
};