Free Electron
ManipulatorI.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __operate_ManipulatorI_h__
8 #define __operate_ManipulatorI_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Interactive collection of grips
17 
18  @ingroup operate
19 *//***************************************************************************/
20 class FE_DL_EXPORT ManipulatorI:
21  virtual public HandlerI,
22  virtual public DrawableI,
23  public CastableAs<ManipulatorI>
24 {
25  public:
26 
27 virtual void bindOverlay(sp<DrawI>& a_spDrawOverlay) =0;
28 
29 virtual String mode(void) const =0;
30 };
31 
32 } /* namespace ext */
33 } /* namespace fe */
34 
35 #endif /* __operate_ManipulatorI_h__ */
Visualizable object using a DrawI.
Definition: DrawableI.h:20
kernel
Definition: namespace.dox:3
Interface to handle signals from an SignalerI.
Definition: HandlerI.h:22
Automatically reference-counted string container.
Definition: String.h:128
Interactive collection of grips.
Definition: ManipulatorI.h:20
Per-class participation non-RTTI fallback dynamic casting mechanism.
Definition: Castable.h:192