15 #include "boost/bind.hpp" 61 mFullScreenAction(NULL),
62 mStandard3DViewActions(new QActionGroup(this)),
67 this->setObjectName(
"main_window");
72 this->setCentralWidget(mServices->view()->createLayoutWidget(
this, 0));
76 this->createActions();
78 this->createToolBars();
79 this->setStatusBar(
new StatusBar(mServices->tracking(), mServices->view(), mServices->video()));
87 this->updateWindowTitle();
89 this->setTabPosition(Qt::AllDockWidgetAreas, QTabWidget::North);
91 this->addAsDockWidget(
new PlaybackWidget(mServices->tracking(), mServices->video(), mServices->patient(),
this),
"Browsing");
93 this->addAsDockWidget(
new EraserWidget(mServices->patient(), mServices->view(),
this),
"Properties");
94 this->addAsDockWidget(
new MetricWidget(mServices,
this),
"Utility");
95 this->addAsDockWidget(
new SlicePropertiesWidget(mServices->patient(), mServices->view(),
this),
"Properties");
98 this->addAsDockWidget(
new StreamPropertiesWidget(mServices->patient(), mServices->view(),
this),
"Properties");
99 this->addAsDockWidget(
new TrackPadWidget(mServices->view(),
this),
"Utility");
101 this->addAsDockWidget(
new NavigationWidget(mServices->view(), mServices->tracking(),
this),
"Properties");
102 this->addAsDockWidget(
new ConsoleWidget(
this,
"console_widget",
"Console"),
"Utility");
103 this->addAsDockWidget(
new ConsoleWidget(
this,
"console_widget_2",
"Extra Console"),
"Utility");
105 this->addAsDockWidget(
new FrameTreeWidget(mServices->patient(),
this),
"Browsing");
106 this->addAsDockWidget(
new ToolManagerWidget(mServices->tracking(),
this),
"Debugging");
111 this->addAsDockWidget(
new BrowserWidget(
this, mServices),
"Browsing");
116 this->setupGUIExtenders();
120 popupMenu->setTitle(
"Window");
121 this->menuBar()->insertMenu(mHelpMenuAction, popupMenu);
122 this->menuBar()->setVisible(
settings()->value(
"Gui/showMenuBar").toBool());
132 if (restoreGeometry(
settings()->value(
"mainWindow/geometry").toByteArray()))
138 this->showMaximized();
141 if (
settings()->value(
"gui/fullscreen").toBool())
143 this->setWindowState(this->windowState() | Qt::WindowFullScreen);
149 QMainWindow::changeEvent(event);
151 if (event->type() == QEvent::WindowStateChange)
153 if (mFullScreenAction)
154 mFullScreenAction->setChecked(this->windowState() & Qt::WindowFullScreen);
158 void MainWindow::setupGUIExtenders()
166 mServiceListener->open();
171 std::vector<GUIExtenderService::CategorizedWidget> widgets = service->
createWidgets();
172 for (
unsigned j = 0; j < widgets.size(); ++j)
174 if(!widgets[j].mPlaceInSeparateWindow)
175 mDockWidgets->
addAsDockWidget(widgets[j].mWidget, widgets[j].mCategory, service);
177 this->createActionForWidgetInSeparateWindow(widgets[j].mWidget);
181 for(
unsigned j = 0; j < toolBars.size(); ++j)
199 this->focusInsideDockWidget(sender());
204 this->focusInsideDockWidget(now);
207 void MainWindow::focusInsideDockWidget(QObject *dockWidget)
220 QDockWidget* dw =
dynamic_cast<QDockWidget*
>(dockWidget);
223 if (dw->parent()!=
this)
225 QScrollArea* sa =
dynamic_cast<QScrollArea*
>(dw->widget());
236 QTimer::singleShot(0, sa->widget(), SLOT(setFocus()));
241 mServices->view()->deactivateLayout();
243 mServiceListener.reset();
251 void MainWindow::createActions()
255 mStandard3DViewActions = cameraControl->createStandard3DViewActions();
257 mShowContextSensitiveHelpAction =
new QAction(QIcon(
":/icons/open_icon_library/help-contents-5.png"),
258 "Context-sensitive help",
this);
261 mShowControlPanelAction =
new QAction(
"Show Control Panel",
this);
263 mSecondaryViewLayoutWindowAction =
new QAction(
"Show Secondary View Layout Window",
this);
267 mAboutAction =
new QAction(tr(
"About"),
this);
268 mAboutAction->setStatusTip(tr(
"Show the application's About box"));
269 mPreferencesAction =
new QAction(tr(
"Preferences"),
this);
270 mPreferencesAction->setShortcut(tr(
"Ctrl+,"));
271 mPreferencesAction->setStatusTip(tr(
"Show the preferences dialog"));
273 mFullScreenAction =
new QAction(tr(
"Fullscreen"),
this);
274 mFullScreenAction->setShortcut(tr(
"F11"));
275 mFullScreenAction->setStatusTip(tr(
"Toggle full screen"));
276 mFullScreenAction->setCheckable(
true);
277 mFullScreenAction->setChecked(this->windowState() & Qt::WindowFullScreen);
280 mQuitAction =
new QAction(tr(
"&Quit"),
this);
281 mQuitAction->setShortcut(tr(
"Ctrl+Q"));
282 mQuitAction->setStatusTip(tr(
"Exit the application"));
286 connect(mQuitAction, &QAction::triggered, qApp, &QApplication::quit);
288 mSaveDesktopAction =
new QAction(QIcon(
":/icons/workflow_state_save.png"), tr(
"Save desktop"),
this);
289 mSaveDesktopAction->setToolTip(
"Save desktop for workflow step");
291 mResetDesktopAction =
new QAction(QIcon(
":/icons/workflow_state_revert.png"), tr(
"Reset desktop"),
this);
292 mResetDesktopAction->setToolTip(
"Reset desktop for workflow step");
295 mInteractorStyleActionGroup = mServices->view()->getInteractorStyleActionGroup();
304 this->updateWindowTitle();
307 void MainWindow::updateWindowTitle()
309 QString profileName = mServices->state()->getApplicationStateName();
310 QString versionName = mServices->state()->getVersionName();
312 QString activePatientFolder = mServices->patient()->getActivePatientFolder();
313 if (activePatientFolder.endsWith(
'/'))
314 activePatientFolder.chop(1);
317 if (!activePatientFolder.isEmpty())
319 QFileInfo info(activePatientFolder);
320 patientName = info.completeBaseName();
323 QString format(
"%1 %2 - %3 - %4 (not approved for medical use)");
324 QString title = format
325 .arg(qApp->applicationDisplayName())
329 this->setWindowTitle(title);
334 Desktop desktop = mServices->state()->getActiveDesktop();
337 mServices->view()->setActiveLayout(desktop.
mLayoutUid, 0);
339 mServices->patient()->autoSave();
363 desktop.
mLayoutUid = mServices->view()->getActiveLayout(0);
365 mServices->state()->saveDesktop(desktop);
375 mServices->state()->resetDesktop();
386 this->setWindowState(this->windowState() ^ Qt::WindowFullScreen);
388 settings()->
setValue(
"gui/fullscreen", (this->windowState() & Qt::WindowFullScreen)!=0);
391 void MainWindow::createActionForWidgetInSeparateWindow(QWidget* widget)
393 QString uid = widget->objectName();
394 if(mSecondaryMainWindows.find(uid) == mSecondaryMainWindows.end())
397 QAction* action =
new QAction(widget->windowTitle(),
this);
399 mSecondaryMainWindows[uid] = secondaryMainWindow;
400 mSecondaryMainWindowsActions[uid] = action;
402 connect(action, &QAction::triggered, secondaryMainWindow, &QWidget::show);
404 mFileMenu->addAction(action);
415 mControlPanel->show();
420 if (!mSecondaryViewLayoutWindow)
422 mSecondaryViewLayoutWindow->tryShowOnSecondaryScreen();
427 this->updateWindowTitle();
430 void MainWindow::createMenus()
438 this->menuBar()->setNativeMenuBar(
false);
440 mFileMenu =
new QMenu(tr(
"File"),
this);
441 mWorkflowMenu =
new QMenu(tr(
"Workflow"),
this);
442 mToolMenu =
new QMenu(tr(
"Tracking"),
this);
443 mLayoutMenu =
new QMenu(tr(
"Layouts"),
this);
444 mNavigationMenu =
new QMenu(tr(
"Navigation"),
this);
445 mHelpMenu =
new QMenu(tr(
"Help"),
this);
448 mFileMenu->addAction(mPreferencesAction);
449 this->menuBar()->addMenu(mFileMenu);
450 mFileMenu->addAction(mActions->
getAction(
"NewPatient"));
451 mFileMenu->addAction(mActions->
getAction(
"SaveFile"));
452 mFileMenu->addAction(mActions->
getAction(
"LoadFile"));
453 mFileMenu->addAction(mActions->
getAction(
"LoadFileCopy"));
454 mFileMenu->addAction(mActions->
getAction(
"ClearPatient"));
455 mFileMenu->addSeparator();
456 mFileMenu->addAction(mActions->
getAction(
"ExportPatient"));
457 mFileMenu->addAction(mActions->
getAction(
"AddFilesForImport"));
458 mFileMenu->addSeparator();
459 mFileMenu->addAction(mFullScreenAction);
460 mFileMenu->addAction(mActions->
getAction(
"StartLogConsole"));
461 mFileMenu->addAction(mActions->
getAction(
"ShootScreen"));
462 mFileMenu->addAction(mActions->
getAction(
"ShootWindow"));
463 mFileMenu->addAction(mActions->
getAction(
"RecordFullscreen"));
464 mFileMenu->addSeparator();
465 mFileMenu->addAction(mShowControlPanelAction);
466 mFileMenu->addAction(mSecondaryViewLayoutWindowAction);
468 mFileMenu->addAction(mQuitAction);
471 this->menuBar()->addMenu(mWorkflowMenu);
472 QList<QAction*> actions = mServices->state()->getWorkflowActions()->actions();
473 for (
int i=0; i<actions.size(); ++i)
475 mWorkflowMenu->addAction(actions[i]);
478 mWorkflowMenu->addSeparator();
479 mWorkflowMenu->addAction(mSaveDesktopAction);
480 mWorkflowMenu->addAction(mResetDesktopAction);
483 this->menuBar()->addMenu(mToolMenu);
484 mToolMenu->addAction(mActions->
getAction(
"ConfigureTools"));
485 mToolMenu->addAction(mActions->
getAction(
"InitializeTools"));
486 mToolMenu->addAction(mActions->
getAction(
"TrackingTools"));
487 mToolMenu->addSeparator();
488 mToolMenu->addAction(mActions->
getAction(
"StartStreaming"));
489 mToolMenu->addSeparator();
492 this->menuBar()->addMenu(mLayoutMenu);
493 mLayoutInteractor->connectToMenu(mLayoutMenu);
495 this->menuBar()->addMenu(mNavigationMenu);
496 mNavigationMenu->addAction(mActions->
getAction(
"CenterToImageCenter"));
497 mNavigationMenu->addAction(mActions->
getAction(
"CenterToTooltip"));
498 mNavigationMenu->addAction(mActions->
getAction(
"ShowPointPicker"));
499 mNavigationMenu->addSeparator();
500 mNavigationMenu->addActions(mInteractorStyleActionGroup->actions());
502 mHelpMenuAction = this->menuBar()->addMenu(mHelpMenu);
503 mHelpMenu->addAction(mAboutAction);
504 mHelpMenu->addAction(mActions->
getAction(
"GotoDocumentation"));
505 mHelpMenu->addAction(mShowContextSensitiveHelpAction);
508 void MainWindow::createToolBars()
510 mWorkflowToolBar = this->registerToolBar(
"Workflow");
511 QList<QAction*> actions = mServices->state()->getWorkflowActions()->actions();
512 for (
int i=0; i<actions.size(); ++i)
513 mWorkflowToolBar->addAction(actions[i]);
515 mDataToolBar = this->registerToolBar(
"Data");
516 mDataToolBar->addAction(mActions->
getAction(
"NewPatient"));
517 mDataToolBar->addAction(mActions->
getAction(
"LoadFile"));
518 mDataToolBar->addAction(mActions->
getAction(
"SaveFile"));
519 mDataToolBar->addAction(mActions->
getAction(
"AddFilesForImport"));
521 mToolToolBar = this->registerToolBar(
"Tools");
522 mToolToolBar->addAction(mActions->
getAction(
"TrackingTools"));
523 mToolToolBar->addAction(mActions->
getAction(
"StartStreaming"));
525 mNavigationToolBar = this->registerToolBar(
"Navigation");
526 mNavigationToolBar->addAction(mActions->
getAction(
"CenterToImageCenter"));
527 mNavigationToolBar->addAction(mActions->
getAction(
"CenterToTooltip"));
528 mNavigationToolBar->addAction(mActions->
getAction(
"ShowPointPicker"));
530 mInteractorStyleToolBar = this->registerToolBar(
"InteractorStyle");
531 mInteractorStyleToolBar->addActions(mInteractorStyleActionGroup->actions());
533 mDesktopToolBar = this->registerToolBar(
"Desktop");
534 mDesktopToolBar->addAction(mSaveDesktopAction);
535 mDesktopToolBar->addAction(mResetDesktopAction);
537 mScreenshotToolBar = this->registerToolBar(
"Screenshot");
538 mScreenshotToolBar->addAction(mActions->
getAction(
"ShootScreen"));
539 mScreenshotToolBar->addAction(mActions->
getAction(
"RecordFullscreen"));
541 QToolBar* camera3DViewToolBar = this->registerToolBar(
"Camera 3D Views");
542 camera3DViewToolBar->addActions(mStandard3DViewActions->actions());
544 QToolBar* samplerWidgetToolBar = this->registerToolBar(
"Sampler");
545 samplerWidgetToolBar->addWidget(
new SamplerWidget(mServices->tracking(), mServices->patient(), mServices->spaceProvider(),
this));
547 QToolBar* toolOffsetToolBar = this->registerToolBar(
"Tool Offset");
551 toolOffsetToolBar->addWidget(offsetWidget);
553 QToolBar* helpToolBar = this->registerToolBar(
"Help");
554 helpToolBar->addAction(mShowContextSensitiveHelpAction);
557 QToolBar* MainWindow::registerToolBar(QString name, QString groupname)
559 QToolBar* toolbar =
new QToolBar(name);
560 toolbar->setObjectName(QString(name).
remove(
" ")+
"ToolBar");
568 QString appName = qApp->applicationDisplayName();
570 QString url_license = QString(
"file://%1/License.txt").arg(doc_path);
571 QString url_config = QString(
"file://%1/cxConfigDescription.txt").arg(doc_path);
576 "<p>A Research Platform for Image-Guided Therapy<p>" 577 "<p>%1 is NOT approved for medical use.<p>" 579 "<p><a href=%3> website </a><p>" 580 "<p><a href=%4> license </a><p>" 581 "<p><a href=%5> configuration </a><p>");
583 QMessageBox::about(
this, tr(
"About %1").arg(appName), text
585 .arg(CustusX_VERSION_STRING)
594 PreferencesDialog prefDialog(mServices->view(), mServices->patient(), mServices->state(), mServices->tracking(),
this);
598 void MainWindow::closeEvent(QCloseEvent *event)
600 QMainWindow::closeEvent(event);
604 QDockWidget* MainWindow::addAsDockWidget(QWidget* widget, QString groupname)
void registerToolBar(QToolBar *toolbar, QString groupname="Toolbars")
void dockWidgetVisibilityChanged(bool val)
virtual QMenu * createPopupMenu()
void changeEvent(QEvent *event)
boost::shared_ptr< class CameraControl > CameraControlPtr
Statusbar with extended functionality.
void applicationStateChanged()
void showSecondaryViewLayoutWindowActionSlot()
void focusChanged(QWidget *old, QWidget *now)
void restoreFrom(const Desktop &desktop)
void patientChangedSlot()
static VisServicesPtr create(ctkPluginContext *context)
Experimental class for IPad usage.This detached main window can be moved onto a secondary screen...
void onApplicationStateChangedSlot()
QMenu * createPopupMenu()
void setValue(const QString &key, const QVariant &value)
Experimental class for IPad usage.
void onGUIExtenderServiceAdded(GUIExtenderService *service)
void toggleFullScreenSlot()
void onGUIExtenderServiceRemoved(GUIExtenderService *service)
static QString getWebsiteURL()
QByteArray mMainWindowState
static LogicManager * getInstance()
void showWidget(QString name)
void onGUIExtenderServiceModified(GUIExtenderService *service)
boost::shared_ptr< class DoublePropertyBase > DoublePropertyBasePtr
void onShowContextSentitiveHelp()
Settings * settings()
Shortcut for accessing the settings instance.
Helper class for listening to services being added, modified and removed.
LogicManager * logicManager()
void workflowStateChanged()
Data class for CustusX desktop.
void showControlPanelActionSlot()
QAction * getAction(QString uid)
void owningServiceRemoved(QObject *service)
virtual std::vector< QToolBar * > createToolBars() const
QString mSecondaryLayoutUid
virtual std::vector< CategorizedWidget > createWidgets() const =0
QDockWidget * addAsDockWidget(QWidget *widget, QString groupname, QObject *owningPlugin=NULL)
void onWorkflowStateChangedSlot()
static QString getDocPath()
return path to folder containing documentation files
Set application preferences.
boost::shared_ptr< Audio > AudioPtr
Namespace for all CustusX production code.