-
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.
Merge pull request #11952 from OPM/polygon_updates
Polygon command updates
- Loading branch information
Showing
19 changed files
with
288 additions
and
107 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
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
74 changes: 74 additions & 0 deletions
74
ApplicationLibCode/Commands/PolygonCommands/RicBasicPolygonFeature.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,74 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// 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 "RicBasicPolygonFeature.h" | ||
|
||
#include "Polygons/RimPolygon.h" | ||
#include "Polygons/RimPolygonInView.h" | ||
|
||
#include "cafSelectionManager.h" | ||
#include "cafSelectionManagerTools.h" | ||
|
||
#include <set> | ||
|
||
//-------------------------------------------------------------------------------------------------- | ||
/// | ||
//-------------------------------------------------------------------------------------------------- | ||
RicBasicPolygonFeature::RicBasicPolygonFeature( bool multiSelectSupported ) | ||
: m_multiSelectSupported( multiSelectSupported ) | ||
{ | ||
} | ||
|
||
//-------------------------------------------------------------------------------------------------- | ||
/// | ||
//-------------------------------------------------------------------------------------------------- | ||
bool RicBasicPolygonFeature::isCommandEnabled() const | ||
{ | ||
auto polygons = selectedPolygons(); | ||
|
||
return m_multiSelectSupported ? polygons.size() > 0 : polygons.size() == 1; | ||
} | ||
|
||
//-------------------------------------------------------------------------------------------------- | ||
/// | ||
//-------------------------------------------------------------------------------------------------- | ||
std::vector<RimPolygon*> RicBasicPolygonFeature::selectedPolygons() const | ||
{ | ||
std::set<RimPolygon*> uniquePolygons; | ||
|
||
auto polygons = caf::selectedObjectsByType<RimPolygon*>(); | ||
auto polygonivs = caf::selectedObjectsByType<RimPolygonInView*>(); | ||
for ( auto piv : polygonivs ) | ||
{ | ||
polygons.push_back( piv->polygon() ); | ||
} | ||
|
||
// make sure we avoid duplicates | ||
for ( auto p : polygons ) | ||
{ | ||
uniquePolygons.insert( p ); | ||
} | ||
|
||
std::vector<RimPolygon*> returnPolygons; | ||
for ( auto p : uniquePolygons ) | ||
{ | ||
returnPolygons.push_back( p ); | ||
} | ||
|
||
return returnPolygons; | ||
} |
41 changes: 41 additions & 0 deletions
41
ApplicationLibCode/Commands/PolygonCommands/RicBasicPolygonFeature.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,41 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// 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" | ||
|
||
#include <vector> | ||
|
||
class RimPolygon; | ||
|
||
//================================================================================================== | ||
/// | ||
//================================================================================================== | ||
class RicBasicPolygonFeature : public caf::CmdFeature | ||
{ | ||
public: | ||
RicBasicPolygonFeature( bool multiSelectSupported ); | ||
|
||
protected: | ||
std::vector<RimPolygon*> selectedPolygons() const; | ||
bool isCommandEnabled() const override; | ||
|
||
private: | ||
bool m_multiSelectSupported; | ||
}; |
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
Oops, something went wrong.