mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-16 18:34:54 -06:00
31 lines
949 B
C++
31 lines
949 B
C++
#include "RimPlotInterface.h"
|
|
|
|
#include "RimPlotWindow.h"
|
|
|
|
#include "RiuQwtPlotWidget.h"
|
|
|
|
#define RI_PLOT_MIN_DEFAULT -10.0
|
|
#define RI_PLOT_MAX_DEFAULT 100.0
|
|
|
|
namespace caf
|
|
{
|
|
template <>
|
|
void RimPlotInterface::WidthScaleFactorEnum::setUp()
|
|
{
|
|
addItem( RimPlotInterface::EXTRA_NARROW, "EXTRA_NARROW_TRACK", "Extra Narrow" );
|
|
addItem( RimPlotInterface::NARROW, "NARROW_TRACK", "Narrow" );
|
|
addItem( RimPlotInterface::NORMAL, "NORMAL_TRACK", "Normal" );
|
|
addItem( RimPlotInterface::WIDE, "WIDE_TRACK", "Wide" );
|
|
addItem( RimPlotInterface::EXTRA_WIDE, "EXTRA_WIDE_TRACK", "Extra wide" );
|
|
setDefault( RimPlotInterface::NORMAL );
|
|
}
|
|
} // namespace caf
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QString RimPlotInterface::asciiDataForPlotExport() const
|
|
{
|
|
return "";
|
|
}
|