Fraxinus  16.5.0-fx-rc9
An IGT application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
cxUSAcqusitionWidget.h
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) 2008-2014, SINTEF Department of Medical Technology
5 All rights reserved.
6 
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9 
10 1. Redistributions of source code must retain the above copyright notice,
11  this list of conditions and the following disclaimer.
12 
13 2. Redistributions in binary form must reproduce the above copyright notice,
14  this list of conditions and the following disclaimer in the documentation
15  and/or other materials provided with the distribution.
16 
17 3. Neither the name of the copyright holder nor the names of its contributors
18  may be used to endorse or promote products derived from this software
19  without specific prior written permission.
20 
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 =========================================================================*/
32 
33 #ifndef CXUSACQUSITIONWIDGET_H_
34 #define CXUSACQUSITIONWIDGET_H_
35 
36 #include "cxBaseWidget.h"
37 #include "cxAcquisitionService.h"
38 #include "org_custusx_acquisition_Export.h"
39 
40 
41 namespace cx
42 {
43 typedef boost::shared_ptr<class UsReconstructionService> UsReconstructionServicePtr;
44 typedef boost::shared_ptr<class ThreadedTimedReconstructer> ThreadedTimedReconstructerPtr;
45 typedef boost::shared_ptr<class VisServices> VisServicesPtr;
46 typedef boost::shared_ptr<class StringPropertyActiveProbeConfiguration> StringPropertyActiveProbeConfigurationPtr;
48 class DisplayTimerWidget;
50 
65 class org_custusx_acquisition_EXPORT USAcqusitionWidget : public BaseWidget
66 {
67  Q_OBJECT
68 public:
70  virtual ~USAcqusitionWidget();
71 
72 private slots:
73  void reconstructStartedSlot();
74  void reconstructFinishedSlot();
75  void toggleDetailsSlot();
76  void acquisitionDataReadySlot();
77  void reconstructAboutToStartSlot();
78  void acquisitionStateChangedSlot();
79 
80  void recordStarted();
81  void recordStopped();
82  void recordCancelled();
83 
84 private:
85  AcquisitionServicePtr mAcquisitionService;
86  QVBoxLayout* mLayout;
87  RecordSessionWidget* mRecordSessionWidget;
88 
89  UsReconstructionServicePtr mUsReconstructionService;
90  VisServicesPtr mServices;
91  TimedAlgorithmProgressBar* mTimedAlgorithmProgressBar;
92  DisplayTimerWidget* mDisplayTimerWidget;
93 
94  QWidget* mOptionsWidget;
95  QWidget* createOptionsWidget();
96  QWidget* wrapVerticalStretch(QWidget* input);
97  QWidget* wrapGroupBox(QWidget* input, QString name, QString tip);
98 };
99 
100 
104 }//namespace cx
105 
106 #endif /* CXUSACQUSITIONWIDGET_H_ */
boost::shared_ptr< class UsReconstructionService > UsReconstructionServicePtr
boost::shared_ptr< class AcquisitionService > AcquisitionServicePtr
boost::shared_ptr< class VisServices > VisServicesPtr
Definition: cxMainWindow.h:62
boost::shared_ptr< class ThreadedTimedReconstructer > ThreadedTimedReconstructerPtr
Show progress for a TimedBaseAlgorithm.
cxLogicManager_EXPORT AcquisitionServicePtr acquisitionService()
Interface for QWidget which handles widgets uniformly for the system.
Definition: cxBaseWidget.h:108
boost::shared_ptr< class StringPropertyActiveProbeConfiguration > StringPropertyActiveProbeConfigurationPtr
A second counter widget.