mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-23 15:03:27 -06:00
Renamed files
This commit is contained in:
parent
9bee1b81fc
commit
bf5dae4887
@ -40,9 +40,9 @@ ${CEE_CURRENT_LIST_DIR}RicRangeFilterNewSliceK.h
|
||||
${CEE_CURRENT_LIST_DIR}RicSaveEclipseResultAsInputProperty.h
|
||||
${CEE_CURRENT_LIST_DIR}RicSaveEclipseResultAsInputPropertyExec.h
|
||||
|
||||
${CEE_CURRENT_LIST_DIR}RicImportWellPathsSsihubFeature.h
|
||||
${CEE_CURRENT_LIST_DIR}RicImportWellPathsFileFeature.h
|
||||
${CEE_CURRENT_LIST_DIR}RicImportWellPathsDeleteAllFeature.h
|
||||
${CEE_CURRENT_LIST_DIR}RicWellPathsImportSsihubFeature.h
|
||||
${CEE_CURRENT_LIST_DIR}RicWellPathsImportFileFeature.h
|
||||
${CEE_CURRENT_LIST_DIR}RicWellPathsDeleteAllFeature.h
|
||||
|
||||
# General delete of any object in a child array field
|
||||
${CEE_CURRENT_LIST_DIR}RicDeleteItemExec.h
|
||||
@ -85,9 +85,9 @@ ${CEE_CURRENT_LIST_DIR}RicRangeFilterNewSliceK.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RicSaveEclipseResultAsInputProperty.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RicSaveEclipseResultAsInputPropertyExec.cpp
|
||||
|
||||
${CEE_CURRENT_LIST_DIR}RicImportWellPathsSsihubFeature.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RicImportWellPathsFileFeature.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RicImportWellPathsDeleteAllFeature.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RicWellPathsImportSsihubFeature.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RicWellPathsImportFileFeature.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RicWellPathsDeleteAllFeature.cpp
|
||||
|
||||
# General delete of any object in a child array field
|
||||
${CEE_CURRENT_LIST_DIR}RicDeleteItemExec.cpp
|
||||
|
@ -34,7 +34,7 @@
|
||||
//
|
||||
//##################################################################################################
|
||||
|
||||
#include "RicImportWellPathsDeleteAllFeature.h"
|
||||
#include "RicWellPathsDeleteAllFeature.h"
|
||||
|
||||
#include "RimWellPathCollection.h"
|
||||
|
@ -34,7 +34,7 @@
|
||||
//
|
||||
//##################################################################################################
|
||||
|
||||
#include "RicImportWellPathsFileFeature.h"
|
||||
#include "RicWellPathsImportFileFeature.h"
|
||||
|
||||
#include "RiaApplication.h"
|
||||
#include "RimProject.h"
|
||||
@ -45,13 +45,13 @@
|
||||
|
||||
namespace caf
|
||||
{
|
||||
CAF_CMD_SOURCE_INIT(RicImportWellPathsFileFeature, "RicImportWellPathsFileFeature");
|
||||
CAF_CMD_SOURCE_INIT(RicWellPathsImportFileFeature, "RicWellPathsImportFileFeature");
|
||||
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool RicImportWellPathsFileFeature::isCommandEnabled()
|
||||
bool RicWellPathsImportFileFeature::isCommandEnabled()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -59,7 +59,7 @@ bool RicImportWellPathsFileFeature::isCommandEnabled()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RicImportWellPathsFileFeature::onActionTriggered(bool isChecked)
|
||||
void RicWellPathsImportFileFeature::onActionTriggered(bool isChecked)
|
||||
{
|
||||
// Open dialog box to select well path files
|
||||
RiaApplication* app = RiaApplication::instance();
|
||||
@ -81,7 +81,7 @@ void RicImportWellPathsFileFeature::onActionTriggered(bool isChecked)
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RicImportWellPathsFileFeature::setupActionLook(QAction* actionToSetup)
|
||||
void RicWellPathsImportFileFeature::setupActionLook(QAction* actionToSetup)
|
||||
{
|
||||
actionToSetup->setText("Import &Well Paths from File");
|
||||
actionToSetup->setIcon(QIcon(":/Well.png"));
|
@ -45,7 +45,7 @@ namespace caf
|
||||
//==================================================================================================
|
||||
///
|
||||
//==================================================================================================
|
||||
class RicImportWellPathsFileFeature : public CmdFeature
|
||||
class RicWellPathsImportFileFeature : public CmdFeature
|
||||
{
|
||||
CAF_CMD_HEADER_INIT;
|
||||
protected:
|
@ -34,7 +34,7 @@
|
||||
//
|
||||
//##################################################################################################
|
||||
|
||||
#include "RicImportWellPathsSsihubFeature.h"
|
||||
#include "RicWellPathsImportSsihubFeature.h"
|
||||
|
||||
#include "RiaApplication.h"
|
||||
#include "RiaPreferences.h"
|
||||
@ -50,13 +50,13 @@
|
||||
|
||||
namespace caf
|
||||
{
|
||||
CAF_CMD_SOURCE_INIT(RicImportWellPathsSsihubFeature, "RicImportWellPathsSsihubFeature");
|
||||
CAF_CMD_SOURCE_INIT(RicWellPathsImportSsihubFeature, "RicWellPathsImportSsihubFeature");
|
||||
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool RicImportWellPathsSsihubFeature::isCommandEnabled()
|
||||
bool RicWellPathsImportSsihubFeature::isCommandEnabled()
|
||||
{
|
||||
RiaApplication* app = RiaApplication::instance();
|
||||
if (!app->project())
|
||||
@ -75,7 +75,7 @@ bool RicImportWellPathsSsihubFeature::isCommandEnabled()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RicImportWellPathsSsihubFeature::onActionTriggered(bool isChecked)
|
||||
void RicWellPathsImportSsihubFeature::onActionTriggered(bool isChecked)
|
||||
{
|
||||
RiaApplication* app = RiaApplication::instance();
|
||||
if (!app->project())
|
||||
@ -137,7 +137,7 @@ void RicImportWellPathsSsihubFeature::onActionTriggered(bool isChecked)
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RicImportWellPathsSsihubFeature::setupActionLook(QAction* actionToSetup)
|
||||
void RicWellPathsImportSsihubFeature::setupActionLook(QAction* actionToSetup)
|
||||
{
|
||||
actionToSetup->setText("Import Well Paths from &SSI-hub");
|
||||
actionToSetup->setIcon(QIcon(":/WellCollection.png"));
|
@ -45,7 +45,7 @@ namespace caf
|
||||
//==================================================================================================
|
||||
///
|
||||
//==================================================================================================
|
||||
class RicImportWellPathsSsihubFeature : public CmdFeature
|
||||
class RicWellPathsImportSsihubFeature : public CmdFeature
|
||||
{
|
||||
CAF_CMD_HEADER_INIT;
|
||||
protected:
|
@ -602,8 +602,8 @@ void RimProject::actionsBasedOnSelection(std::vector<QAction*>& actions)
|
||||
}
|
||||
else if (dynamic_cast<RimWellPathCollection*>(uiItem))
|
||||
{
|
||||
actions.push_back(commandManager->action("RicImportWellPathsSsihubFeature"));
|
||||
actions.push_back(commandManager->action("RicImportWellPathsFileFeature"));
|
||||
actions.push_back(commandManager->action("RicWellPathsImportSsihubFeature"));
|
||||
actions.push_back(commandManager->action("RicWellPathsImportFileFeature"));
|
||||
actions.push_back(commandManager->action("RicWellPathsDeleteAllFeature"));
|
||||
}
|
||||
else if (dynamic_cast<RimWellPath*>(uiItem))
|
||||
|
@ -1002,7 +1002,7 @@ void RiuMainWindow::slotImportWellPathsFromFile()
|
||||
{
|
||||
caf::CmdFeatureManager* commandManager = caf::CmdFeatureManager::instance();
|
||||
|
||||
commandManager->action("RicImportWellPathsFileFeature")->trigger();
|
||||
commandManager->action("RicWellPathsImportFileFeature")->trigger();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@ -1958,7 +1958,7 @@ void RiuMainWindow::slotImportWellPathsFromSSIHub()
|
||||
{
|
||||
caf::CmdFeatureManager* commandManager = caf::CmdFeatureManager::instance();
|
||||
|
||||
commandManager->action("RicImportWellPathsSsihubFeature")->trigger();
|
||||
commandManager->action("RicWellPathsImportSsihubFeature")->trigger();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user