Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*++
Copyright (c) 2001, Microsoft Corporation
Module Name:
caret.h
Abstract:
This file defines the CCaret Class.
Author:
Revision History:
Notes:
--*/
#ifndef _CARET_H_
#define _CARET_H_
#include "boolean.h"
#include "toggle.h"
class CCaret { public: CCaret(); virtual ~CCaret();
public: HRESULT CreateCaret(HWND hParentWnd, SIZE caret_size); HRESULT DestroyCaret(); HRESULT OnTimer();
HRESULT SetCaretPos(POINT pos); HRESULT ShowCaret() { m_show.SetFlag(); return S_OK; } HRESULT HideCaret();
private: HRESULT InvertCaret(); HRESULT UpdateCaretPos(POINT pos);
private: static const UINT_PTR TIMER_EVENT_ID = 0x4f83af91;
HWND m_hParentWnd; UINT_PTR m_hCaretTimer; POINT m_caret_pos; SIZE m_caret_size; CBoolean m_show; CToggle m_toggle; };
#endif // _CARET_H_
|