| 40 | } |
| 41 | |
| 42 | void QmitkOpenStdMultiWidgetEditorAction::init(berry::IWorkbenchWindow::Pointer window) |
| 43 | { |
| 44 | m_Window = window; |
| 45 | this->setParent(static_cast<QWidget*>(m_Window->GetShell()->GetControl())); |
| 46 | this->setText("Standard Display"); |
| 47 | this->setToolTip("Open the standard multi widget editor"); |
| 48 | |
| 49 | this->connect(this, SIGNAL(triggered(bool)), this, SLOT(Run())); |
| 50 | } |
| 51 | |
| 52 | void QmitkOpenStdMultiWidgetEditorAction::Run() |
| 53 | { |
no test coverage detected