]>
git.saurik.com Git - wxWidgets.git/blob - src/palmos/caret.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/caret.cpp
3 // Purpose: Palm OS implementation of wxCaret
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/window.h"
36 #include "wx/palmos/private.h"
38 // ---------------------------------------------------------------------------
40 // ---------------------------------------------------------------------------
42 #define CALL_CARET_API(api, args) \
44 wxLogLastError(wxT(#api))
46 // ===========================================================================
48 // ===========================================================================
50 // ---------------------------------------------------------------------------
52 // ---------------------------------------------------------------------------
55 int wxCaretBase::GetBlinkTime()
61 void wxCaretBase::SetBlinkTime(int milliseconds
)
65 // ---------------------------------------------------------------------------
66 // creating/destroying the caret
67 // ---------------------------------------------------------------------------
69 bool wxCaret::PalmOSCreateCaret()
74 void wxCaret::OnSetFocus()
78 void wxCaret::OnKillFocus()
82 // ---------------------------------------------------------------------------
83 // showing/hiding the caret
84 // ---------------------------------------------------------------------------
86 void wxCaret::DoShow()
90 void wxCaret::DoHide()
94 // ---------------------------------------------------------------------------
96 // ---------------------------------------------------------------------------
98 void wxCaret::DoMove()
103 // ---------------------------------------------------------------------------
104 // resizing the caret
105 // ---------------------------------------------------------------------------
107 void wxCaret::DoSize()