#3524 HoloLens : Add toolbar and icons for operations

This commit is contained in:
Magne Sjaastad
2018-10-19 10:08:33 +02:00
parent 1727ab959a
commit 822645e264
13 changed files with 128 additions and 20 deletions

View File

@@ -123,6 +123,7 @@ public:
RiuMessagePanel* messagePanel();
void showProcessMonitorDockPanel();
void setDefaultToolbarVisibility();
protected:
void closeEvent(QCloseEvent* event) override;
@@ -213,12 +214,12 @@ private slots:
void slotViewFromBelow();
void slotScaleChanged(int scaleValue);
void slotDrawStyleChanged(QAction* activatedAction);
void slotToggleHideGridCellsAction(bool);
void slotToggleFaultLabelsAction(bool);
void slotDisableLightingAction(bool);
void slotDrawStyleChanged(QAction* activatedAction);
void slotToggleHideGridCellsAction(bool);
void slotToggleFaultLabelsAction(bool);
void slotDisableLightingAction(bool);
void slotShowWellCellsAction(bool doAdd);
void slotShowWellCellsAction(bool doAdd);
// Debug slots
void slotSnapshotAllViewsToFile();
@@ -267,6 +268,8 @@ private:
QAction* m_drawStyleSurfOnlyAction;
QAction* m_showWellCellsAction;
QToolBar* m_holoLensToolBar;
std::vector<QPointer<QDockWidget> > additionalProjectViews;
bool m_blockSlotSubWindowActivated;