NorMIT-nav  2023.01.05-dev+develop.0da12
An IGT application
cxHelpPluginActivator.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 
12 #include "cxHelpPluginActivator.h"
13 
14 #include <QtPlugin>
15 #include <iostream>
16 
18 #include "cxRegisteredService.h"
19 #include "cxHelpEngine.h"
20 
21 namespace cx
22 {
23 
25 {
26 // std::cout << "Created HelpPluginActivator" << std::endl;
27 }
28 
30 {}
31 
32 void HelpPluginActivator::start(ctkPluginContext* context)
33 {
34  mEngine.reset(new HelpEngine);
35 
36  HelpGUIExtenderService* guiExtender = new HelpGUIExtenderService(context, mEngine);
37  mGUIExtender = RegisteredService::create<HelpGUIExtenderService>(context, guiExtender, GUIExtenderService_iid);
38 }
39 
40 void HelpPluginActivator::stop(ctkPluginContext* context)
41 {
42  mGUIExtender.reset();
43  mEngine.reset();
44  Q_UNUSED(context);
45 }
46 
47 } // namespace cx
48 
49 
50 
cx::HelpGUIExtenderService
Definition: cxHelpGUIExtenderService.h:31
cxHelpGUIExtenderService.h
cx
Namespace for all CustusX production code.
Definition: cx_dev_group_definitions.h:13
cx::HelpPluginActivator::stop
void stop(ctkPluginContext *context)
Definition: cxHelpPluginActivator.cpp:40
cx::HelpEngine
Definition: cxHelpEngine.h:38
cxHelpEngine.h
cx::HelpPluginActivator::~HelpPluginActivator
~HelpPluginActivator()
Definition: cxHelpPluginActivator.cpp:29
cx::HelpPluginActivator::HelpPluginActivator
HelpPluginActivator()
Definition: cxHelpPluginActivator.cpp:24
cxHelpPluginActivator.h
cx::HelpPluginActivator::start
void start(ctkPluginContext *context)
Definition: cxHelpPluginActivator.cpp:32
cxRegisteredService.h
GUIExtenderService_iid
#define GUIExtenderService_iid
Definition: cxGUIExtenderService.h:23