]>
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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "caret.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
32 #include "wx/window.h"
40 #include "wx/palmos/private.h"
42 // ---------------------------------------------------------------------------
44 // ---------------------------------------------------------------------------
46 #define CALL_CARET_API(api, args) \
48 wxLogLastError(_T(#api))
50 // ===========================================================================
52 // ===========================================================================
54 // ---------------------------------------------------------------------------
56 // ---------------------------------------------------------------------------
59 int wxCaretBase::GetBlinkTime()
65 void wxCaretBase::SetBlinkTime(int milliseconds
)
69 // ---------------------------------------------------------------------------
70 // creating/destroying the caret
71 // ---------------------------------------------------------------------------
73 bool wxCaret::PalmOSCreateCaret()
78 void wxCaret::OnSetFocus()
82 void wxCaret::OnKillFocus()
86 // ---------------------------------------------------------------------------
87 // showing/hiding the caret
88 // ---------------------------------------------------------------------------
90 void wxCaret::DoShow()
94 void wxCaret::DoHide()
98 // ---------------------------------------------------------------------------
100 // ---------------------------------------------------------------------------
102 void wxCaret::DoMove()
107 // ---------------------------------------------------------------------------
108 // resizing the caret
109 // ---------------------------------------------------------------------------
111 void wxCaret::DoSize()