Medical Imaging Interaction Toolkit  2023.12.99-1652ac8d
Medical Imaging Interaction Toolkit
berryIIntroManager.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 #ifndef BERRYIINTROMANAGER_H_
14 #define BERRYIINTROMANAGER_H_
15 
16 #include "berryIIntroPart.h"
17 
18 #include <berryIWorkbenchWindow.h>
19 
20 namespace berry
21 {
22 
43 {
44 
45  virtual ~IIntroManager();
55  virtual bool CloseIntro(IIntroPart::Pointer part) = 0;
56 
65  virtual IIntroPart::Pointer GetIntro() const = 0;
66 
77  virtual bool HasIntro() const = 0;
78 
88  virtual bool IsIntroStandby(IIntroPart::Pointer part) const = 0;
89 
105  virtual void SetIntroStandby(IIntroPart::Pointer part, bool standby) = 0;
106 
120  virtual IIntroPart::Pointer ShowIntro(
121  IWorkbenchWindow::Pointer preferredWindow, bool standby) = 0;
122 
131  virtual bool IsNewContentAvailable() = 0;
132 };
133 
134 }
135 
136 #endif /* BERRYIINTROMANAGER_H_ */
berryIIntroPart.h
berry::SmartPointer
Implements transparent reference counting.
Definition: berryICommandCategoryListener.h:21
berryIWorkbenchWindow.h
BERRY_UI_QT
#define BERRY_UI_QT
Definition: org_blueberry_ui_qt_Export.h:26
berry
Definition: QmitkPropertyItemModel.h:24
berry::IIntroManager
Definition: berryIIntroManager.h:42