Medical Imaging Interaction Toolkit  2018.4.99-389bf124
Medical Imaging Interaction Toolkit
berryIActionBars.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 
14 #ifndef BERRYIACTIONBARS_H
15 #define BERRYIACTIONBARS_H
16 
17 #include <berryObject.h>
18 
19 namespace berry {
20 
21 struct IServiceLocator;
22 struct IMenuManager;
23 struct IStatusLineManager;
24 struct IToolBarManager;
25 
26 class Action;
27 
47 struct IActionBars : public Object
48 {
50 
61  virtual IMenuManager* GetMenuManager() = 0;
62 
69  virtual IServiceLocator* GetServiceLocator() = 0;
70 
81  virtual IStatusLineManager* GetStatusLineManager() = 0;
82 
93  virtual IToolBarManager* GetToolBarManager() = 0;
94 
103  virtual void UpdateActionBars() = 0;
104 };
105 
106 }
107 
108 #endif // BERRYIACTIONBARS_H
Light weight base class for most BlueBerry classes.
Definition: berryObject.h:72
virtual void UpdateActionBars()=0
berryObjectMacro(berry::IActionBars)
virtual IServiceLocator * GetServiceLocator()=0
virtual IToolBarManager * GetToolBarManager()=0
virtual IMenuManager * GetMenuManager()=0
virtual IStatusLineManager * GetStatusLineManager()=0