]>
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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "inphand.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/univ/inphand.h"
36 // ============================================================================
38 // ============================================================================
40 // ----------------------------------------------------------------------------
42 // ----------------------------------------------------------------------------
44 bool wxInputHandler::HandleMouseMove(wxInputConsumer
* WXUNUSED(consumer
),
45 const wxMouseEvent
& WXUNUSED(event
))
50 bool wxInputHandler::HandleFocus(wxInputConsumer
*WXUNUSED(consumer
),
51 const wxFocusEvent
& WXUNUSED(event
))
56 bool wxInputHandler::HandleActivation(wxInputConsumer
*WXUNUSED(consumer
),
57 bool WXUNUSED(activated
))
62 wxInputHandler::~wxInputHandler()