Free Electron
LogWindowHandler.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_LogWindowHandler_h__
8 #define __window_LogWindowHandler_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief WindowEvent handler that just prints to the feLog
17 
18  @ingroup window
19 *//***************************************************************************/
21  virtual public HandlerI,
22  public CastableAs<LogWindowHandler>
23 {
24  public:
25  LogWindowHandler(void) {}
26 virtual ~LogWindowHandler(void) {}
27 
28  //* As HandlerI
29 virtual void handle(Record &record);
30 
31  private:
32  WindowEvent m_event;
33 };
34 
35 } /* namespace ext */
36 } /* namespace fe */
37 
38 #endif /* __window_LogWindowHandler_h__ */
WindowEvent handler that just prints to the feLog.
Definition: LogWindowHandler.h:20
kernel
Definition: namespace.dox:3
Interface to handle signals from an SignalerI.
Definition: HandlerI.h:22
Generalized windowing event.
Definition: WindowEvent.h:43
Reference to an instance of a Layout.
Definition: RecordSB.h:35
Per-class participation non-RTTI fallback dynamic casting mechanism.
Definition: Castable.h:192