mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
212 lines
5.6 KiB
C++
212 lines
5.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2011-2012 Statoil ASA, Ceetron AS
|
|
//
|
|
// 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 <QtGui/QMainWindow>
|
|
#include "qevent.h"
|
|
#include "cafUiTreeModelPdm.h"
|
|
#include <QPointer>
|
|
|
|
class QTreeView;
|
|
class QMdiArea;
|
|
class QFrame;
|
|
class QMdiSubWindow;
|
|
class QComboBox;
|
|
class QLabel;
|
|
class QLineEdit;
|
|
|
|
class RIViewer;
|
|
class RIResultInfoPanel;
|
|
class RIProcessMonitor;
|
|
class RimUiTreeModelPdm;
|
|
|
|
namespace caf
|
|
{
|
|
class UiPropertyCreatorPdm;
|
|
class UiTreeModelPdm;
|
|
class PdmObject;
|
|
class FrameAnimationControl;
|
|
class AnimationToolBar;
|
|
}
|
|
|
|
//==================================================================================================
|
|
//
|
|
//
|
|
//
|
|
//==================================================================================================
|
|
class RIMainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
RIMainWindow();
|
|
static RIMainWindow* instance();
|
|
|
|
void initializeGuiNewProjectLoaded();
|
|
void cleanupGuiBeforeProjectClose();
|
|
|
|
void refreshGuiLightweight();
|
|
void refreshToolbars();
|
|
|
|
void removeViewer( RIViewer* viewer );
|
|
void addViewer(RIViewer* viewer);
|
|
void setActiveViewer(RIViewer* subWindow);
|
|
|
|
void setResultInfo(const QString& info) const;
|
|
|
|
void refreshAnimationActions();
|
|
|
|
RimUiTreeModelPdm* uiPdmModel() { return m_treeModelPdm;}
|
|
|
|
RIProcessMonitor* processMonitor();
|
|
|
|
protected:
|
|
virtual void closeEvent(QCloseEvent* event);
|
|
|
|
private:
|
|
void createActions();
|
|
void createMenus();
|
|
void createToolBars();
|
|
void createDockPanels();
|
|
void saveWinGeoAndDockToolBarLayout();
|
|
void loadWinGeoAndDockToolBarLayout();
|
|
|
|
bool checkForDocumentModifications();
|
|
|
|
void updateMRUList(const QString &fileName, bool remove = false);
|
|
|
|
QMdiSubWindow* findMdiSubWindow(RIViewer* viewer);
|
|
|
|
private:
|
|
static RIMainWindow* sm_mainWindowInstance;
|
|
|
|
QByteArray m_initialDockAndToolbarLayout; // Initial dock window and toolbar layout, used to reset GUI
|
|
|
|
private:
|
|
// File actions
|
|
QAction* m_openAction;
|
|
QAction* m_openProjectAction;
|
|
QAction* m_openLastUsedProjectAction;
|
|
QAction* m_mockModelAction;
|
|
QAction* m_mockResultsModelAction;
|
|
QAction* m_mockLargeResultsModelAction;
|
|
QAction* m_saveProjectAction;
|
|
QAction* m_saveProjectAsAction;
|
|
QAction* m_closeAction;
|
|
QAction* m_exitAction;
|
|
|
|
// Edit actions
|
|
QAction* m_editPreferences;
|
|
|
|
// View actions
|
|
QAction* m_viewFromNorth;
|
|
QAction* m_viewFromSouth;
|
|
QAction* m_viewFromEast;
|
|
QAction* m_viewFromWest;
|
|
QAction* m_viewFromAbove;
|
|
QAction* m_viewFromBelow;
|
|
QAction* m_zoomAll;
|
|
|
|
// Debug actions
|
|
QAction* m_debugUseShaders;
|
|
QAction* m_performanceHud;
|
|
|
|
// Help actions
|
|
QAction* m_aboutAction;
|
|
|
|
// Animation
|
|
caf::AnimationToolBar* m_animationToolBar;
|
|
|
|
// Toolbars
|
|
QToolBar* m_viewToolBar;
|
|
QToolBar* m_standardToolBar;
|
|
|
|
|
|
QFrame* m_CentralFrame;
|
|
QMdiArea* m_mdiArea;
|
|
RIViewer* m_mainViewer;
|
|
RIResultInfoPanel* m_resultInfoPanel;
|
|
RIProcessMonitor* m_processMonitor;
|
|
|
|
QMenu* m_windowMenu;
|
|
|
|
|
|
// Menu and action slots
|
|
private slots:
|
|
|
|
// File slots
|
|
void slotOpenFile();
|
|
void slotOpenProject();
|
|
void slotOpenLastUsedProject();
|
|
|
|
void slotMockModel();
|
|
void slotMockResultsModel();
|
|
void slotMockLargeResultsModel();
|
|
|
|
void slotSaveProject();
|
|
void slotSaveProjectAs();
|
|
void slotCloseProject();
|
|
|
|
void slotRefreshFileActions();
|
|
|
|
// Edit slots
|
|
void slotRefreshEditActions();
|
|
void slotEditPreferences();
|
|
|
|
// View slots
|
|
void slotRefreshViewActions();
|
|
void slotViewFromNorth();
|
|
void slotViewFromSouth();
|
|
void slotViewFromEast();
|
|
void slotViewFromWest();
|
|
void slotViewFromAbove();
|
|
void slotViewFromBelow();
|
|
void slotZoomAll();
|
|
|
|
// Debug slots
|
|
void slotRefreshDebugActions();
|
|
void slotUseShaders(bool enable);
|
|
void slotShowPerformanceInfo(bool enable);
|
|
|
|
// Windows slots
|
|
void slotBuildWindowActions();
|
|
|
|
// Help slots
|
|
void slotAbout();
|
|
|
|
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:
|
|
QTreeView* m_treeView;
|
|
caf::UiPropertyCreatorPdm* m_uiManagerPdm;
|
|
RimUiTreeModelPdm* m_treeModelPdm;
|
|
caf::PdmObject* m_pdmRoot;
|
|
|
|
|
|
};
|