]>
Commit | Line | Data |
---|---|---|
1e6feb95 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: univ/inphand.cpp | |
3 | // Purpose: (trivial) wxInputHandler implementation | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 18.08.00 | |
7 | // RCS-ID: $Id$ | |
442b35b5 | 8 | // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com) |
65571936 | 9 | // Licence: wxWindows licence |
1e6feb95 VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // =========================================================================== | |
13 | // declarations | |
14 | // =========================================================================== | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
1e6feb95 VZ |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #ifndef WX_PRECOMP | |
28 | #endif // WX_PRECOMP | |
29 | ||
30 | #include "wx/univ/inphand.h" | |
31 | ||
32 | // ============================================================================ | |
33 | // implementation | |
34 | // ============================================================================ | |
35 | ||
36 | // ---------------------------------------------------------------------------- | |
37 | // wxInputHandler | |
38 | // ---------------------------------------------------------------------------- | |
39 | ||
23645bfa | 40 | bool wxInputHandler::HandleMouseMove(wxInputConsumer * WXUNUSED(consumer), |
1e6feb95 VZ |
41 | const wxMouseEvent& WXUNUSED(event)) |
42 | { | |
a290fa5a | 43 | return false; |
1e6feb95 VZ |
44 | } |
45 | ||
23645bfa | 46 | bool wxInputHandler::HandleFocus(wxInputConsumer *WXUNUSED(consumer), |
1e6feb95 VZ |
47 | const wxFocusEvent& WXUNUSED(event)) |
48 | { | |
a290fa5a | 49 | return false; |
1e6feb95 VZ |
50 | } |
51 | ||
23645bfa | 52 | bool wxInputHandler::HandleActivation(wxInputConsumer *WXUNUSED(consumer), |
1e6feb95 VZ |
53 | bool WXUNUSED(activated)) |
54 | { | |
a290fa5a | 55 | return false; |
1e6feb95 VZ |
56 | } |
57 | ||
58 | wxInputHandler::~wxInputHandler() | |
59 | { | |
60 | } | |
61 |