NorMIT-nav  2023.01.05-dev+develop.0da12
An IGT application
cxStream2DRep3D.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) SINTEF Department of Medical Technology.
5 All rights reserved.
6 
7 CustusX is released under a BSD 3-Clause license.
8 
9 See Lisence.txt (https://github.com/SINTEFMedtek/CustusX/blob/master/License.txt) for details.
10 =========================================================================*/
11 
12 #ifndef CX2DSTREAMREP3D_H
13 #define CX2DSTREAMREP3D_H
14 
15 #include "cxResourceVisualizationExport.h"
16 #include "cxRepImpl.h"
17 #include "cxForwardDeclarations.h"
18 
19 namespace cx
20 {
21 typedef boost::shared_ptr<class VideoSourceGraphics> VideoSourceGraphicsPtr;
22 
33 class cxResourceVisualization_EXPORT Stream2DRep3D : public RepImpl
34 {
35  Q_OBJECT
36 public:
37  static Stream2DRep3DPtr New(SpaceProviderPtr spaceProvider, const QString& uid = "");
38  virtual QString getType() const;
39  void setTrackedStream(TrackedStreamPtr trackedStream);
40  bool isReady();
41 protected:
42  virtual void addRepActorsToViewRenderer(ViewPtr view);
43  virtual void removeRepActorsFromViewRenderer(ViewPtr view);
44 private slots:
45  void trackedStreamChanged();
46 private:
47  Stream2DRep3D(SpaceProviderPtr spaceProvider);
48 
49  SpaceProviderPtr mSpaceProvider;
50  VideoSourceGraphicsPtr mRTStream;
51  TrackedStreamPtr mTrackedStream;
52 };
53 
54 } //cx
55 
56 #endif // CX2DSTREAMREP3D_H
cx::Stream2DRep3D
Display a stream as 2D in 3D.
Definition: cxStream2DRep3D.h:33
cx::Stream2DRep3DPtr
boost::shared_ptr< class Stream2DRep3D > Stream2DRep3DPtr
Definition: cxForwardDeclarations.h:98
cxRepImpl.h
cx
Namespace for all CustusX production code.
Definition: cx_dev_group_definitions.h:13
cxForwardDeclarations.h
cx::VideoSourceGraphicsPtr
boost::shared_ptr< class VideoSourceGraphics > VideoSourceGraphicsPtr
Definition: cxVideoGraphics.h:28
cx::ViewPtr
boost::shared_ptr< class View > ViewPtr
Definition: cxForwardDeclarations.h:110
cx::RepImpl
Default implementation of Rep.
Definition: cxRepImpl.h:42
cx::TrackedStreamPtr
boost::shared_ptr< class TrackedStream > TrackedStreamPtr
Definition: cxStreamPropertiesWidget.h:22
cx::SpaceProviderPtr
boost::shared_ptr< class SpaceProvider > SpaceProviderPtr
Definition: cxLogicManager.h:23