]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/caret.h
Changes to allow OLE to compile under mingw32/gcc-2.95
[wxWidgets.git] / include / wx / msw / caret.h
CommitLineData
789295bf
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: msw/caret.h
3// Purpose: wxCaret class - the MSW implementation of wxCaret
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 23.05.99
7// RCS-ID: $Id$
8// Copyright: (c) wxWindows team
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_CARET_H_
13#define _WX_CARET_H_
14
15#ifdef __GNUG__
16 #pragma interface "caret.h"
17#endif
18
19class WXDLLEXPORT wxCaret : public wxCaretBase
20{
21public:
22 wxCaret() { Init(); }
23 // create the caret of given (in pixels) width and height and associate
24 // with the given window
25 wxCaret(wxWindow *window, int width, int height)
26 {
27 Init();
28
29 (void)Create(window, width, height);
30 }
31 // same as above
32 wxCaret(wxWindowBase *window, const wxSize& size)
33 {
34 wxCaretBase::Init();
35
36 (void)Create(window, size);
37 }
38
39 // process wxWindow notifications
40 virtual void OnSetFocus();
41 virtual void OnKillFocus();
42
43protected:
44 void Init()
45 {
46 wxCaretBase::Init();
47
48 m_hasCaret = FALSE;
49 }
50
51 // override base class virtuals
52 virtual void DoMove();
53 virtual void DoShow();
54 virtual void DoHide();
55
56 // helper function which creates the system caret
57 bool MSWCreateCaret();
58
59private:
60 bool m_hasCaret;
61};
62
63#endif // _WX_CARET_H_
64
65