]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/palmos/caret.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/caret.h
3 // Purpose: wxCaret class - the Palm OS implementation of wxCaret
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
15 class WXDLLIMPEXP_CORE wxCaret
: public wxCaretBase
19 // create the caret of given (in pixels) width and height and associate
20 // with the given window
21 wxCaret(wxWindow
*window
, int width
, int height
)
25 (void)Create(window
, width
, height
);
28 wxCaret(wxWindowBase
*window
, const wxSize
& size
)
32 (void)Create(window
, size
);
35 // process wxWindow notifications
36 virtual void OnSetFocus();
37 virtual void OnKillFocus();
47 // override base class virtuals
48 virtual void DoMove();
49 virtual void DoShow();
50 virtual void DoHide();
51 virtual void DoSize();
53 // helper function which creates the system caret
54 bool PalmOSCreateCaret();
59 wxDECLARE_NO_COPY_CLASS(wxCaret
);
62 #endif // _WX_CARET_H_