Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkFillRegionTool.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 "mitkFillRegionTool.h"
18 
19 #include "mitkFillRegionTool.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::FillRegionTool::GetXPM() const
41 {
42  return mitkFillRegionTool_xpm;
43 }
44 
46 {
48  us::ModuleResource resource = module->GetResource("Fill_48x48.png");
49  return resource;
50 }
51 
53 {
55  us::ModuleResource resource = module->GetResource("Fill_Cursor_32x32.png");
56  return resource;
57 }
58 
59 const char *mitk::FillRegionTool::GetName() const
60 {
61  return "Fill";
62 }
#define MITKSEGMENTATION_EXPORT
DataCollection - Class to facilitate loading/accessing structured data.
#define MITK_TOOL_MACRO(EXPORT_SPEC, CLASS_NAME, DESCRIPTION)
Fills or erases a 2D region.
Module * GetModule() const
us::ModuleResource GetIconResource() const override
Returns the tool button icon of the tool wrapped by a usModuleResource.
Fill the inside of a contour with 1.
virtual const char * GetName() const override
Returns the name of this tool. Make it short!
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.
ModuleResource GetResource(const std::string &path) const
Definition: usModule.cpp:267
static ModuleContext * GetModuleContext()
Returns the module context of the calling module.