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();
362 desktop.
mLayoutUid = mServices->view()->getActiveLayout(0);
364 mServices->state()->saveDesktop(desktop);
374 mServices->state()->resetDesktop();
385 this->setWindowState(this->windowState() ^ Qt::WindowFullScreen);
387 settings()->
setValue(
"gui/fullscreen", (this->windowState() & Qt::WindowFullScreen)!=0);
390 void MainWindow::createActionForWidgetInSeparateWindow(QWidget* widget)
392 QString uid = widget->objectName();
393 if(mSecondaryMainWindows.find(uid) == mSecondaryMainWindows.end())
396 QAction* action =
new QAction(widget->windowTitle(),
this);
398 mSecondaryMainWindows[uid] = secondaryMainWindow;
399 mSecondaryMainWindowsActions[uid] = action;
401 connect(action, &QAction::triggered, secondaryMainWindow, &QWidget::show);
403 mFileMenu->addAction(action);
414 mControlPanel->show();
419 if (!mSecondaryViewLayoutWindow)
421 mSecondaryViewLayoutWindow->tryShowOnSecondaryScreen();
426 this->updateWindowTitle();
429 void MainWindow::createMenus()
437 this->menuBar()->setNativeMenuBar(
false);
439 mFileMenu =
new QMenu(tr(
"File"),
this);
440 mWorkflowMenu =
new QMenu(tr(
"Workflow"),
this);
441 mToolMenu =
new QMenu(tr(
"Tracking"),
this);
442 mLayoutMenu =
new QMenu(tr(
"Layouts"),
this);
443 mNavigationMenu =
new QMenu(tr(
"Navigation"),
this);
444 mHelpMenu =
new QMenu(tr(
"Help"),
this);
447 mFileMenu->addAction(mPreferencesAction);
448 this->menuBar()->addMenu(mFileMenu);
449 mFileMenu->addAction(mActions->
getAction(
"NewPatient"));
450 mFileMenu->addAction(mActions->
getAction(
"SaveFile"));
451 mFileMenu->addAction(mActions->
getAction(
"LoadFile"));
452 mFileMenu->addAction(mActions->
getAction(
"LoadFileCopy"));
453 mFileMenu->addAction(mActions->
getAction(
"ClearPatient"));
454 mFileMenu->addSeparator();
455 mFileMenu->addAction(mActions->
getAction(
"ExportPatient"));
456 mFileMenu->addAction(mActions->
getAction(
"ImportData"));
457 mFileMenu->addSeparator();
458 mFileMenu->addAction(mFullScreenAction);
459 mFileMenu->addAction(mActions->
getAction(
"StartLogConsole"));
460 mFileMenu->addAction(mActions->
getAction(
"ShootScreen"));
461 mFileMenu->addAction(mActions->
getAction(
"ShootWindow"));
462 mFileMenu->addAction(mActions->
getAction(
"RecordFullscreen"));
463 mFileMenu->addSeparator();
464 mFileMenu->addAction(mShowControlPanelAction);
465 mFileMenu->addAction(mSecondaryViewLayoutWindowAction);
467 mFileMenu->addAction(mQuitAction);
470 this->menuBar()->addMenu(mWorkflowMenu);
471 QList<QAction*> actions = mServices->state()->getWorkflowActions()->actions();
472 for (
int i=0; i<actions.size(); ++i)
474 mWorkflowMenu->addAction(actions[i]);
477 mWorkflowMenu->addSeparator();
478 mWorkflowMenu->addAction(mSaveDesktopAction);
479 mWorkflowMenu->addAction(mResetDesktopAction);
482 this->menuBar()->addMenu(mToolMenu);
483 mToolMenu->addAction(mActions->
getAction(
"ConfigureTools"));
484 mToolMenu->addAction(mActions->
getAction(
"InitializeTools"));
485 mToolMenu->addAction(mActions->
getAction(
"TrackingTools"));
486 mToolMenu->addSeparator();
487 mToolMenu->addAction(mActions->
getAction(
"StartStreaming"));
488 mToolMenu->addSeparator();
491 this->menuBar()->addMenu(mLayoutMenu);
492 mLayoutInteractor->connectToMenu(mLayoutMenu);
494 this->menuBar()->addMenu(mNavigationMenu);
495 mNavigationMenu->addAction(mActions->
getAction(
"CenterToImageCenter"));
496 mNavigationMenu->addAction(mActions->
getAction(
"CenterToTooltip"));
497 mNavigationMenu->addAction(mActions->
getAction(
"ShowPointPicker"));
498 mNavigationMenu->addSeparator();
499 mNavigationMenu->addActions(mInteractorStyleActionGroup->actions());
501 mHelpMenuAction = this->menuBar()->addMenu(mHelpMenu);
502 mHelpMenu->addAction(mAboutAction);
503 mHelpMenu->addAction(mActions->
getAction(
"GotoDocumentation"));
504 mHelpMenu->addAction(mShowContextSensitiveHelpAction);
507 void MainWindow::createToolBars()
509 mWorkflowToolBar = this->registerToolBar(
"Workflow");
510 QList<QAction*> actions = mServices->state()->getWorkflowActions()->actions();
511 for (
int i=0; i<actions.size(); ++i)
512 mWorkflowToolBar->addAction(actions[i]);
514 mDataToolBar = this->registerToolBar(
"Data");
515 mDataToolBar->addAction(mActions->
getAction(
"NewPatient"));
516 mDataToolBar->addAction(mActions->
getAction(
"LoadFile"));
517 mDataToolBar->addAction(mActions->
getAction(
"SaveFile"));
518 mDataToolBar->addAction(mActions->
getAction(
"ImportData"));
520 mToolToolBar = this->registerToolBar(
"Tools");
521 mToolToolBar->addAction(mActions->
getAction(
"TrackingTools"));
522 mToolToolBar->addAction(mActions->
getAction(
"StartStreaming"));
524 mNavigationToolBar = this->registerToolBar(
"Navigation");
525 mNavigationToolBar->addAction(mActions->
getAction(
"CenterToImageCenter"));
526 mNavigationToolBar->addAction(mActions->
getAction(
"CenterToTooltip"));
527 mNavigationToolBar->addAction(mActions->
getAction(
"ShowPointPicker"));
529 mInteractorStyleToolBar = this->registerToolBar(
"InteractorStyle");
530 mInteractorStyleToolBar->addActions(mInteractorStyleActionGroup->actions());
532 mDesktopToolBar = this->registerToolBar(
"Desktop");
533 mDesktopToolBar->addAction(mSaveDesktopAction);
534 mDesktopToolBar->addAction(mResetDesktopAction);
536 mScreenshotToolBar = this->registerToolBar(
"Screenshot");
537 mScreenshotToolBar->addAction(mActions->
getAction(
"ShootScreen"));
538 mScreenshotToolBar->addAction(mActions->
getAction(
"RecordFullscreen"));
540 QToolBar* camera3DViewToolBar = this->registerToolBar(
"Camera 3D Views");
541 camera3DViewToolBar->addActions(mStandard3DViewActions->actions());
543 QToolBar* samplerWidgetToolBar = this->registerToolBar(
"Sampler");
544 samplerWidgetToolBar->addWidget(
new SamplerWidget(mServices->tracking(), mServices->patient(), mServices->spaceProvider(),
this));
546 QToolBar* toolOffsetToolBar = this->registerToolBar(
"Tool Offset");
550 toolOffsetToolBar->addWidget(offsetWidget);
552 QToolBar* helpToolBar = this->registerToolBar(
"Help");
553 helpToolBar->addAction(mShowContextSensitiveHelpAction);
556 QToolBar* MainWindow::registerToolBar(QString name, QString groupname)
558 QToolBar* toolbar =
new QToolBar(name);
559 toolbar->setObjectName(QString(name).
remove(
" ")+
"ToolBar");
567 QString appName = qApp->applicationDisplayName();
569 QString url_license = QString(
"file://%1/License.txt").arg(doc_path);
570 QString url_config = QString(
"file://%1/cxConfigDescription.txt").arg(doc_path);
575 "<p>A Research Platform for Image-Guided Therapy<p>" 576 "<p>%1 is NOT approved for medical use.<p>" 578 "<p><a href=%3> website </a><p>" 579 "<p><a href=%4> license </a><p>" 580 "<p><a href=%5> configuration </a><p>");
582 QMessageBox::about(
this, tr(
"About %1").arg(appName), text
584 .arg(CustusX_VERSION_STRING)
593 PreferencesDialog prefDialog(mServices->view(), mServices->patient(), mServices->state(), mServices->tracking(),
this);
597 void MainWindow::closeEvent(QCloseEvent *event)
599 QMainWindow::closeEvent(event);
603 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 workflowStateAboutToChange()
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
void isSaving(QDomElement &root)
xml storage is available
Namespace for all CustusX production code.