ResInsight/ApplicationLibCode/UserInterface/RiuMainWindowBase.h
Magne Sjaastad eb0b02ae46 #9935 Avoid storing dock layout if window never has been visible
Do not save the state if the window never has been visible. This will write out a state that is not valid.
2024-09-12 09:16:28 +02:00

165 lines
5.4 KiB
C++

/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2016 Statoil 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 <QByteArray>
#include <QMainWindow>
#include "cafPdmUiDragDropInterface.h"
#include "ads_globals.h"
#include <memory>
#include <vector>
class RiuMdiArea;
struct RimMdiWindowGeometry;
class RiuMdiArea;
namespace ads
{
class CDockManager;
class CDockAreaWidget;
class CDockWidget;
} // namespace ads
namespace caf
{
class PdmObject;
class PdmUiTreeView;
class PdmUiItem;
class PdmUiPropertyView;
} // namespace caf
class QAction;
class QMdiArea;
class QMdiSubWindow;
class QUndoView;
//==================================================================================================
///
//==================================================================================================
class RiuMainWindowBase : public QMainWindow
{
Q_OBJECT
public:
RiuMainWindowBase();
~RiuMainWindowBase() override;
virtual QString mainWindowName() = 0;
QMdiSubWindow* createViewWindow();
virtual void removeViewer( QWidget* viewer ) = 0;
virtual void initializeViewer( QMdiSubWindow* viewWindow, QWidget* viewWidget, const RimMdiWindowGeometry& windowsGeometry ) = 0;
virtual void setActiveViewer( QWidget* subWindow ) = 0;
virtual QMdiSubWindow* findMdiSubWindow( QWidget* viewer ) = 0;
RimMdiWindowGeometry windowGeometryForViewer( QWidget* viewer );
void loadWinGeoAndDockToolBarLayout();
void saveWinGeoAndDockToolBarLayout();
void showWindow();
std::vector<caf::PdmUiTreeView*> projectTreeViews();
caf::PdmUiTreeView* projectTreeView( int treeId );
caf::PdmUiTreeView* getTreeViewWithItem( const caf::PdmUiItem* item );
void setExpanded( const caf::PdmUiItem* uiItem, bool expanded = true );
void selectAsCurrentItem( const caf::PdmObject* object, bool allowActiveViewChange = true );
void toggleItemInSelection( const caf::PdmObject* object, bool allowActiveViewChange = true );
void enableShowFirstVisibleMdiWindowMaximized( bool enable );
void setBlockSubWindowActivatedSignal( bool block );
bool isBlockingSubWindowActivatedSignal() const;
void setBlockViewSelectionOnSubWindowActivated( bool block );
bool isBlockingViewSelectionOnSubWindowActivated() const;
ads::CDockManager* dockManager() const;
RiuMdiArea* mdiArea();
protected:
void createTreeViews( int numberOfTrees );
void removeViewerFromMdiArea( RiuMdiArea* mdiArea, QWidget* viewer );
void initializeSubWindow( RiuMdiArea* mdiArea, QMdiSubWindow* mdiSubWindow, const QPoint& subWindowPos, const QSize& subWindowSize );
void restoreTreeViewStates( QString treeStateString, QString treeIndexString );
ads::CDockAreaWidget* addTabbedWidgets( std::vector<ads::CDockWidget*> widgets,
ads::DockWidgetArea whereToDock,
ads::CDockAreaWidget* dockInside = nullptr );
void addDefaultEntriesToWindowsMenu();
virtual QStringList defaultDockStateNames() = 0;
virtual QStringList windowsMenuFeatureNames() = 0;
void showEvent( QShowEvent* event ) override;
protected slots:
void slotDockWidgetToggleViewActionTriggered();
void slotRefreshHelpActions();
void slotRedo();
void slotUndo();
void slotRefreshUndoRedoActions();
void setDefaultDockLayout();
void setDockLayout();
void deleteDockLayout();
void saveDockLayout();
void exportDockLayout();
protected:
bool m_allowActiveViewChangeFromSelection; // To be used in selectedObjectsChanged() to control
// whether to select the corresponding active view or not
QAction* m_undoAction;
QAction* m_redoAction;
QUndoView* m_undoView;
RiuMdiArea* m_mdiArea;
QMenu* m_windowMenu;
const int DOCKSTATE_VERSION = 3;
QByteArray m_lastDockState;
std::vector<caf::PdmUiTreeView*> m_projectTreeViews;
std::vector<std::shared_ptr<caf::PdmUiPropertyView>> m_propertyViews;
private:
QString registryFolderName();
std::vector<std::unique_ptr<caf::PdmUiDragDropInterface>> m_dragDropInterfaces;
bool m_showFirstVisibleWindowMaximized;
bool m_blockSubWindowActivation;
bool m_blockSubWindowProjectTreeSelection;
bool m_hasBeenVisible;
ads::CDockManager* m_dockManager;
};