repo.or.cz
/
gdipp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use One-Time Initialization for glyph run caching to avoid duplicate glyph run genera...
[gdipp.git]
/
gdipp_config
/
font_config_criteria.h
blob
674349fdb046213ea1533781352ad6a519099959
1
#pragma once
2
3
namespace
gdipp
4
{
5
6
class
font_config_criteria
7
{
8
public
:
9
font_config_criteria
(
const void
*
node
);
10
bool
is_satisfied
(
bool
bold
,
bool
italic
,
LONG height
,
const wchar_t
*
font_name
)
const
;
11
12
private
:
13
char
_bold
;
14
char
_italic
;
15
LONG _max_height
;
16
std
::
wstring _font_name
;
17
};
18
19
}