CustusX  2023.01.05-dev+develop.0da12
An IGT application
cxNavigationWidget.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 CXNAVIGATIONWIDGET_H_
13 #define CXNAVIGATIONWIDGET_H_
14 
15 #include "cxGuiExport.h"
16 
17 #include "cxBaseWidget.h"
18 
19 class QGroupBox;
20 class QRadioButton;
21 class QVBoxLayout;
22 class QLabel;
23 class QSlider;
24 
25 namespace cx
26 {
27 
37 class cxGui_EXPORT NavigationWidget : public BaseWidget
38 {
39  Q_OBJECT
40 
41 public:
42  NavigationWidget(ViewServicePtr viewService, TrackingServicePtr trackingService, QWidget* parent);
44 
45 protected:
46  QVBoxLayout* mVerticalLayout;
47 
48  //camera settings
49  QGroupBox* mCameraGroupBox;
50  QVBoxLayout* mCameraGroupLayout;
51 };
52 }
53 #endif /* CXNAVIGATIONWIDGET_H_ */
Widget for controlling camera follow style.
QVBoxLayout * mVerticalLayout
vertical layout is used
boost::shared_ptr< class TrackingService > TrackingServicePtr
boost::shared_ptr< class ViewService > ViewServicePtr
QVBoxLayout * mCameraGroupLayout
layout for the cameragroupbox
Interface for QWidget which handles widgets uniformly for the system.
Definition: cxBaseWidget.h:88
QGroupBox * mCameraGroupBox
widget to put all camera specific settings
Namespace for all CustusX production code.