Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
mitkAddContourTool.cpp
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 #include "mitkAddContourTool.h"
18 
19 #include "mitkAddContourTool.xpm"
20 
21 // us
22 #include <usGetModuleContext.h>
23 #include <usModule.h>
24 #include <usModuleContext.h>
25 #include <usModuleResource.h>
26 
27 namespace mitk
28 {
30 }
31 
33 {
34 }
35 
37 {
38 }
39 
40 const char **mitk::AddContourTool::GetXPM() const
41 {
42  return mitkAddContourTool_xpm;
43 }
44 
46 {
48  us::ModuleResource resource = module->GetResource("Add_48x48.png");
49  return resource;
50 }
51 
53 {
55  us::ModuleResource resource = module->GetResource("Add_Cursor_32x32.png");
56  return resource;
57 }
58 
59 const char *mitk::AddContourTool::GetName() const
60 {
61  return "Add";
62 }
virtual us::ModuleResource GetCursorIconResource() const override
Returns the path of a cursor icon.
virtual const char ** GetXPM() const override
Returns an icon in the XPM format.
virtual const char * GetName() const override
Returns the name of this tool. Make it short!
#define MITKSEGMENTATION_EXPORT
us::ModuleResource GetIconResource() const override
Returns the tool button icon of the tool wrapped by a usModuleResource.
DataCollection - Class to facilitate loading/accessing structured data.
#define MITK_TOOL_MACRO(EXPORT_SPEC, CLASS_NAME, DESCRIPTION)
Module * GetModule() const
Fill the inside of a contour with 1.
Simple contour filling tool.
ModuleResource GetResource(const std::string &path) const
Definition: usModule.cpp:267
static ModuleContext * GetModuleContext()
Returns the module context of the calling module.