789295bf7b
2. new wxCaret class (MSW only so far) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
66 lines
1.4 KiB
C++
66 lines
1.4 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: msw/caret.h
|
|
// Purpose: wxCaret class - the MSW implementation of wxCaret
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 23.05.99
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) wxWindows team
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_CARET_H_
|
|
#define _WX_CARET_H_
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface "caret.h"
|
|
#endif
|
|
|
|
class WXDLLEXPORT wxCaret : public wxCaretBase
|
|
{
|
|
public:
|
|
wxCaret() { Init(); }
|
|
// create the caret of given (in pixels) width and height and associate
|
|
// with the given window
|
|
wxCaret(wxWindow *window, int width, int height)
|
|
{
|
|
Init();
|
|
|
|
(void)Create(window, width, height);
|
|
}
|
|
// same as above
|
|
wxCaret(wxWindowBase *window, const wxSize& size)
|
|
{
|
|
wxCaretBase::Init();
|
|
|
|
(void)Create(window, size);
|
|
}
|
|
|
|
// process wxWindow notifications
|
|
virtual void OnSetFocus();
|
|
virtual void OnKillFocus();
|
|
|
|
protected:
|
|
void Init()
|
|
{
|
|
wxCaretBase::Init();
|
|
|
|
m_hasCaret = FALSE;
|
|
}
|
|
|
|
// override base class virtuals
|
|
virtual void DoMove();
|
|
virtual void DoShow();
|
|
virtual void DoHide();
|
|
|
|
// helper function which creates the system caret
|
|
bool MSWCreateCaret();
|
|
|
|
private:
|
|
bool m_hasCaret;
|
|
};
|
|
|
|
#endif // _WX_CARET_H_
|
|
|
|
|