]> git.saurik.com Git - wxWidgets.git/blame - src/osx/carbon/srchctrl.cpp
Really set standard cursor when over title bar and decos
[wxWidgets.git] / src / osx / carbon / srchctrl.cpp
CommitLineData
489468fe 1///////////////////////////////////////////////////////////////////////////////
524c47aa 2// Name: src/osx/carbon/srchctrl.cpp
489468fe
SC
3// Purpose: implements mac carbon wxSearchCtrl
4// Author: Vince Harron
5// Created: 2006-02-19
6// RCS-ID: $Id$
7// Copyright: Vince Harron
8// License: wxWindows licence
9///////////////////////////////////////////////////////////////////////////////
10
11// For compilers that support precompilation, includes "wx.h".
12#include "wx/wxprec.h"
13
14#ifdef __BORLANDC__
15 #pragma hdrstop
16#endif
17
18#if wxUSE_SEARCHCTRL
19
20#include "wx/srchctrl.h"
21
22#ifndef WX_PRECOMP
23 #include "wx/menu.h"
24#endif //WX_PRECOMP
25
26#if wxUSE_NATIVE_SEARCH_CONTROL
27
1f0c8f31
SC
28#include "wx/osx/uma.h"
29#include "wx/osx/carbon/private/mactext.h"
489468fe 30
489468fe
SC
31// ============================================================================
32// wxMacSearchFieldControl
33// ============================================================================
34
1e181c7a 35class wxMacSearchFieldControl : public wxMacUnicodeTextControl, public wxSearchWidgetImpl
489468fe
SC
36{
37public :
38 wxMacSearchFieldControl( wxTextCtrl *wxPeer,
39 const wxString& str,
40 const wxPoint& pos,
1e181c7a
SC
41 const wxSize& size, long style ) ;
42
489468fe
SC
43 // search field options
44 virtual void ShowSearchButton( bool show );
45 virtual bool IsSearchButtonVisible() const;
46
47 virtual void ShowCancelButton( bool show );
48 virtual bool IsCancelButtonVisible() const;
49
50 virtual void SetSearchMenu( wxMenu* menu );
489468fe
SC
51
52 virtual void SetDescriptiveText(const wxString& text);
b2680ced
SC
53
54 virtual bool SetFocus();
489468fe 55
489468fe 56private:
489468fe
SC
57} ;
58
1e181c7a
SC
59static const EventTypeSpec eventList[] =
60{
61 { kEventClassSearchField, kEventSearchFieldCancelClicked } ,
62 { kEventClassSearchField, kEventSearchFieldSearchClicked } ,
63};
64
65// ============================================================================
66// implementation
67// ============================================================================
68
69static pascal OSStatus wxMacSearchControlEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
70{
71 OSStatus result = eventNotHandledErr ;
72
73 wxMacCarbonEvent cEvent( event ) ;
74
75 ControlRef controlRef ;
76 wxSearchCtrl* thisWindow = (wxSearchCtrl*) data ;
77 cEvent.GetParameter( kEventParamDirectObject , &controlRef ) ;
78
79 switch( GetEventKind( event ) )
80 {
81 case kEventSearchFieldCancelClicked :
82 thisWindow->HandleSearchFieldCancelHit() ;
83 break ;
84 case kEventSearchFieldSearchClicked :
85 thisWindow->HandleSearchFieldSearchHit() ;
86 break ;
87 }
88
89 return result ;
90}
91
92DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacSearchControlEventHandler )
93
94wxMacSearchFieldControl::wxMacSearchFieldControl( wxTextCtrl *wxPeer,
95 const wxString& str,
96 const wxPoint& pos,
97 const wxSize& size, long style ) : wxMacUnicodeTextControl( wxPeer )
489468fe 98{
1e181c7a
SC
99 m_font = wxPeer->GetFont() ;
100 m_windowStyle = style ;
101 m_selection.selStart = m_selection.selEnd = 0;
102 Rect bounds = wxMacGetBoundsForControl( wxPeer , pos , size ) ;
103 wxString st = str ;
104 wxMacConvertNewlines10To13( &st ) ;
105 wxCFStringRef cf(st , m_font.GetEncoding()) ;
106
107 m_valueTag = kControlEditTextCFStringTag ;
108
489468fe
SC
109 OptionBits attributes = kHISearchFieldAttributesSearchIcon;
110
1e181c7a 111 HIRect hibounds = { { bounds.left, bounds.top }, { bounds.right-bounds.left, bounds.bottom-bounds.top } };
489468fe
SC
112 verify_noerr( HISearchFieldCreate(
113 &hibounds,
114 attributes,
115 0, // MenuRef
1e181c7a 116 CFSTR(""),
489468fe
SC
117 &m_controlRef
118 ) );
119 HIViewSetVisible (m_controlRef, true);
1e181c7a
SC
120
121 verify_noerr( SetData<CFStringRef>( 0, kControlEditTextCFStringTag , cf ) ) ;
122
123 ::InstallControlEventHandler( m_controlRef, GetwxMacSearchControlEventHandlerUPP(),
124 GetEventTypeCount(eventList), eventList, wxPeer, NULL);
125 wxMacUnicodeTextControl::InstallEventHandlers();
489468fe
SC
126}
127
128// search field options
129void wxMacSearchFieldControl::ShowSearchButton( bool show )
130{
131 OptionBits set = 0;
132 OptionBits clear = 0;
133 if ( show )
134 {
135 set |= kHISearchFieldAttributesSearchIcon;
136 }
137 else
138 {
139 clear |= kHISearchFieldAttributesSearchIcon;
140 }
141 HISearchFieldChangeAttributes( m_controlRef, set, clear );
142}
143
144bool wxMacSearchFieldControl::IsSearchButtonVisible() const
145{
146 OptionBits attributes = 0;
147 verify_noerr( HISearchFieldGetAttributes( m_controlRef, &attributes ) );
148 return ( attributes & kHISearchFieldAttributesSearchIcon ) != 0;
149}
150
151void wxMacSearchFieldControl::ShowCancelButton( bool show )
152{
153 OptionBits set = 0;
154 OptionBits clear = 0;
155 if ( show )
156 {
157 set |= kHISearchFieldAttributesCancel;
158 }
159 else
160 {
161 clear |= kHISearchFieldAttributesCancel;
162 }
163 HISearchFieldChangeAttributes( m_controlRef, set, clear );
164}
165
166bool wxMacSearchFieldControl::IsCancelButtonVisible() const
167{
168 OptionBits attributes = 0;
169 verify_noerr( HISearchFieldGetAttributes( m_controlRef, &attributes ) );
170 return ( attributes & kHISearchFieldAttributesCancel ) != 0;
171}
172
173void wxMacSearchFieldControl::SetSearchMenu( wxMenu* menu )
174{
1e181c7a 175 if ( menu )
489468fe 176 {
1e181c7a 177 verify_noerr( HISearchFieldSetSearchMenu( m_controlRef, MAC_WXHMENU(menu->GetHMenu()) ) );
489468fe
SC
178 }
179 else
180 {
181 verify_noerr( HISearchFieldSetSearchMenu( m_controlRef, 0 ) );
182 }
183}
184
489468fe
SC
185void wxMacSearchFieldControl::SetDescriptiveText(const wxString& text)
186{
187 verify_noerr( HISearchFieldSetDescriptiveText(
188 m_controlRef,
189 wxCFStringRef( text, wxFont::GetDefaultEncoding() )));
190}
191
b2680ced
SC
192bool wxMacSearchFieldControl::SetFocus()
193{
194 // NB: We have to implement SetFocus a little differently because kControlFocusNextPart
195 // leads to setting the focus on the search icon rather than the text area.
196 // We get around this by explicitly telling the control to set focus to the
197 // text area.
198
199 OSStatus err = SetKeyboardFocus( GetControlOwner( m_controlRef ), m_controlRef, kControlEditTextPart );
200 if ( err == errCouldntSetFocus )
201 return false ;
202 SetUserFocusWindow(GetControlOwner( m_controlRef ) );
203 return true;
204}
205
1e181c7a
SC
206wxWidgetImplType* wxWidgetImpl::CreateSearchControl( wxTextCtrl* wxpeer,
207 wxWindowMac* parent,
208 wxWindowID id,
209 const wxString& str,
210 const wxPoint& pos,
211 const wxSize& size,
212 long style,
213 long extraStyle)
489468fe 214{
1e181c7a 215 wxMacControl* peer = new wxMacSearchFieldControl( wxpeer , str , pos , size , style );
489468fe 216
1e181c7a 217 return peer;
489468fe
SC
218}
219
220#endif // wxUSE_NATIVE_SEARCH_CONTROL
221
222#endif // wxUSE_SEARCHCTRL