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
berryIActionBars.h
Go to the documentation of this file.
1 /*===================================================================
2 
3 BlueBerry Platform
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 
18 #ifndef BERRYIACTIONBARS_H
19 #define BERRYIACTIONBARS_H
20 
21 #include <berryObject.h>
22 
23 namespace berry {
24 
25 struct IServiceLocator;
26 struct IMenuManager;
27 struct IStatusLineManager;
28 struct IToolBarManager;
29 
30 class Action;
31 
51 struct IActionBars : public Object
52 {
54 
55 
65  virtual IMenuManager* GetMenuManager() = 0;
66 
73  virtual IServiceLocator* GetServiceLocator() = 0;
74 
85  virtual IStatusLineManager* GetStatusLineManager() = 0;
86 
97  virtual IToolBarManager* GetToolBarManager() = 0;
98 
107  virtual void UpdateActionBars() = 0;
108 };
109 
110 }
111 
112 #endif // BERRYIACTIONBARS_H
Light weight base class for most BlueBerry classes.
Definition: berryObject.h:78
virtual void UpdateActionBars()=0
virtual IServiceLocator * GetServiceLocator()=0
virtual IToolBarManager * GetToolBarManager()=0
berryObjectMacro(berry::IActionBars) virtual IMenuManager *GetMenuManager()=0
virtual IStatusLineManager * GetStatusLineManager()=0