mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 19:02:59 +00:00
unify QChar enums declaration style
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
parent
ca260217f9
commit
fc9b77b90a
1 changed files with 28 additions and 14 deletions
|
@ -90,8 +90,7 @@ public:
|
||||||
|
|
||||||
// Unicode information
|
// Unicode information
|
||||||
|
|
||||||
enum Category
|
enum Category {
|
||||||
{
|
|
||||||
NoCategory, // ### Qt 5: replace with Other_NotAssigned
|
NoCategory, // ### Qt 5: replace with Other_NotAssigned
|
||||||
|
|
||||||
Mark_NonSpacing, // Mn
|
Mark_NonSpacing, // Mn
|
||||||
|
@ -132,14 +131,29 @@ public:
|
||||||
Symbol_Other // So
|
Symbol_Other // So
|
||||||
};
|
};
|
||||||
|
|
||||||
enum Direction
|
enum Direction {
|
||||||
{
|
DirL,
|
||||||
DirL, DirR, DirEN, DirES, DirET, DirAN, DirCS, DirB, DirS, DirWS, DirON,
|
DirR,
|
||||||
DirLRE, DirLRO, DirAL, DirRLE, DirRLO, DirPDF, DirNSM, DirBN
|
DirEN,
|
||||||
|
DirES,
|
||||||
|
DirET,
|
||||||
|
DirAN,
|
||||||
|
DirCS,
|
||||||
|
DirB,
|
||||||
|
DirS,
|
||||||
|
DirWS,
|
||||||
|
DirON,
|
||||||
|
DirLRE,
|
||||||
|
DirLRO,
|
||||||
|
DirAL,
|
||||||
|
DirRLE,
|
||||||
|
DirRLO,
|
||||||
|
DirPDF,
|
||||||
|
DirNSM,
|
||||||
|
DirBN
|
||||||
};
|
};
|
||||||
|
|
||||||
enum Decomposition
|
enum Decomposition {
|
||||||
{
|
|
||||||
NoDecomposition,
|
NoDecomposition,
|
||||||
Canonical,
|
Canonical,
|
||||||
Font,
|
Font,
|
||||||
|
@ -158,16 +172,16 @@ public:
|
||||||
Square,
|
Square,
|
||||||
Compat,
|
Compat,
|
||||||
Fraction
|
Fraction
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
enum Joining
|
enum Joining {
|
||||||
{
|
OtherJoining,
|
||||||
OtherJoining, Dual, Right, Center
|
Dual,
|
||||||
|
Right,
|
||||||
|
Center
|
||||||
};
|
};
|
||||||
|
|
||||||
enum CombiningClass
|
enum CombiningClass {
|
||||||
{
|
|
||||||
Combining_BelowLeftAttached = 200,
|
Combining_BelowLeftAttached = 200,
|
||||||
Combining_BelowAttached = 202,
|
Combining_BelowAttached = 202,
|
||||||
Combining_BelowRightAttached = 204,
|
Combining_BelowRightAttached = 204,
|
||||||
|
|
Loading…
Add table
Reference in a new issue