Free Electron
KeyI.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 __window_KeyI_h__
8 #define __window_KeyI_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Keyboard event generator
17 
18  @ingroup window
19 *//***************************************************************************/
20 class FE_DL_EXPORT KeyI:
21  virtual public HandlerI,
22  public CastableAs<KeyI>
23 {
24  public:
25 
26 virtual BWORD generatesReleaseEvents(void) =0;
27 };
28 
29 } /* namespace ext */
30 } /* namespace fe */
31 
32 #endif /* __window_KeyI_h__ */
Keyboard event generator.
Definition: KeyI.h:20
kernel
Definition: namespace.dox:3
Interface to handle signals from an SignalerI.
Definition: HandlerI.h:22
Per-class participation non-RTTI fallback dynamic casting mechanism.
Definition: Castable.h:192