2006-12-11 06:19:27 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: srchctrl.h
|
|
|
|
// Purpose: wxSearchCtrlBase class
|
|
|
|
// Author: Vince Harron
|
|
|
|
// Created: 2006-02-18
|
2006-12-11 14:14:07 +00:00
|
|
|
// RCS-ID: $Id$
|
2006-12-11 06:19:27 +00:00
|
|
|
// Copyright: (c) Vince Harron
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_SEARCHCTRL_H_BASE_
|
|
|
|
#define _WX_SEARCHCTRL_H_BASE_
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_SEARCHCTRL
|
|
|
|
|
|
|
|
#include "wx/textctrl.h"
|
|
|
|
|
2007-11-16 20:52:54 +00:00
|
|
|
#if !defined(__WXUNIVERSAL__) && defined(__WXMAC__)
|
2006-12-11 13:48:18 +00:00
|
|
|
// search control was introduced in Mac OS X 10.3 Panther
|
|
|
|
#define wxUSE_NATIVE_SEARCH_CONTROL 1
|
|
|
|
|
|
|
|
#define wxSearchCtrlBaseBaseClass wxTextCtrl
|
|
|
|
#else
|
|
|
|
// no native version, use the generic one
|
|
|
|
#define wxUSE_NATIVE_SEARCH_CONTROL 0
|
|
|
|
|
2007-09-26 00:30:22 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxSearchCtrlBaseBaseClass : public wxControl,
|
|
|
|
public wxTextCtrlIface
|
|
|
|
{
|
|
|
|
};
|
2006-12-11 13:48:18 +00:00
|
|
|
#endif
|
|
|
|
|
2006-12-11 06:19:27 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2007-11-12 21:37:46 +00:00
|
|
|
extern WXDLLEXPORT_DATA(const char) wxSearchCtrlNameStr[];
|
2006-12-11 06:19:27 +00:00
|
|
|
|
2008-01-27 13:21:39 +00:00
|
|
|
extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_SEARCHCTRL_CANCEL_BTN;
|
|
|
|
extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_SEARCHCTRL_SEARCH_BTN;
|
2006-12-11 06:19:27 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// a search ctrl is a text control with a search button and a cancel button
|
|
|
|
// it is based on the MacOSX 10.3 control HISearchFieldCreate
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2006-12-11 13:48:18 +00:00
|
|
|
class WXDLLEXPORT wxSearchCtrlBase : public wxSearchCtrlBaseBaseClass
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxSearchCtrlBase() { }
|
|
|
|
virtual ~wxSearchCtrlBase() { }
|
|
|
|
|
2007-05-05 14:48:20 +00:00
|
|
|
// search control
|
|
|
|
#if wxUSE_MENUS
|
2006-12-11 13:48:18 +00:00
|
|
|
virtual void SetMenu(wxMenu *menu) = 0;
|
|
|
|
virtual wxMenu *GetMenu() = 0;
|
2007-05-05 14:48:20 +00:00
|
|
|
#endif // wxUSE_MENUS
|
2006-12-11 13:48:18 +00:00
|
|
|
|
|
|
|
// get/set options
|
|
|
|
virtual void ShowSearchButton( bool show ) = 0;
|
|
|
|
virtual bool IsSearchButtonVisible() const = 0;
|
2006-12-11 06:19:27 +00:00
|
|
|
|
2006-12-11 13:48:18 +00:00
|
|
|
virtual void ShowCancelButton( bool show ) = 0;
|
|
|
|
virtual bool IsCancelButtonVisible() const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// include the platform-dependent class implementation
|
2006-12-11 12:57:35 +00:00
|
|
|
#if wxUSE_NATIVE_SEARCH_CONTROL
|
2006-12-11 06:19:27 +00:00
|
|
|
#if defined(__WXMAC__)
|
|
|
|
#include "wx/mac/srchctrl.h"
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#include "wx/generic/srchctlg.h"
|
|
|
|
#endif
|
|
|
|
|
2006-12-11 12:57:35 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
2006-12-11 06:19:27 +00:00
|
|
|
// macros for handling search events
|
2006-12-11 12:57:35 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2006-12-11 20:32:16 +00:00
|
|
|
#define EVT_SEARCHCTRL_CANCEL_BTN(id, fn) \
|
|
|
|
wx__DECLARE_EVT1(wxEVT_COMMAND_SEARCHCTRL_CANCEL_BTN, id, wxCommandEventHandler(fn))
|
2006-12-11 06:19:27 +00:00
|
|
|
|
2006-12-11 20:32:16 +00:00
|
|
|
#define EVT_SEARCHCTRL_SEARCH_BTN(id, fn) \
|
|
|
|
wx__DECLARE_EVT1(wxEVT_COMMAND_SEARCHCTRL_SEARCH_BTN, id, wxCommandEventHandler(fn))
|
2006-12-11 06:19:27 +00:00
|
|
|
|
|
|
|
#endif // wxUSE_SEARCHCTRL
|
|
|
|
|
|
|
|
#endif // _WX_SEARCHCTRL_H_BASE_
|