GRASS GIS 8 Programmer's Manual
8.5.0dev(2025)-565e82de51
Main Page
Related Pages
Data Structures
Data Structures
Class Hierarchy
Data Fields
All
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
~
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
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
Related Functions
Files
File List
Globals
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
Variables
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
x
y
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
o
p
r
s
t
u
v
w
y
Enumerations
a
c
d
e
h
i
j
l
m
n
o
p
r
s
t
v
y
Enumerator
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
Macros
_
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
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
driver/text.c
Go to the documentation of this file.
1
#include "
driver.h
"
2
#include "
driverlib.h
"
3
4
void
COM_Text
(
const
char
*text)
5
{
6
switch
(
font_get_type
()) {
7
case
GFONT_STROKE
:
8
soft_text
(text);
9
break
;
10
case
GFONT_FREETYPE
:
11
soft_text_freetype
(text);
12
break
;
13
case
GFONT_DRIVER
:
14
if
(
driver
->
Text
)
15
(*
driver
->
Text
)(text);
16
break
;
17
}
18
}
COM_Text
void COM_Text(const char *text)
Definition:
driver/text.c:4
driver.h
driverlib.h
soft_text
void soft_text(const char *)
Definition:
text2.c:108
font_get_type
int font_get_type(void)
Definition:
font.c:29
soft_text_freetype
void soft_text_freetype(const char *)
Definition:
text3.c:264
GFONT_DRIVER
#define GFONT_DRIVER
Definition:
fontcap.h:21
GFONT_STROKE
#define GFONT_STROKE
Definition:
fontcap.h:19
GFONT_FREETYPE
#define GFONT_FREETYPE
Definition:
fontcap.h:20
driver
Definition:
driver.h:27
driver::Text
void(* Text)(const char *)
Definition:
driver.h:51
lib
driver
text.c
Generated on Thu Mar 20 2025 07:33:30 for GRASS GIS 8 Programmer's Manual by
1.9.1