ReactOS
0.4.16-dev-1093-g93e9710
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
ciccaret.h
Go to the documentation of this file.
1
/*
2
* PROJECT: ReactOS Cicero
3
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
4
* PURPOSE: Displaying Cicero caret
5
* COPYRIGHT: Copyright 2023 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
6
*/
7
8
#pragma once
9
10
class
CicCaret
11
{
12
protected
:
13
HWND
m_hWnd
;
14
UINT
m_uCaretBlinkTimerID
;
15
POINT
m_pt
;
16
SIZE
m_size
;
17
BOOL
m_bCaretBlinking
;
18
BOOL
m_bCaretVisible
;
19
20
public
:
21
enum
{
TIMER_ID
= 0x4F83AF91 };
22
CicCaret
();
23
virtual
~CicCaret
();
24
operator
HWND
()
const
{
return
m_hWnd
; }
25
26
void
CreateCaret
(
HWND
hWnd
,
SIZE
size
);
27
void
DestroyCaret
();
28
void
HideCaret
();
29
void
InvertCaret
();
30
void
OnTimer
();
31
void
SetCaretPos
(
POINT
pt
);
32
void
SetBlinking
(
BOOL
bBlinking);
33
};
hWnd
HWND hWnd
Definition:
settings.c:17
CicCaret
Definition:
ciccaret.h:11
CicCaret::CicCaret
CicCaret()
Definition:
ciccaret.cpp:14
CicCaret::m_bCaretBlinking
BOOL m_bCaretBlinking
Definition:
ciccaret.h:17
CicCaret::m_hWnd
HWND m_hWnd
Definition:
ciccaret.h:13
CicCaret::m_pt
POINT m_pt
Definition:
ciccaret.h:15
CicCaret::m_uCaretBlinkTimerID
UINT m_uCaretBlinkTimerID
Definition:
ciccaret.h:14
CicCaret::SetBlinking
void SetBlinking(BOOL bBlinking)
Definition:
ciccaret.cpp:107
CicCaret::TIMER_ID
@ TIMER_ID
Definition:
ciccaret.h:21
CicCaret::HideCaret
void HideCaret()
Definition:
ciccaret.cpp:57
CicCaret::DestroyCaret
void DestroyCaret()
Definition:
ciccaret.cpp:47
CicCaret::OnTimer
void OnTimer()
Definition:
ciccaret.cpp:80
CicCaret::SetCaretPos
void SetCaretPos(POINT pt)
Definition:
ciccaret.cpp:92
CicCaret::m_bCaretVisible
BOOL m_bCaretVisible
Definition:
ciccaret.h:18
CicCaret::CreateCaret
void CreateCaret(HWND hWnd, SIZE size)
Definition:
ciccaret.cpp:36
CicCaret::InvertCaret
void InvertCaret()
Definition:
ciccaret.cpp:70
CicCaret::m_size
SIZE m_size
Definition:
ciccaret.h:16
CicCaret::~CicCaret
virtual ~CicCaret()
Definition:
ciccaret.cpp:26
HWND
HANDLE HWND
Definition:
compat.h:19
pt
#define pt(x, y)
Definition:
drawing.c:79
BOOL
unsigned int BOOL
Definition:
ntddk_ex.h:94
size
GLsizeiptr size
Definition:
glext.h:5919
void
Definition:
nsiface.idl:2307
UINT
unsigned int UINT
Definition:
ndis.h:50
_SIZE
Definition:
kdterminal.h:26
tagPOINT
Definition:
polytest.cpp:47
sdk
lib
cicero
ciccaret.h
Generated on Mon May 5 2025 06:14:06 for ReactOS by
1.9.6