1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxCaretBase class - the interface of wxCaret
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_CARET_H_BASE_
13 #define _WX_CARET_H_BASE_
16 #pragma interface "caret.h"
19 // ---------------------------------------------------------------------------
20 // forward declarations
21 // ---------------------------------------------------------------------------
23 class WXDLLEXPORT wxWindow
;
24 class WXDLLEXPORT wxWindowBase
;
26 // ----------------------------------------------------------------------------
27 // headers we have to include
28 // ----------------------------------------------------------------------------
30 #include "wx/gdicmn.h" // for wxPoint, wxSize
32 // ----------------------------------------------------------------------------
33 // A caret is a blinking cursor showing the position where the typed text will
34 // appear. It can be either a solid block or a custom bitmap (TODO)
35 // ----------------------------------------------------------------------------
37 class WXDLLEXPORT wxCaretBase
42 // default - use Create
43 wxCaretBase() { Init(); }
44 // create the caret of given (in pixels) width and height and associate
45 // with the given window
46 wxCaretBase(wxWindowBase
*window
, int width
, int height
)
50 (void)Create(window
, width
, height
);
53 wxCaretBase(wxWindowBase
*window
, const wxSize
& size
)
57 (void)Create(window
, size
);
60 // Create() functions - same as ctor but returns the success code
61 // --------------------------------------------------------------
64 bool Create(wxWindowBase
*window
, int width
, int height
)
65 { return DoCreate(window
, width
, height
); }
67 bool Create(wxWindowBase
*window
, const wxSize
& size
)
68 { return DoCreate(window
, size
.x
, size
.y
); }
73 // is the caret valid?
74 bool IsOk() const { return m_width
!= 0 && m_height
!= 0; }
76 // is the caret currently shown?
77 bool IsVisible() const { return m_countVisible
> 0; }
79 // get the caret position
80 void GetPosition(int *x
, int *y
) const
85 wxPoint
GetPosition() const { return wxPoint(m_x
, m_y
); }
88 void GetSize(int *width
, int *height
) const
90 if ( width
) *width
= m_width
;
91 if ( height
) *height
= m_height
;
93 wxSize
GetSize() const { return wxSize(m_width
, m_height
); }
95 // get the window we're associated with
96 wxWindow
*GetWindow() const { return (wxWindow
*)m_window
; }
98 // change the size of the caret
99 void SetSize(int width
, int height
) {
104 void SetSize(const wxSize
& size
) { SetSize(size
.x
, size
.y
); }
110 // move the caret to given position (in logical coords)
111 void Move(int x
, int y
) { m_x
= x
; m_y
= y
; DoMove(); }
112 void Move(const wxPoint
& pt
) { m_x
= pt
.x
; m_y
= pt
.y
; DoMove(); }
114 // show/hide the caret (should be called by wxWindow when needed):
115 // Show() must be called as many times as Hide() + 1 to make the caret
117 virtual void Show(bool show
= TRUE
)
121 if ( m_countVisible
++ == 0 )
126 if ( --m_countVisible
== 0 )
130 virtual void Hide() { Show(FALSE
); }
132 // blink time is measured in milliseconds and is the time elapsed
133 // between 2 inversions of the caret (blink time of the caret is common
134 // to all carets in the Universe, so these functions are static)
135 static int GetBlinkTime();
136 static void SetBlinkTime(int milliseconds
);
138 // implementation from now on
139 // --------------------------
141 // these functions should be called by wxWindow when the window gets/loses
142 // the focus - we create/show and hide/destroy the caret here
143 virtual void OnSetFocus() { }
144 virtual void OnKillFocus() { }
147 // these functions may be overriden in the derived classes, but they
148 // should call the base class version first
149 virtual bool DoCreate(wxWindowBase
*window
, int width
, int height
)
158 // pure virtuals to implement in the derived class
159 virtual void DoShow() = 0;
160 virtual void DoHide() = 0;
161 virtual void DoMove() = 0;
162 virtual void DoSize() { }
164 // the common initialization
167 m_window
= (wxWindowBase
*)NULL
;
169 m_width
= m_height
= 0;
173 // the size of the caret
174 int m_width
, m_height
;
176 // the position of the caret
179 // the window we're associated with
180 wxWindowBase
*m_window
;
182 // visibility count: the caret is visible only if it's positive
186 DECLARE_NO_COPY_CLASS(wxCaretBase
);
189 // ---------------------------------------------------------------------------
190 // now include the real thing
191 // ---------------------------------------------------------------------------
193 #if defined(__WXMSW__)
194 #include "wx/msw/caret.h"
196 #include "wx/generic/caret.h"
199 // ----------------------------------------------------------------------------
200 // wxCaretSuspend: a simple class which hides the caret in its ctor and
201 // restores it in the dtor, this should be used when drawing on the screen to
202 // avoid overdrawing the caret
203 // ----------------------------------------------------------------------------
205 class WXDLLEXPORT wxCaretSuspend
208 wxCaretSuspend(wxWindow
*win
)
210 m_caret
= win
->GetCaret();
225 #endif // _WX_CARET_H_BASE_