1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/srchctlg.cpp
3 // Purpose: implements wxSearchCtrl as a composite control
4 // Author: Vince Harron
7 // Copyright: Vince Harron
8 // License: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // For compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
27 #include "wx/button.h"
28 #include "wx/dcclient.h"
30 #include "wx/dcmemory.h"
35 #include "wx/srchctrl.h"
37 #if !wxUSE_NATIVE_SEARCH_CONTROL
41 #define WXMIN(a,b) (a)<(b)?(a):(b)
42 #define WXMAX(a,b) (a)>(b)?(a):(b)
44 // ----------------------------------------------------------------------------
46 // ----------------------------------------------------------------------------
48 // the margin between the text control and the search/cancel buttons
49 static const wxCoord MARGIN
= 2;
51 // border around all controls to compensate for wxSIMPLE_BORDER
52 #if defined(__WXMSW__)
53 static const wxCoord BORDER
= 0;
54 static const wxCoord ICON_MARGIN
= 2;
55 static const wxCoord ICON_OFFSET
= 2;
57 static const wxCoord BORDER
= 2;
58 static const wxCoord ICON_MARGIN
= 0;
59 static const wxCoord ICON_OFFSET
= 0;
62 // ----------------------------------------------------------------------------
63 // wxSearchTextCtrl: text control used by search control
64 // ----------------------------------------------------------------------------
66 class wxSearchTextCtrl
: public wxTextCtrl
69 wxSearchTextCtrl(wxSearchCtrl
*search
, const wxString
& value
, int style
)
70 : wxTextCtrl(search
, wxID_ANY
, value
, wxDefaultPosition
, wxDefaultSize
,
75 // remove the default minsize, the searchctrl will have one instead
76 SetSizeHints(wxDefaultCoord
,wxDefaultCoord
);
80 void OnText(wxCommandEvent
& eventText
)
82 wxCommandEvent
event(eventText
);
83 event
.SetEventObject(m_search
);
84 event
.SetId(m_search
->GetId());
86 m_search
->GetEventHandler()->ProcessEvent(event
);
89 void OnTextUrl(wxTextUrlEvent
& eventText
)
91 // copy constructor is disabled for some reason?
92 //wxTextUrlEvent event(eventText);
95 eventText
.GetMouseEvent(),
96 eventText
.GetURLStart(),
99 event
.SetEventObject(m_search
);
101 m_search
->GetEventHandler()->ProcessEvent(event
);
105 wxSearchCtrl
* m_search
;
107 DECLARE_EVENT_TABLE()
110 BEGIN_EVENT_TABLE(wxSearchTextCtrl
, wxTextCtrl
)
111 EVT_TEXT(wxID_ANY
, wxSearchTextCtrl::OnText
)
112 EVT_TEXT_ENTER(wxID_ANY
, wxSearchTextCtrl::OnText
)
113 EVT_TEXT_URL(wxID_ANY
, wxSearchTextCtrl::OnTextUrl
)
114 EVT_TEXT_MAXLEN(wxID_ANY
, wxSearchTextCtrl::OnText
)
117 // ----------------------------------------------------------------------------
118 // wxSearchButton: search button used by search control
119 // ----------------------------------------------------------------------------
121 class wxSearchButton
: public wxControl
124 wxSearchButton(wxSearchCtrl
*search
, int eventType
, const wxBitmap
& bmp
)
125 : wxControl(search
, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
, wxNO_BORDER
),
127 m_eventType(eventType
),
131 void SetBitmapLabel(const wxBitmap
& label
) { m_bmp
= label
; }
135 wxSize
DoGetBestSize() const
137 return wxSize(m_bmp
.GetWidth(), m_bmp
.GetHeight());
140 void OnLeftUp(wxMouseEvent
&)
142 wxCommandEvent
event(m_eventType
, m_search
->GetId());
143 event
.SetEventObject(m_search
);
145 GetEventHandler()->ProcessEvent(event
);
147 m_search
->SetFocus();
149 if ( m_eventType
== wxEVT_COMMAND_SEARCHCTRL_SEARCH
)
151 // this happens automatically, just like on Mac OS X
152 m_search
->PopupSearchMenu();
156 void OnPaint(wxPaintEvent
&)
159 dc
.DrawBitmap(m_bmp
, 0,0, true);
164 wxSearchCtrl
*m_search
;
165 wxEventType m_eventType
;
168 DECLARE_EVENT_TABLE()
171 BEGIN_EVENT_TABLE(wxSearchButton
, wxControl
)
172 EVT_LEFT_UP(wxSearchButton::OnLeftUp
)
173 EVT_PAINT(wxSearchButton::OnPaint
)
176 BEGIN_EVENT_TABLE(wxSearchCtrl
, wxSearchCtrlBase
)
177 EVT_SEARCHCTRL_SEARCH(wxID_ANY
, wxSearchCtrl::OnSearchButton
)
178 EVT_SET_FOCUS(wxSearchCtrl::OnSetFocus
)
181 IMPLEMENT_DYNAMIC_CLASS(wxSearchCtrl
, wxSearchCtrlBase
)
183 // ============================================================================
185 // ============================================================================
187 // ----------------------------------------------------------------------------
188 // wxSearchCtrl creation
189 // ----------------------------------------------------------------------------
194 wxSearchCtrl::wxSearchCtrl()
199 wxSearchCtrl::wxSearchCtrl(wxWindow
*parent
, wxWindowID id
,
200 const wxString
& value
,
204 const wxValidator
& validator
,
205 const wxString
& name
)
209 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
212 void wxSearchCtrl::Init()
219 m_searchButtonVisible
= true;
220 m_cancelButtonVisible
= false;
222 m_searchMenuBitmapUser
= false;
223 m_searchBitmapUser
= false;
224 m_cancelBitmapUser
= false;
227 bool wxSearchCtrl::Create(wxWindow
*parent
, wxWindowID id
,
228 const wxString
& value
,
232 const wxValidator
& validator
,
233 const wxString
& name
)
235 if ( !wxTextCtrlBase::Create(parent
, id
, pos
, size
, wxSIMPLE_BORDER
| style
, validator
, name
) )
240 m_text
= new wxSearchTextCtrl(this, value
, style
& ~wxBORDER_MASK
);
242 wxSize sizeText
= m_text
->GetBestSize();
244 m_searchButton
= new wxSearchButton(this,wxEVT_COMMAND_SEARCHCTRL_SEARCH
,m_searchBitmap
);
245 m_cancelButton
= new wxSearchButton(this,wxEVT_COMMAND_SEARCHCTRL_CANCEL
,m_cancelBitmap
);
247 SetForegroundColour( m_text
->GetForegroundColour() );
248 m_searchButton
->SetForegroundColour( m_text
->GetForegroundColour() );
249 m_cancelButton
->SetForegroundColour( m_text
->GetForegroundColour() );
251 SetBackgroundColour( m_text
->GetBackgroundColour() );
252 m_searchButton
->SetBackgroundColour( m_text
->GetBackgroundColour() );
253 m_cancelButton
->SetBackgroundColour( m_text
->GetBackgroundColour() );
257 SetInitialSize(size
);
262 wxSearchCtrl::~wxSearchCtrl()
265 delete m_searchButton
;
266 delete m_cancelButton
;
271 // search control specific interfaces
272 void wxSearchCtrl::SetMenu( wxMenu
* menu
)
274 if ( menu
== m_menu
)
280 bool hadMenu
= (m_menu
!=0);
283 if ( m_menu
&& !hadMenu
)
285 m_searchButton
->SetBitmapLabel(m_searchMenuBitmap
);
286 m_searchButton
->Refresh();
287 if ( !m_searchButtonVisible
)
289 // adding the menu will force the search button to be visible
290 wxRect rect
= GetRect();
291 LayoutControls(0, 0, rect
.GetWidth(), rect
.GetHeight());
294 else if ( !m_menu
&& hadMenu
)
296 m_searchButton
->SetBitmapLabel(m_searchBitmap
);
297 if ( m_searchButtonVisible
)
299 m_searchButton
->Refresh();
303 wxRect rect
= GetRect();
304 LayoutControls(0, 0, rect
.GetWidth(), rect
.GetHeight());
309 wxMenu
* wxSearchCtrl::GetMenu()
314 void wxSearchCtrl::ShowSearchButton( bool show
)
316 if ( m_searchButtonVisible
== show
)
321 m_searchButtonVisible
= show
;
322 if ( m_searchButtonVisible
)
327 wxRect rect
= GetRect();
328 LayoutControls(0, 0, rect
.GetWidth(), rect
.GetHeight());
331 bool wxSearchCtrl::IsSearchButtonVisible() const
333 return m_searchButtonVisible
;
337 void wxSearchCtrl::ShowCancelButton( bool show
)
339 if ( m_cancelButtonVisible
== show
)
344 m_cancelButtonVisible
= show
;
346 wxRect rect
= GetRect();
347 LayoutControls(0, 0, rect
.GetWidth(), rect
.GetHeight());
350 bool wxSearchCtrl::IsCancelButtonVisible() const
352 return m_cancelButtonVisible
;
356 // ----------------------------------------------------------------------------
358 // ----------------------------------------------------------------------------
360 wxSize
wxSearchCtrl::DoGetBestSize() const
362 wxSize sizeText
= m_text
->GetBestSize();
363 wxSize
sizeSearch(0,0);
364 wxSize
sizeCancel(0,0);
365 int searchMargin
= 0;
366 int cancelMargin
= 0;
367 if ( m_searchButtonVisible
|| m_menu
)
369 sizeSearch
= m_searchButton
->GetBestSize();
370 searchMargin
= MARGIN
;
372 if ( m_cancelButtonVisible
)
374 sizeCancel
= m_cancelButton
->GetBestSize();
375 cancelMargin
= MARGIN
;
378 int horizontalBorder
= 1 + ( sizeText
.y
- sizeText
.y
* 14 / 21 ) / 2;
380 // buttons are square and equal to the height of the text control
381 int height
= sizeText
.y
;
382 return wxSize(sizeSearch
.x
+ searchMargin
+ sizeText
.x
+ cancelMargin
+ sizeCancel
.x
+ 2*horizontalBorder
,
386 void wxSearchCtrl::DoMoveWindow(int x
, int y
, int width
, int height
)
388 wxSearchCtrlBase::DoMoveWindow(x
, y
, width
, height
);
390 LayoutControls(0, 0, width
, height
);
393 void wxSearchCtrl::LayoutControls(int x
, int y
, int width
, int height
)
395 wxSize sizeText
= m_text
->GetBestSize();
396 // make room for the search menu & clear button
397 int horizontalBorder
= 1 + ( sizeText
.y
- sizeText
.y
* 14 / 21 ) / 2;
398 x
+= horizontalBorder
;
400 width
-= horizontalBorder
*2;
403 wxSize
sizeSearch(0,0);
404 wxSize
sizeCancel(0,0);
405 int searchMargin
= 0;
406 int cancelMargin
= 0;
407 if ( m_searchButtonVisible
|| m_menu
)
409 sizeSearch
= m_searchButton
->GetBestSize();
410 searchMargin
= MARGIN
;
412 if ( m_cancelButtonVisible
)
414 sizeCancel
= m_cancelButton
->GetBestSize();
415 cancelMargin
= MARGIN
;
417 m_searchButton
->Show( m_searchButtonVisible
|| m_menu
);
418 m_cancelButton
->Show( m_cancelButtonVisible
);
420 if ( sizeSearch
.x
+ sizeCancel
.x
> width
)
422 sizeSearch
.x
= width
/2;
423 sizeCancel
.x
= width
/2;
427 wxCoord textWidth
= width
- sizeSearch
.x
- sizeCancel
.x
- searchMargin
- cancelMargin
;
429 // position the subcontrols inside the client area
431 m_searchButton
->SetSize(x
, y
+ ICON_OFFSET
, sizeSearch
.x
, height
);
432 m_text
->SetSize(x
+ sizeSearch
.x
+ searchMargin
, y
+ ICON_OFFSET
, textWidth
, height
);
433 m_cancelButton
->SetSize(x
+ sizeSearch
.x
+ searchMargin
+ textWidth
+ cancelMargin
,
434 y
+ ICON_OFFSET
, sizeCancel
.x
, height
);
441 wxString
wxSearchCtrl::GetValue() const
443 return m_text
->GetValue();
445 void wxSearchCtrl::SetValue(const wxString
& value
)
447 m_text
->SetValue(value
);
450 wxString
wxSearchCtrl::GetRange(long from
, long to
) const
452 return m_text
->GetRange(from
, to
);
455 int wxSearchCtrl::GetLineLength(long lineNo
) const
457 return m_text
->GetLineLength(lineNo
);
459 wxString
wxSearchCtrl::GetLineText(long lineNo
) const
461 return m_text
->GetLineText(lineNo
);
463 int wxSearchCtrl::GetNumberOfLines() const
465 return m_text
->GetNumberOfLines();
468 bool wxSearchCtrl::IsModified() const
470 return m_text
->IsModified();
472 bool wxSearchCtrl::IsEditable() const
474 return m_text
->IsEditable();
477 // more readable flag testing methods
478 bool wxSearchCtrl::IsSingleLine() const
480 return m_text
->IsSingleLine();
482 bool wxSearchCtrl::IsMultiLine() const
484 return m_text
->IsMultiLine();
487 // If the return values from and to are the same, there is no selection.
488 void wxSearchCtrl::GetSelection(long* from
, long* to
) const
490 m_text
->GetSelection(from
, to
);
493 wxString
wxSearchCtrl::GetStringSelection() const
495 return m_text
->GetStringSelection();
502 void wxSearchCtrl::Clear()
506 void wxSearchCtrl::Replace(long from
, long to
, const wxString
& value
)
508 m_text
->Replace(from
, to
, value
);
510 void wxSearchCtrl::Remove(long from
, long to
)
512 m_text
->Remove(from
, to
);
515 // load/save the controls contents from/to the file
516 bool wxSearchCtrl::LoadFile(const wxString
& file
)
518 return m_text
->LoadFile(file
);
520 bool wxSearchCtrl::SaveFile(const wxString
& file
)
522 return m_text
->SaveFile(file
);
525 // sets/clears the dirty flag
526 void wxSearchCtrl::MarkDirty()
530 void wxSearchCtrl::DiscardEdits()
532 m_text
->DiscardEdits();
535 // set the max number of characters which may be entered in a single line
537 void wxSearchCtrl::SetMaxLength(unsigned long len
)
539 m_text
->SetMaxLength(len
);
542 // writing text inserts it at the current position, appending always
543 // inserts it at the end
544 void wxSearchCtrl::WriteText(const wxString
& text
)
546 m_text
->WriteText(text
);
548 void wxSearchCtrl::AppendText(const wxString
& text
)
550 m_text
->AppendText(text
);
553 // insert the character which would have resulted from this key event,
554 // return true if anything has been inserted
555 bool wxSearchCtrl::EmulateKeyPress(const wxKeyEvent
& event
)
557 return m_text
->EmulateKeyPress(event
);
560 // text control under some platforms supports the text styles: these
561 // methods allow to apply the given text style to the given selection or to
562 // set/get the style which will be used for all appended text
563 bool wxSearchCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
565 return m_text
->SetStyle(start
, end
, style
);
567 bool wxSearchCtrl::GetStyle(long position
, wxTextAttr
& style
)
569 return m_text
->GetStyle(position
, style
);
571 bool wxSearchCtrl::SetDefaultStyle(const wxTextAttr
& style
)
573 return m_text
->SetDefaultStyle(style
);
575 const wxTextAttr
& wxSearchCtrl::GetDefaultStyle() const
577 return m_text
->GetDefaultStyle();
580 // translate between the position (which is just an index in the text ctrl
581 // considering all its contents as a single strings) and (x, y) coordinates
582 // which represent column and line.
583 long wxSearchCtrl::XYToPosition(long x
, long y
) const
585 return m_text
->XYToPosition(x
, y
);
587 bool wxSearchCtrl::PositionToXY(long pos
, long *x
, long *y
) const
589 return m_text
->PositionToXY(pos
, x
, y
);
592 void wxSearchCtrl::ShowPosition(long pos
)
594 m_text
->ShowPosition(pos
);
597 // find the character at position given in pixels
599 // NB: pt is in device coords (not adjusted for the client area origin nor
601 wxTextCtrlHitTestResult
wxSearchCtrl::HitTest(const wxPoint
& pt
, long *pos
) const
603 return m_text
->HitTest(pt
, pos
);
605 wxTextCtrlHitTestResult
wxSearchCtrl::HitTest(const wxPoint
& pt
,
607 wxTextCoord
*row
) const
609 return m_text
->HitTest(pt
, col
, row
);
612 // Clipboard operations
613 void wxSearchCtrl::Copy()
617 void wxSearchCtrl::Cut()
621 void wxSearchCtrl::Paste()
626 bool wxSearchCtrl::CanCopy() const
628 return m_text
->CanCopy();
630 bool wxSearchCtrl::CanCut() const
632 return m_text
->CanCut();
634 bool wxSearchCtrl::CanPaste() const
636 return m_text
->CanPaste();
640 void wxSearchCtrl::Undo()
644 void wxSearchCtrl::Redo()
649 bool wxSearchCtrl::CanUndo() const
651 return m_text
->CanUndo();
653 bool wxSearchCtrl::CanRedo() const
655 return m_text
->CanRedo();
659 void wxSearchCtrl::SetInsertionPoint(long pos
)
661 m_text
->SetInsertionPoint(pos
);
663 void wxSearchCtrl::SetInsertionPointEnd()
665 m_text
->SetInsertionPointEnd();
667 long wxSearchCtrl::GetInsertionPoint() const
669 return m_text
->GetInsertionPoint();
671 wxTextPos
wxSearchCtrl::GetLastPosition() const
673 return m_text
->GetLastPosition();
676 void wxSearchCtrl::SetSelection(long from
, long to
)
678 m_text
->SetSelection(from
, to
);
680 void wxSearchCtrl::SelectAll()
685 void wxSearchCtrl::SetEditable(bool editable
)
687 m_text
->SetEditable(editable
);
690 bool wxSearchCtrl::SetFont(const wxFont
& font
)
692 bool result
= wxSearchCtrlBase::SetFont(font
);
693 if ( result
&& m_text
)
695 result
&= m_text
->SetFont(font
);
701 // search control generic only
702 void wxSearchCtrl::SetSearchBitmap( const wxBitmap
& bitmap
)
704 m_searchBitmap
= bitmap
;
705 m_searchBitmapUser
= bitmap
.Ok();
706 if ( m_searchBitmapUser
)
708 if ( m_searchButton
&& !m_menu
)
710 m_searchButton
->SetBitmapLabel( m_searchBitmap
);
715 // the user bitmap was just cleared, generate one
720 void wxSearchCtrl::SetSearchMenuBitmap( const wxBitmap
& bitmap
)
722 m_searchMenuBitmap
= bitmap
;
723 m_searchMenuBitmapUser
= bitmap
.Ok();
724 if ( m_searchMenuBitmapUser
)
726 if ( m_searchButton
&& m_menu
)
728 m_searchButton
->SetBitmapLabel( m_searchMenuBitmap
);
733 // the user bitmap was just cleared, generate one
738 void wxSearchCtrl::SetCancelBitmap( const wxBitmap
& bitmap
)
740 m_cancelBitmap
= bitmap
;
741 m_cancelBitmapUser
= bitmap
.Ok();
742 if ( m_cancelBitmapUser
)
744 if ( m_cancelButton
)
746 m_cancelButton
->SetBitmapLabel( m_cancelBitmap
);
751 // the user bitmap was just cleared, generate one
758 // override streambuf method
759 #if wxHAS_TEXT_WINDOW_STREAM
761 #endif // wxHAS_TEXT_WINDOW_STREAM
763 // stream-like insertion operators: these are always available, whether we
764 // were, or not, compiled with streambuf support
765 wxTextCtrl
& operator<<(const wxString
& s
);
766 wxTextCtrl
& operator<<(int i
);
767 wxTextCtrl
& operator<<(long i
);
768 wxTextCtrl
& operator<<(float f
);
769 wxTextCtrl
& operator<<(double d
);
770 wxTextCtrl
& operator<<(const wxChar c
);
773 void wxSearchCtrl::DoSetValue(const wxString
& value
, int flags
)
775 m_text
->ChangeValue( value
);
776 if ( flags
& SetValue_SendEvent
)
777 SendTextUpdatedEvent();
780 // do the window-specific processing after processing the update event
781 void wxSearchCtrl::DoUpdateWindowUI(wxUpdateUIEvent
& event
)
783 wxSearchCtrlBase::DoUpdateWindowUI(event
);
786 bool wxSearchCtrl::ShouldInheritColours() const
791 // icons are rendered at 3-8 times larger than necessary and downscaled for
793 static int GetMultiplier()
796 // speed up bitmap generation by using a small bitmap
799 int depth
= ::wxDisplayDepth();
809 wxBitmap
wxSearchCtrl::RenderSearchBitmap( int x
, int y
, bool renderDrop
)
811 wxColour bg
= GetBackgroundColour();
812 wxColour fg
= GetForegroundColour();
814 //===============================================================================
815 // begin drawing code
816 //===============================================================================
819 // force width:height ratio
831 // glass 11x11, top left corner
832 // handle (9,9)-(13,13)
833 // drop (13,16)-(19,6)-(16,9)
835 int multiplier
= GetMultiplier();
836 int penWidth
= multiplier
* 2;
838 penWidth
= penWidth
* x
/ 20;
840 wxBitmap
bitmap( multiplier
*x
, multiplier
*y
);
842 mem
.SelectObject(bitmap
);
845 mem
.SetBrush( wxBrush(bg
) );
846 mem
.SetPen( wxPen(bg
) );
847 mem
.DrawRectangle(0,0,bitmap
.GetWidth(),bitmap
.GetHeight());
850 mem
.SetBrush( wxBrush(fg
) );
851 mem
.SetPen( wxPen(fg
) );
852 int glassBase
= 5 * x
/ 20;
853 int glassFactor
= 2*glassBase
+ 1;
854 int radius
= multiplier
*glassFactor
/2;
855 mem
.DrawCircle(radius
,radius
,radius
);
856 mem
.SetBrush( wxBrush(bg
) );
857 mem
.SetPen( wxPen(bg
) );
858 mem
.DrawCircle(radius
,radius
,radius
-penWidth
);
861 int lineStart
= radius
+ (radius
-penWidth
/2) * 707 / 1000; // 707 / 1000 = 0.707 = 1/sqrt(2);
863 mem
.SetPen( wxPen(fg
) );
864 mem
.SetBrush( wxBrush(fg
) );
865 int handleCornerShift
= penWidth
* 707 / 1000 / 2; // 707 / 1000 = 0.707 = 1/sqrt(2);
866 handleCornerShift
= WXMAX( handleCornerShift
, 1 );
867 int handleBase
= 4 * x
/ 20;
868 int handleLength
= 2*handleBase
+1;
869 wxPoint handlePolygon
[] =
871 wxPoint(-handleCornerShift
,+handleCornerShift
),
872 wxPoint(+handleCornerShift
,-handleCornerShift
),
873 wxPoint(multiplier
*handleLength
/2+handleCornerShift
,multiplier
*handleLength
/2-handleCornerShift
),
874 wxPoint(multiplier
*handleLength
/2-handleCornerShift
,multiplier
*handleLength
/2+handleCornerShift
),
876 mem
.DrawPolygon(WXSIZEOF(handlePolygon
),handlePolygon
,lineStart
,lineStart
);
878 // draw drop triangle
879 int triangleX
= 13 * x
/ 20;
880 int triangleY
= 5 * x
/ 20;
881 int triangleBase
= 3 * x
/ 20;
882 int triangleFactor
= triangleBase
*2+1;
885 wxPoint dropPolygon
[] =
887 wxPoint(multiplier
*0,multiplier
*0), // triangle left
888 wxPoint(multiplier
*triangleFactor
-1,multiplier
*0), // triangle right
889 wxPoint(multiplier
*triangleFactor
/2,multiplier
*triangleFactor
/2), // triangle bottom
891 mem
.DrawPolygon(WXSIZEOF(dropPolygon
),dropPolygon
,multiplier
*triangleX
,multiplier
*triangleY
);
894 //===============================================================================
896 //===============================================================================
898 if ( multiplier
!= 1 )
900 wxImage image
= bitmap
.ConvertToImage();
902 bitmap
= wxBitmap( image
);
908 wxBitmap
wxSearchCtrl::RenderCancelBitmap( int x
, int y
)
910 wxColour bg
= GetBackgroundColour();
911 wxColour fg
= GetForegroundColour();
913 //===============================================================================
914 // begin drawing code
915 //===============================================================================
932 // cross line starts (4,4)-(10,10)
933 // drop (13,16)-(19,6)-(16,9)
935 int multiplier
= GetMultiplier();
937 int penWidth
= multiplier
* x
/ 14;
939 wxBitmap
bitmap( multiplier
*x
, multiplier
*y
);
941 mem
.SelectObject(bitmap
);
944 mem
.SetBrush( wxBrush(bg
) );
945 mem
.SetPen( wxPen(bg
) );
946 mem
.DrawRectangle(0,0,bitmap
.GetWidth(),bitmap
.GetHeight());
949 mem
.SetBrush( wxBrush(fg
) );
950 mem
.SetPen( wxPen(fg
) );
951 int radius
= multiplier
*x
/2;
952 mem
.DrawCircle(radius
,radius
,radius
);
955 int lineStartBase
= 4 * x
/ 14;
956 int lineLength
= x
- 2*lineStartBase
;
958 mem
.SetPen( wxPen(bg
) );
959 mem
.SetBrush( wxBrush(bg
) );
960 int handleCornerShift
= penWidth
/2;
961 handleCornerShift
= WXMAX( handleCornerShift
, 1 );
962 wxPoint handlePolygon
[] =
964 wxPoint(-handleCornerShift
,+handleCornerShift
),
965 wxPoint(+handleCornerShift
,-handleCornerShift
),
966 wxPoint(multiplier
*lineLength
+handleCornerShift
,multiplier
*lineLength
-handleCornerShift
),
967 wxPoint(multiplier
*lineLength
-handleCornerShift
,multiplier
*lineLength
+handleCornerShift
),
969 mem
.DrawPolygon(WXSIZEOF(handlePolygon
),handlePolygon
,multiplier
*lineStartBase
,multiplier
*lineStartBase
);
970 wxPoint handlePolygon2
[] =
972 wxPoint(+handleCornerShift
,+handleCornerShift
),
973 wxPoint(-handleCornerShift
,-handleCornerShift
),
974 wxPoint(multiplier
*lineLength
-handleCornerShift
,-multiplier
*lineLength
-handleCornerShift
),
975 wxPoint(multiplier
*lineLength
+handleCornerShift
,-multiplier
*lineLength
+handleCornerShift
),
977 mem
.DrawPolygon(WXSIZEOF(handlePolygon2
),handlePolygon2
,multiplier
*lineStartBase
,multiplier
*(x
-lineStartBase
));
979 //===============================================================================
981 //===============================================================================
983 if ( multiplier
!= 1 )
985 wxImage image
= bitmap
.ConvertToImage();
987 bitmap
= wxBitmap( image
);
993 void wxSearchCtrl::RecalcBitmaps()
999 wxSize sizeText
= m_text
->GetBestSize();
1001 int bitmapHeight
= sizeText
.y
- 2 * ICON_MARGIN
;
1002 int bitmapWidth
= sizeText
.y
* 20 / 14;
1004 if ( !m_searchBitmapUser
)
1007 !m_searchBitmap
.Ok() ||
1008 m_searchBitmap
.GetHeight() != bitmapHeight
||
1009 m_searchBitmap
.GetWidth() != bitmapWidth
1012 m_searchBitmap
= RenderSearchBitmap(bitmapWidth
,bitmapHeight
,false);
1015 m_searchButton
->SetBitmapLabel(m_searchBitmap
);
1018 // else this bitmap was set by user, don't alter
1021 if ( !m_searchMenuBitmapUser
)
1024 !m_searchMenuBitmap
.Ok() ||
1025 m_searchMenuBitmap
.GetHeight() != bitmapHeight
||
1026 m_searchMenuBitmap
.GetWidth() != bitmapWidth
1029 m_searchMenuBitmap
= RenderSearchBitmap(bitmapWidth
,bitmapHeight
,true);
1032 m_searchButton
->SetBitmapLabel(m_searchMenuBitmap
);
1035 // else this bitmap was set by user, don't alter
1038 if ( !m_cancelBitmapUser
)
1041 !m_cancelBitmap
.Ok() ||
1042 m_cancelBitmap
.GetHeight() != bitmapHeight
||
1043 m_cancelBitmap
.GetWidth() != bitmapHeight
1046 m_cancelBitmap
= RenderCancelBitmap(bitmapHeight
-BORDER
,bitmapHeight
-BORDER
); // square
1047 m_cancelButton
->SetBitmapLabel(m_cancelBitmap
);
1049 // else this bitmap was set by user, don't alter
1053 void wxSearchCtrl::OnSearchButton( wxCommandEvent
& event
)
1058 void wxSearchCtrl::OnSetFocus( wxFocusEvent
& /*event*/ )
1066 void wxSearchCtrl::PopupSearchMenu()
1070 wxSize size
= GetSize();
1071 PopupMenu( m_menu
, 0, size
.y
);
1075 #endif // !wxUSE_NATIVE_SEARCH_CONTROL
1077 #endif // wxUSE_SEARCHCTRL