summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-4.4/layout/CharSubstitutionFilter.h
blob: 780e8ad2cdf523beffc789147e782e8350225a0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 *
 * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
 *
 */

#ifndef __CHARSUBSTITUTIONFILTER_H
#define __CHARSUBSTITUTIONFILTER_H

#include "LETypes.h"
#include "LEGlyphFilter.h"

U_NAMESPACE_BEGIN

class LEFontInstance;

/**
 * This filter is used by character-based GSUB processors. It
 * accepts only those characters which the given font can display.
 *
 * @internal
 */
class CharSubstitutionFilter : public UMemory, public LEGlyphFilter
{
private:
    /**
     * Holds the font which is used to test the characters.
     *
     * @internal
     */
    const LEFontInstance *fFontInstance;

    /**
     * The copy constructor. Not allowed!
     *
     * @internal
     */
    CharSubstitutionFilter(const CharSubstitutionFilter &other); // forbid copying of this class

    /**
     * The replacement operator. Not allowed!
     *
     * @internal
     */
    CharSubstitutionFilter &operator=(const CharSubstitutionFilter &other); // forbid copying of this class

public:
    /**
     * The constructor.
     *
     * @param fontInstance - the font to use to test the characters.
     *
     * @internal
     */
    CharSubstitutionFilter(const LEFontInstance *fontInstance);

    /**
     * The destructor.
     *
     * @internal
     */
    ~CharSubstitutionFilter();

    /**
     * This method is used to test if a particular
     * character can be displayed by the filter's
     * font.
     *
     * @param glyph - the Unicode character code to be tested
     *
     * @return TRUE if the filter's font can display this character.
     *
     * @internal
     */
    le_bool accept(LEGlyphID glyph) const;
};

U_NAMESPACE_END
#endif