mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-27 16:57:01 -06:00
57 lines
2.5 KiB
C++
57 lines
2.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2017 Statoil ASA
|
|
//
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include "cafColorTable.h"
|
|
|
|
|
|
//==================================================================================================
|
|
///
|
|
///
|
|
//==================================================================================================
|
|
class RiaColorTables
|
|
{
|
|
public:
|
|
static const caf::ColorTable& normalPaletteColors();
|
|
static const caf::ColorTable& normalPaletteOppositeOrderingColors();
|
|
static const caf::ColorTable& blackWhitePaletteColors();
|
|
static const caf::ColorTable& whiteBlackPaletteColors();
|
|
static const caf::ColorTable& pinkWhitePaletteColors();
|
|
static const caf::ColorTable& whitePinkPaletteColors();
|
|
static const caf::ColorTable& blueWhiteRedPaletteColors();
|
|
static const caf::ColorTable& redWhiteBluePaletteColors();
|
|
static const caf::ColorTable& categoryPaletteColors();
|
|
static const caf::ColorTable& angularPaletteColors();
|
|
static const caf::ColorTable& stimPlanPaletteColors();
|
|
static const caf::ColorTable& faultsPaletteColors();
|
|
static const caf::ColorTable& wellsPaletteColors();
|
|
static const caf::ColorTable& summaryCurveDefaultPaletteColors();
|
|
static const caf::ColorTable& summaryCurveRedPaletteColors();
|
|
static const caf::ColorTable& summaryCurveGreenPaletteColors();
|
|
static const caf::ColorTable& summaryCurveBluePaletteColors();
|
|
static const caf::ColorTable& summaryCurveBrownPaletteColors();
|
|
static const caf::ColorTable& summaryCurveNoneRedGreenBlueBrownPaletteColors();
|
|
static const caf::ColorTable& wellLogPlotPaletteColors();
|
|
static const caf::ColorTable& selectionPaletteColors();
|
|
static const caf::ColorTable& timestepsPaletteColors();
|
|
|
|
static cvf::Color3f undefinedCellColor();
|
|
static cvf::Color3f perforationLengthColor();
|
|
};
|