mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-15 02:29:12 +01:00
9146b9b261
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1440 8ced0084-cf51-0410-be5f-012b33b47a6e
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/common/srchcmn.cpp
|
|
// Purpose: common (to all ports) bits of wxSearchCtrl
|
|
// Author: Robin Dunn
|
|
// Modified by:
|
|
// Created: 19-Dec-2006
|
|
// RCS-ID: $Id: srchcmn.cpp 43939 2006-12-11 20:32:16Z KO $
|
|
// Copyright: (c) wxWidgets team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_SEARCHCTRL
|
|
|
|
#include "wx/srchctrl.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#endif
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
const wxChar wxSearchCtrlNameStr[] = wxT("searchCtrl");
|
|
|
|
DEFINE_EVENT_TYPE(wxEVT_COMMAND_SEARCHCTRL_CANCEL_BTN)
|
|
DEFINE_EVENT_TYPE(wxEVT_COMMAND_SEARCHCTRL_SEARCH_BTN)
|
|
|
|
|
|
#endif // wxUSE_SEARCHCTRL
|