2017-02-10 01:22:26 -06:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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();
|
2018-02-20 07:27:03 -06:00
|
|
|
static const caf::ColorTable& tensorWhiteGrayBlackPaletteColors();
|
2018-02-27 02:39:47 -06:00
|
|
|
static const caf::ColorTable& tensorOrangeBlueWhitePaletteColors();
|
|
|
|
static const caf::ColorTable& tensorsMagentaBrownGrayPaletteColors();
|
2017-02-10 01:22:26 -06:00
|
|
|
static const caf::ColorTable& angularPaletteColors();
|
2017-02-20 05:26:36 -06:00
|
|
|
static const caf::ColorTable& stimPlanPaletteColors();
|
2017-02-10 01:22:26 -06:00
|
|
|
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();
|
2017-03-28 16:35:53 -05:00
|
|
|
static const caf::ColorTable& timestepsPaletteColors();
|
|
|
|
|
2018-01-22 04:18:45 -06:00
|
|
|
static cvf::Color3f undefinedCellColor();
|
2018-01-22 06:00:11 -06:00
|
|
|
static cvf::Color3f perforationLengthColor();
|
2017-02-10 01:22:26 -06:00
|
|
|
};
|