git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28748 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
66 lines
1.9 KiB
C++
66 lines
1.9 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: univ/inphand.cpp
|
|
// Purpose: (trivial) wxInputHandler implementation
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 18.08.00
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ===========================================================================
|
|
// declarations
|
|
// ===========================================================================
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// headers
|
|
// ---------------------------------------------------------------------------
|
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
|
#pragma implementation "inphand.h"
|
|
#endif
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WX_PRECOMP
|
|
#endif // WX_PRECOMP
|
|
|
|
#include "wx/univ/inphand.h"
|
|
|
|
// ============================================================================
|
|
// implementation
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxInputHandler
|
|
// ----------------------------------------------------------------------------
|
|
|
|
bool wxInputHandler::HandleMouseMove(wxInputConsumer * WXUNUSED(consumer),
|
|
const wxMouseEvent& WXUNUSED(event))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool wxInputHandler::HandleFocus(wxInputConsumer *WXUNUSED(consumer),
|
|
const wxFocusEvent& WXUNUSED(event))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool wxInputHandler::HandleActivation(wxInputConsumer *WXUNUSED(consumer),
|
|
bool WXUNUSED(activated))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
wxInputHandler::~wxInputHandler()
|
|
{
|
|
}
|
|
|