mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 13:47:12 -05:00
The Data Analytics folder is built in RimEclipseCase::defineUiTreeOrdering and is hidden while the fault distance collection is empty. Adding the first result only refreshed the view (or the collection itself), not the case, so the case tree ordering was never re-run and the folder stayed hidden until an unrelated event rebuilt the tree. Refresh the owner case from the collection whenever items change, mirroring the RimDataFilterCollection precedent. onItemsChanged adds the folder when the first result appears, and onChildDeleted removes it when the last result is deleted.
52 lines
1.7 KiB
C++
52 lines
1.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2026- 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 "cafPdmObjectCollection.h"
|
|
|
|
#include <QString>
|
|
|
|
class RimFaultDistance;
|
|
|
|
namespace caf
|
|
{
|
|
class CmdFeatureMenuBuilder;
|
|
}
|
|
|
|
//==================================================================================================
|
|
///
|
|
//==================================================================================================
|
|
class RimFaultDistanceCollection : public caf::PdmObjectCollection<RimFaultDistance>
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
RimFaultDistanceCollection();
|
|
|
|
RimFaultDistance* addResult();
|
|
QString nextDefaultName() const;
|
|
|
|
private:
|
|
void defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, QString uiConfigName ) override;
|
|
void appendMenuItems( caf::CmdFeatureMenuBuilder& menuBuilder ) const override;
|
|
|
|
void onItemsChanged() override;
|
|
void onChildDeleted( caf::PdmChildArrayFieldHandle* childArray, std::vector<caf::PdmObjectHandle*>& referringObjects ) override;
|
|
};
|