Files
ResInsight/ApplicationCode/UserInterface/RiuMainWindow.h
T

304 lines
8.9 KiB
C++
Raw Normal View History

2012-05-18 09:45:23 +02:00
/////////////////////////////////////////////////////////////////////////////////
//
2014-09-23 15:04:57 +02:00
// Copyright (C) 2011- Statoil ASA
// Copyright (C) 2013- Ceetron Solutions AS
// Copyright (C) 2011-2012 Ceetron AS
2012-05-18 09:45:23 +02:00
//
// 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 "cafUiTreeModelPdm.h"
#include <QMainWindow>
#include <QEvent>
2012-05-18 09:45:23 +02:00
#include <QPointer>
class QTreeView;
class QMdiArea;
class QFrame;
class QMdiSubWindow;
class QComboBox;
class QLabel;
class QLineEdit;
2012-06-26 16:10:41 +02:00
class QItemSelection;
2013-04-18 15:10:57 +02:00
class QActionGroup;
2013-04-26 11:49:37 +02:00
class QSpinBox;
2012-05-18 09:45:23 +02:00
class RiuViewer;
class RiuResultInfoPanel;
class RiuProcessMonitor;
2012-05-18 09:45:23 +02:00
class RimUiTreeModelPdm;
2013-04-19 13:20:46 +02:00
class RimUiTreeView;
class RimCase;
2012-05-18 09:45:23 +02:00
namespace caf
{
class UiPropertyCreatorPdm;
class UiTreeModelPdm;
class PdmObject;
class FrameAnimationControl;
class AnimationToolBar;
2012-06-26 16:10:41 +02:00
class PdmUiPropertyView;
2012-05-18 09:45:23 +02:00
}
namespace ssihub
{
class Interface;
}
2012-05-18 09:45:23 +02:00
//==================================================================================================
//
//
//
//==================================================================================================
class RiuMainWindow : public QMainWindow
2012-05-18 09:45:23 +02:00
{
Q_OBJECT
public:
RiuMainWindow();
static RiuMainWindow* instance();
2012-05-18 09:45:23 +02:00
void initializeGuiNewProjectLoaded();
void cleanupGuiBeforeProjectClose();
void removeViewer( RiuViewer* viewer );
void addViewer(RiuViewer* viewer);
void setActiveViewer(RiuViewer* subWindow);
2012-05-18 09:45:23 +02:00
void setResultInfo(const QString& info) const;
void refreshAnimationActions();
2013-04-26 11:49:37 +02:00
void updateScaleValue();
2012-05-18 09:45:23 +02:00
RimUiTreeModelPdm* uiPdmModel() { return m_treeModelPdm;}
RiuProcessMonitor* processMonitor();
2012-05-18 09:45:23 +02:00
void hideAllDockWindows();
void loadWinGeoAndDockToolBarLayout();
void setCurrentObjectInTreeView(caf::PdmObject* object);
void selectedCases(std::vector<RimCase*>& cases);
void setDefaultWindowSize();
void appendActionsContextMenuForPdmObject(caf::PdmObject* pdmObject, QMenu* menu);
void refreshDrawStyleActions();
void setExpanded(const caf::PdmObject* pdmObject, bool expanded);
2012-05-18 09:45:23 +02:00
protected:
virtual void closeEvent(QCloseEvent* event);
private:
void createActions();
void createMenus();
void createToolBars();
void createDockPanels();
void saveWinGeoAndDockToolBarLayout();
bool checkForDocumentModifications();
2014-07-23 12:22:57 +02:00
void updateRecentFileActions();
void addRecentFiles(const QString& file);
void removeRecentFiles(const QString& file);
2012-05-18 09:45:23 +02:00
QMdiSubWindow* findMdiSubWindow(RiuViewer* viewer);
2012-05-18 09:45:23 +02:00
2013-04-19 13:20:46 +02:00
void storeTreeViewState();
void restoreTreeViewState();
2012-05-18 09:45:23 +02:00
private:
static RiuMainWindow* sm_mainWindowInstance;
2012-05-18 09:45:23 +02:00
QByteArray m_initialDockAndToolbarLayout; // Initial dock window and toolbar layout, used to reset GUI
private:
// File actions
2013-10-18 16:23:31 +02:00
QAction* m_importEclipseCaseAction;
QAction* m_importInputEclipseFileAction;
2015-04-20 09:02:33 +02:00
QAction* m_importGeoMechCaseAction;
2013-02-21 16:46:34 +01:00
QAction* m_openMultipleEclipseCasesAction;
2012-05-18 09:45:23 +02:00
QAction* m_openProjectAction;
QAction* m_openLastUsedProjectAction;
2013-06-18 11:56:51 +02:00
QAction* m_importWellPathsFromFileAction;
QAction* m_importWellPathsFromSSIHubAction;
2012-05-18 09:45:23 +02:00
QAction* m_saveProjectAction;
QAction* m_saveProjectAsAction;
2013-04-17 10:59:34 +02:00
QAction* m_closeProjectAction;
2012-05-18 09:45:23 +02:00
QAction* m_exitAction;
2014-07-23 12:22:57 +02:00
// Recent files
enum { MaxRecentFiles = 5 };
QAction* m_recentFilesSeparatorAction;
QMenu* m_recentFilesMenu;
QAction* m_recentFileActions[MaxRecentFiles];
2012-05-18 09:45:23 +02:00
// Edit actions
QAction* m_editPreferences;
QAction* m_newPropertyView;
2012-05-18 09:45:23 +02:00
// View actions
QAction* m_viewFromNorth;
QAction* m_viewFromSouth;
QAction* m_viewFromEast;
QAction* m_viewFromWest;
QAction* m_viewFromAbove;
QAction* m_viewFromBelow;
QAction* m_zoomAll;
// Mock actions
QAction* m_mockModelAction;
QAction* m_mockResultsModelAction;
QAction* m_mockLargeResultsModelAction;
QAction* m_mockModelCustomizedAction;
QAction* m_mockInputModelAction;
QAction* m_snapshotToFile;
QAction* m_snapshotToClipboard;
QAction* m_snapshotAllViewsToFile;
2012-05-18 09:45:23 +02:00
QAction* m_createCommandObject;
QAction* m_showRegressionTestDialog;
QAction* m_executePaintEventPerformanceTest;
2012-05-18 09:45:23 +02:00
// Help actions
QAction* m_aboutAction;
2013-08-08 11:09:18 +02:00
QAction* m_commandLineHelpAction;
2013-10-24 10:46:57 +02:00
QAction* m_openUsersGuideInBrowserAction;
2012-05-18 09:45:23 +02:00
// Animation
caf::AnimationToolBar* m_animationToolBar;
// Toolbars
QToolBar* m_viewToolBar;
QToolBar* m_standardToolBar;
2013-04-17 10:59:34 +02:00
QToolBar* m_snapshotToolbar;
2012-05-18 09:45:23 +02:00
QFrame* m_CentralFrame;
QMdiArea* m_mdiArea;
RiuViewer* m_mainViewer;
RiuResultInfoPanel* m_resultInfoPanel;
RiuProcessMonitor* m_processMonitor;
2012-05-18 09:45:23 +02:00
QMenu* m_windowMenu;
// Menu and action slots
private slots:
// File slots
2013-10-18 16:23:31 +02:00
void slotImportEclipseCase();
void slotImportInputEclipseFiles();
2015-04-20 09:02:33 +02:00
void slotImportGeoMechModel();
2013-02-21 16:46:34 +01:00
void slotOpenMultipleCases();
2012-05-18 09:45:23 +02:00
void slotOpenProject();
void slotOpenLastUsedProject();
2013-06-18 11:56:51 +02:00
void slotImportWellPathsFromFile();
void slotImportWellPathsFromSSIHub();
2012-05-18 09:45:23 +02:00
void slotSaveProject();
void slotSaveProjectAs();
void slotCloseProject();
2014-07-23 12:22:57 +02:00
void slotOpenRecentFile();
2012-05-18 09:45:23 +02:00
void slotRefreshFileActions();
// Edit slots
void slotRefreshEditActions();
void slotEditPreferences();
void slotNewObjectPropertyView();
2012-05-18 09:45:23 +02:00
// View slots
void slotRefreshViewActions();
void slotViewFromNorth();
void slotViewFromSouth();
void slotViewFromEast();
void slotViewFromWest();
void slotViewFromAbove();
void slotViewFromBelow();
void slotZoomAll();
2013-04-26 11:49:37 +02:00
void slotScaleChanged(int scaleValue);
2012-05-18 09:45:23 +02:00
2013-04-18 15:10:57 +02:00
void slotDrawStyleChanged(QAction* activatedAction);
void slotToggleFaultsAction(bool);
void slotToggleFaultLabelsAction(bool);
void slotAddWellCellsToRangeFilterAction(bool doAdd);
2013-04-18 15:10:57 +02:00
2012-05-18 09:45:23 +02:00
// Debug slots
void slotUseShaders(bool enable);
void slotShowPerformanceInfo(bool enable);
void slotSnapshotToFile();
void slotSnapshotToClipboard();
void slotSnapshotAllViewsToFile();
void slotCreateCommandObject();
void slotShowRegressionTestDialog();
void slotExecutePaintEventPerformanceTest();
// Mock models
void slotMockModel();
void slotMockResultsModel();
void slotMockLargeResultsModel();
void slotMockModelCustomized();
void slotInputMockModel();
2012-05-18 09:45:23 +02:00
// Windows slots
void slotBuildWindowActions();
// Help slots
void slotAbout();
2013-08-08 11:09:18 +02:00
void slotShowCommandLineHelp();
2013-10-24 10:46:57 +02:00
void slotOpenUsersGuideInBrowserAction();
2012-05-18 09:45:23 +02:00
void slotSubWindowActivated(QMdiSubWindow* subWindow);
void slotCurrentChanged(const QModelIndex & current, const QModelIndex & previous);
// Animation slots
void slotSetCurrentFrame(int frameIndex);
void slotFramerateChanged(double frameRate);
// Pdm System :
public:
void setPdmRoot(caf::PdmObject* pdmRoot);
private:
2013-04-19 13:20:46 +02:00
RimUiTreeView* m_treeView;
2012-06-26 16:10:41 +02:00
RimUiTreeModelPdm* m_treeModelPdm;
caf::PdmObject* m_pdmRoot;
caf::PdmUiPropertyView* m_pdmUiPropertyView;
2013-04-17 10:59:34 +02:00
2013-04-26 11:49:37 +02:00
QSpinBox* m_scaleFactor;
2013-04-18 15:10:57 +02:00
QActionGroup* m_dsActionGroup;
QAction* m_drawStyleToggleFaultsAction;
QAction* m_toggleFaultsLabelAction;
2013-04-18 15:10:57 +02:00
QAction* m_drawStyleLinesAction;
QAction* m_drawStyleLinesSolidAction;
QAction* m_drawStyleFaultLinesSolidAction;
2013-04-18 15:10:57 +02:00
QAction* m_drawStyleSurfOnlyAction;
QAction* m_addWellCellsToRangeFilterAction;
2013-04-17 10:59:34 +02:00
std::vector<QPointer<QDockWidget> > additionalProjectTrees;
std::vector<QPointer<QDockWidget> > additionalPropertyEditors;
2012-05-18 09:45:23 +02:00
};