16#include <mitkSurface.h>
18#include <mitkDataStorage.h>
22#include <qfiledialog.h>
23#include <qinputdialog.h>
24#include <qmessagebox.h>
25#include <qscrollbar.h>
28#include <igtlStringMessage.h>
29#include <igtlBindMessage.h>
30#include <igtlQuaternionTrackingDataMessage.h>
31#include <igtlTrackingDataMessage.h>
37"org.mitk.views.igtldevicesourcemanagementwidget";
40 QWidget* parent, Qt::WindowFlags f)
41 : QWidget(parent, f), m_IsClient(false)
73 m_Controls =
new Ui::QmitkIGTLStreamingManagementWidgetControls;
86 connect((QObject*)(
m_Controls->messageSourceSelectionWidget),
87 SIGNAL(IGTLMessageSourceSelected(mitk::IGTLMessageSource::Pointer)),
90 connect(
m_Controls->startStreamPushButton, SIGNAL(clicked()),
92 connect(
m_Controls->stopStreamPushButton, SIGNAL(clicked()),
113 m_Controls->messageSourceSelectionWidget->setEnabled(
false);
114 m_Controls->selectedSourceLabel->setText(
"<none>");
115 m_Controls->startStreamPushButton->setEnabled(
false);
116 m_Controls->selectedSourceLabel->setEnabled(
false);
118 m_Controls->stopStreamPushButton->setEnabled(
false);
128 m_Controls->messageSourceSelectionWidget->setEnabled(
false);
129 m_Controls->selectedSourceLabel->setText(
"<none>");
130 m_Controls->startStreamPushButton->setEnabled(
false);
131 m_Controls->selectedSourceLabel->setEnabled(
false);
133 m_Controls->stopStreamPushButton->setEnabled(
false);
142 m_Controls->messageSourceSelectionWidget->setEnabled(
true);
143 m_Controls->selectedSourceLabel->setText(
"<none>");
144 m_Controls->startStreamPushButton->setEnabled(
false);
145 m_Controls->selectedSourceLabel->setEnabled(
false);
147 m_Controls->stopStreamPushButton->setEnabled(
false);
153 QString nameOfSource =
155 m_Controls->messageSourceSelectionWidget->setEnabled(
true);
156 m_Controls->selectedSourceLabel->setText(nameOfSource);
157 m_Controls->selectedSourceLabel->setEnabled(
true);
163 m_Controls->startStreamPushButton->setEnabled(
false);
164 m_Controls->stopStreamPushButton->setEnabled(
true);
170 m_Controls->startStreamPushButton->setEnabled(
true);
171 m_Controls->stopStreamPushButton->setEnabled(
false);
179 mitkThrow() <<
"Invalid Device State";
190 mitk::IGTLMessageProvider::Pointer provider)
195 if (provider.IsNull())
220 typedef itk::SimpleMemberCommand< QmitkIGTLStreamingManagementWidget > CurCommandType;
233 CurCommandType::Pointer connectionLostCommand = CurCommandType::New();
234 connectionLostCommand->SetCallbackFunction(
237 mitk::LostConnectionEvent(), connectionLostCommand);
239 CurCommandType::Pointer newConnectionCommand = CurCommandType::New();
240 newConnectionCommand->SetCallbackFunction(
243 mitk::NewClientConnectionEvent(), newConnectionCommand);
245 CurCommandType::Pointer stateModifiedCommand = CurCommandType::New();
246 stateModifiedCommand->SetCallbackFunction(
249 itk::ModifiedEvent(), stateModifiedCommand);
251 CurCommandType::Pointer startStreamingTimerCommand = CurCommandType::New();
252 startStreamingTimerCommand->SetCallbackFunction(
255 mitk::StreamingStartRequiredEvent(), startStreamingTimerCommand);
257 CurCommandType::Pointer stopStreamingTimerCommand = CurCommandType::New();
258 stopStreamingTimerCommand->SetCallbackFunction(
261 mitk::StreamingStopRequiredEvent(), stopStreamingTimerCommand);
268 m_Controls->selectedSourceLabel->setText(
"<none>");
269 m_Controls->startStreamPushButton->setEnabled(
false);
270 m_Controls->stopStreamPushButton->setEnabled(
false);
273 m_Controls->selectedSourceLabel->setEnabled(
false);
275 m_Controls->messageSourceSelectionWidget->setEnabled(
false);
279 mitk::IGTLMessageSource::Pointer source)
284 if (source.IsNotNull())
287 m_Controls->selectedSourceLabel->setText(source->GetName().c_str());
288 m_Controls->selectedSourceLabel->setEnabled(
true);
296 unsigned int fps = this->
m_Controls->fpsSpinBox->value();
369 mitk::IGTLMessageSource::Pointer curSelSrc =
370 m_Controls->messageSourceSelectionWidget->AutoSelectFirstIGTLMessageSource();
373 if( curSelSrc.IsNotNull() )
Superclass for OpenIGTLink clients.
IGTLDeviceState
Type for state variable. The IGTLDevice is always in one of these states.