]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/mac/carbon/srchctrl.h
Implementing LIST_ITEM_RIGHT_CLICK event support, and fixing sorting (turning off...
[wxWidgets.git] / include / wx / mac / carbon / srchctrl.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/mac/carbon/srchctrl.h
3// Purpose: mac carbon wxSearchCtrl class
4// Author: Vince Harron
5// Created: 2006-02-19
6// RCS-ID: $Id$
7// Copyright: Vince Harron
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_SEARCHCTRL_H_
12#define _WX_SEARCHCTRL_H_
13
14#if wxUSE_SEARCHCTRL
15
16class wxMacSearchFieldControl;
17
18class WXDLLEXPORT wxSearchCtrl : public wxSearchCtrlBase
19{
20public:
21 // creation
22 // --------
23
24 wxSearchCtrl();
25 wxSearchCtrl(wxWindow *parent, wxWindowID id,
26 const wxString& value = wxEmptyString,
27 const wxPoint& pos = wxDefaultPosition,
28 const wxSize& size = wxDefaultSize,
29 long style = 0,
30 const wxValidator& validator = wxDefaultValidator,
31 const wxString& name = wxSearchCtrlNameStr);
32
33 virtual ~wxSearchCtrl();
34
35 bool Create(wxWindow *parent, wxWindowID id,
36 const wxString& value = wxEmptyString,
37 const wxPoint& pos = wxDefaultPosition,
38 const wxSize& size = wxDefaultSize,
39 long style = 0,
40 const wxValidator& validator = wxDefaultValidator,
41 const wxString& name = wxSearchCtrlNameStr);
42
43 // get/set search button menu
44 // --------------------------
45 virtual void SetMenu( wxMenu* menu );
46 virtual wxMenu* GetMenu();
47
48 // get/set search options
49 // ----------------------
50 virtual void ShowSearchButton( bool show );
51 virtual bool IsSearchButtonVisible() const;
52
53 virtual void ShowCancelButton( bool show );
54 virtual bool IsCancelButtonVisible() const;
55
56 virtual wxInt32 MacSearchFieldSearchHit( WXEVENTHANDLERREF handler , WXEVENTREF event ) ;
57 virtual wxInt32 MacSearchFieldCancelHit( WXEVENTHANDLERREF handler , WXEVENTREF event ) ;
58
59 wxMacSearchFieldControl * GetPeer() const
60 { return (wxMacSearchFieldControl*) m_peer; }
61
62 virtual void SetFocus();
63
64protected:
65
66 wxSize DoGetBestSize() const;
67
68 void Init();
69
70 virtual void CreatePeer(
71 const wxString& str,
72 const wxPoint& pos,
73 const wxSize& size, long style );
74
75 wxMenu *m_menu;
76
77private:
78 DECLARE_DYNAMIC_CLASS(wxSearchCtrl)
79
80 DECLARE_EVENT_TABLE()
81};
82
83#endif // wxUSE_SEARCHCTRL
84
85#endif // _WX_SEARCHCTRL_H_
86