mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 05:37:21 -05:00
* #12974 Fix zone colors to honor LYR-file specification - Map formation colors by name instead of palette index in updateFormationNamesOnPlot() - Map formation colors by categoryValue lookup in updateCellResultLegend(), fixing incorrect colors when showOnlyVisibleCategoriesInLegend filters the active set - Add RimColorLegendCollection::createColorLegendFromFormationNames() and call it from readAllFormationNames() so LYR colors are available after project load - Auto-assign formation color legend when a formation case is set on a well log track - Rename fileNameWoPath() to shortName() and switch to baseName() (no extension) - Remove addCustomColorLegend() from RicImportFormationNamesFeature; logic now lives in RimColorLegendCollection - Set formation legend when creating new Well Log Extraction Curve track
42 lines
1.4 KiB
C++
42 lines
1.4 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2016- 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 "cafCmdFeature.h"
|
|
|
|
class RimFormationNames;
|
|
class Rim3dView;
|
|
|
|
//==================================================================================================
|
|
///
|
|
//==================================================================================================
|
|
class RicImportFormationNamesFeature : public caf::CmdFeature
|
|
{
|
|
CAF_CMD_HEADER_INIT;
|
|
|
|
static RimFormationNames* importFormationFiles( const QStringList& fileNames );
|
|
|
|
protected:
|
|
void onActionTriggered( bool isChecked ) override;
|
|
void setupActionLook( QAction* actionToSetup ) override;
|
|
|
|
private:
|
|
void setFormationCellResultAndLegend( Rim3dView* activeView, QString& legendName );
|
|
};
|