-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
268 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
134 changes: 134 additions & 0 deletions
134
ApplicationLibCode/Commands/RicNewViewForGridEnsembleFeature.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
///////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Copyright (C) 2024- Equinor 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. | ||
// | ||
///////////////////////////////////////////////////////////////////////////////// | ||
|
||
#include "RicNewViewForGridEnsembleFeature.h" | ||
|
||
#include "RiaLogging.h" | ||
|
||
#include "Rim3dView.h" | ||
#include "RimEclipseCase.h" | ||
#include "RimEclipseCaseEnsemble.h" | ||
#include "RimEclipseContourMapView.h" | ||
#include "RimEclipseView.h" | ||
#include "RimGeoMechCase.h" | ||
#include "RimGeoMechView.h" | ||
|
||
#include "Riu3DMainWindowTools.h" | ||
|
||
#include "cafSelectionManager.h" | ||
|
||
#include <QAction> | ||
|
||
CAF_CMD_SOURCE_INIT( RicNewViewForGridEnsembleFeature, "RicNewViewForGridEnsembleFeature" ); | ||
|
||
//-------------------------------------------------------------------------------------------------- | ||
/// | ||
//-------------------------------------------------------------------------------------------------- | ||
void RicNewViewForGridEnsembleFeature::addView( RimEclipseCaseEnsemble* eclipseCaseEnsemble ) | ||
{ | ||
std::vector<RimEclipseCase*> cases = eclipseCaseEnsemble->cases(); | ||
if ( cases.empty() ) return; | ||
|
||
bool addToViews = false; | ||
RimEclipseView* newView = cases[0]->createAndAddReservoirView( addToViews ); | ||
|
||
if ( newView ) | ||
{ | ||
eclipseCaseEnsemble->addView( newView ); | ||
eclipseCaseEnsemble->updateConnectedEditors(); | ||
|
||
Riu3DMainWindowTools::setExpanded( newView ); | ||
|
||
// Select the new view to make sure RiaApplication::setActiveReservoirView() is called | ||
Riu3DMainWindowTools::selectAsCurrentItem( newView ); | ||
} | ||
} | ||
|
||
//-------------------------------------------------------------------------------------------------- | ||
/// | ||
//-------------------------------------------------------------------------------------------------- | ||
bool RicNewViewForGridEnsembleFeature::isCommandEnabled() const | ||
{ | ||
return selectedEclipseCaseEnsemble() != nullptr; | ||
} | ||
|
||
//-------------------------------------------------------------------------------------------------- | ||
/// | ||
//-------------------------------------------------------------------------------------------------- | ||
void RicNewViewForGridEnsembleFeature::onActionTriggered( bool isChecked ) | ||
{ | ||
RimEclipseCaseEnsemble* eclipseCaseEnsemble = selectedEclipseCaseEnsemble(); | ||
addView( eclipseCaseEnsemble ); | ||
} | ||
|
||
//-------------------------------------------------------------------------------------------------- | ||
/// | ||
//-------------------------------------------------------------------------------------------------- | ||
void RicNewViewForGridEnsembleFeature::setupActionLook( QAction* actionToSetup ) | ||
{ | ||
actionToSetup->setText( "New View" ); | ||
actionToSetup->setIcon( QIcon( ":/3DView16x16.png" ) ); | ||
} | ||
|
||
//-------------------------------------------------------------------------------------------------- | ||
/// | ||
//-------------------------------------------------------------------------------------------------- | ||
// Rim3dView* RicNewViewForGridEnsembleFeature::createReservoirView( RimEclipseCase* eclipseCase, RimGeoMechCase* geomCase ) | ||
// { | ||
// RimGridView* insertedView = nullptr; | ||
|
||
// if ( eclipseCase ) | ||
// { | ||
// insertedView = eclipseCase->createAndAddReservoirView(); | ||
// } | ||
// else if ( geomCase ) | ||
// { | ||
// insertedView = geomCase->createAndAddReservoirView(); | ||
// } | ||
|
||
// // Must be run before buildViewItems, as wells are created in this function | ||
// if ( insertedView ) insertedView->loadDataAndUpdate(); | ||
|
||
// if ( eclipseCase ) | ||
// { | ||
// eclipseCase->updateConnectedEditors(); | ||
// } | ||
|
||
// if ( geomCase ) | ||
// { | ||
// geomCase->updateConnectedEditors(); | ||
// } | ||
|
||
// return insertedView; | ||
// } | ||
|
||
//-------------------------------------------------------------------------------------------------- | ||
/// | ||
//-------------------------------------------------------------------------------------------------- | ||
RimEclipseCaseEnsemble* RicNewViewForGridEnsembleFeature::selectedEclipseCaseEnsemble() | ||
{ | ||
std::vector<RimEclipseCaseEnsemble*> selection; | ||
caf::SelectionManager::instance()->objectsByType( &selection ); | ||
|
||
if ( !selection.empty() ) | ||
{ | ||
return selection[0]; | ||
} | ||
|
||
return nullptr; | ||
} |
42 changes: 42 additions & 0 deletions
42
ApplicationLibCode/Commands/RicNewViewForGridEnsembleFeature.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
///////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Copyright (C) 2024- Equinor 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 RimEclipseCaseEnsemble; | ||
class RimEclipseView; | ||
|
||
//================================================================================================== | ||
/// | ||
//================================================================================================== | ||
class RicNewViewForGridEnsembleFeature : public caf::CmdFeature | ||
{ | ||
CAF_CMD_HEADER_INIT; | ||
|
||
public: | ||
static void addView( RimEclipseCaseEnsemble* eclipseCaseEnsemble ); | ||
|
||
protected: | ||
bool isCommandEnabled() const override; | ||
void onActionTriggered( bool isChecked ) override; | ||
void setupActionLook( QAction* actionToSetup ) override; | ||
|
||
static RimEclipseCaseEnsemble* selectedEclipseCaseEnsemble(); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters