Files
ResInsight/ApplicationLibCode/ProjectDataModel/RimDockWindowController.h
T
JJ 82aa009378 Dock system selection improvements and fixes (#14305)
* Make sure we don't trigger another select when a view in the project tree is selected.
* Fix for #14255 and related issues
* Make sure we can close and open a main window, keeping the layout when reopened.
2026-06-24 16:07:21 +02:00

67 lines
2.0 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 "cafPdmChildField.h"
#include "cafPdmField.h"
#include "cafPdmObject.h"
#include "cafPdmPtrField.h"
#include "RiaDefines.h"
class RiuMainWindowBase;
class RimViewWindow;
//==================================================================================================
///
///
//==================================================================================================
class RimDockWindowController : public caf::PdmObject
{
CAF_PDM_HEADER_INIT;
public:
static constexpr int MAIN_WINDOW_ID_UNASSIGNED = -1;
static constexpr int MAIN_WINDOW_ID_3D = 0;
static constexpr int MAIN_WINDOW_ID_PLOTS = 1;
public:
RimDockWindowController();
~RimDockWindowController() override;
void setMainWindowId( int mainId );
void setViewToControl( RimViewWindow* view );
int mainWindowId() const;
void setAsActiveViewer( bool allowSelectionChange );
void updateViewerWidget();
void handleViewerDeletion();
void removeWindowFromDock();
protected:
RimViewWindow* viewPdmObject();
QWidget* viewWidget();
RiuMainWindowBase* getMainWindow();
private:
caf::PdmField<int> m_mainWindowID;
caf::PdmPtrField<RimViewWindow*> m_viewToControl;
};