]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/caret.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: generic/caret.h
3 // Purpose: generic wxCaret class
4 // Author: Vadim Zeitlin (original code by Robert Roebling)
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
16 #pragma interface "caret.h"
23 class wxCaretTimer
: public wxTimer
26 wxCaretTimer(wxCaret
*caret
);
27 virtual void Notify();
33 class wxCaret
: public wxCaretBase
38 // default - use Create()
39 wxCaret() : m_timer(this) { InitGeneric(); }
40 // creates a block caret associated with the given window
41 wxCaret(wxWindowBase
*window
, int width
, int height
)
42 : wxCaretBase(window
, width
, height
), m_timer(this) { InitGeneric(); }
43 wxCaret(wxWindowBase
*window
, const wxSize
& size
)
44 : wxCaretBase(window
, size
), m_timer(this) { InitGeneric(); }
51 // called by wxWindow (not using the event tables)
52 virtual void OnSetFocus();
53 virtual void OnKillFocus();
55 // called by wxCaretTimer
59 virtual void DoShow();
60 virtual void DoHide();
61 virtual void DoMove();
63 // blink the caret once
69 // draw the caret on the given DC
70 void DoDraw(wxDC
*dc
);
73 // GTK specific initialization
76 // the bitmap holding the part of window hidden by the caret when it was
77 // at (m_xOld, m_yOld)
78 wxBitmap m_bmpUnderCaret
;
83 bool m_blinkedOut
, // TRUE => caret hidden right now
84 m_hasFocus
; // TRUE => our window has focus
87 #endif // _WX_CARET_H_