]>
git.saurik.com Git - wxWidgets.git/blob - src/univ/inphand.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: univ/inphand.cpp
3 // Purpose: (trivial) wxInputHandler implementation
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
30 #include "wx/univ/inphand.h"
32 // ============================================================================
34 // ============================================================================
36 // ----------------------------------------------------------------------------
38 // ----------------------------------------------------------------------------
40 bool wxInputHandler::HandleMouseMove(wxInputConsumer
* WXUNUSED(consumer
),
41 const wxMouseEvent
& WXUNUSED(event
))
46 bool wxInputHandler::HandleFocus(wxInputConsumer
*WXUNUSED(consumer
),
47 const wxFocusEvent
& WXUNUSED(event
))
52 bool wxInputHandler::HandleActivation(wxInputConsumer
*WXUNUSED(consumer
),
53 bool WXUNUSED(activated
))
58 wxInputHandler::~wxInputHandler()