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