mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
(#411) Setting well log plot title in the viewer's window title bar
This commit is contained in:
@@ -89,6 +89,7 @@ void RimWellLogPlot::updateViewerWidget()
|
|||||||
RiuMainWindow::instance()->addViewer(m_viewer, windowGeometry());
|
RiuMainWindow::instance()->addViewer(m_viewer, windowGeometry());
|
||||||
RiuMainWindow::instance()->setActiveViewer(m_viewer);
|
RiuMainWindow::instance()->setActiveViewer(m_viewer);
|
||||||
updateAxisRanges();
|
updateAxisRanges();
|
||||||
|
updateViewerWidgetWindowTitle();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -118,6 +119,10 @@ void RimWellLogPlot::fieldChangedByUi(const caf::PdmFieldHandle* changedField, c
|
|||||||
{
|
{
|
||||||
updateAxisRanges();
|
updateAxisRanges();
|
||||||
}
|
}
|
||||||
|
else if (changedField == &m_userName)
|
||||||
|
{
|
||||||
|
updateViewerWidgetWindowTitle();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
@@ -339,3 +344,14 @@ void RimWellLogPlot::setDescription(const QString& description)
|
|||||||
{
|
{
|
||||||
m_userName = description;
|
m_userName = description;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
void RimWellLogPlot::updateViewerWidgetWindowTitle()
|
||||||
|
{
|
||||||
|
if (m_viewer)
|
||||||
|
{
|
||||||
|
m_viewer->setWindowTitle(QString("Well Log Plot - %1").arg(m_userName));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -41,6 +41,7 @@ public:
|
|||||||
virtual ~RimWellLogPlot();
|
virtual ~RimWellLogPlot();
|
||||||
|
|
||||||
void setDescription(const QString& description);
|
void setDescription(const QString& description);
|
||||||
|
void updateViewerWidgetWindowTitle();
|
||||||
|
|
||||||
void addTrace(RimWellLogPlotTrace* trace);
|
void addTrace(RimWellLogPlotTrace* trace);
|
||||||
size_t traceCount() { return traces.size();}
|
size_t traceCount() { return traces.size();}
|
||||||
|
|||||||
Reference in New Issue
Block a user