Fraxinus  18.10
An IGT application
cxRegistrationHistoryGUIExtenderService.cpp
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 
13 #include "ctkPluginContext.h"
14 //#include "cxRegistrationWidget.h"
16 
17 namespace cx
18 {
19 
20 
22  mServices(services)
23 {
24 }
25 
27 {
28 }
29 
30 std::vector<GUIExtenderService::CategorizedWidget> RegistrationHistoryGUIExtenderService::createWidgets() const
31 {
32  std::vector<CategorizedWidget> retval;
33 
35  new RegistrationHistoryWidget(mServices, NULL), "Browsing"));
36 
37  return retval;
38 }
39 
41 {
42  QToolBar* registrationHistoryToolBar = new QToolBar("Registration History");
43  registrationHistoryToolBar->setObjectName("RegistrationHistoryToolBar");
44  registrationHistoryToolBar->addWidget(new RegistrationHistoryWidget(mServices, registrationHistoryToolBar, true));
45 
46  std::vector<QToolBar*> retval;
47  retval.push_back(registrationHistoryToolBar);
48  return retval;
49 }
50 
51 } /* namespace cx */
boost::shared_ptr< class RegServices > RegServicesPtr
Definition: cxRegServices.h:20
virtual std::vector< CategorizedWidget > createWidgets() const
Namespace for all CustusX production code.