25 #ifndef SPECIALCHARS_H
26 #define SPECIALCHARS_H
30 #include "scribusapi.h"
37 static QChar LINEBREAK;
38 static QChar COLBREAK;
39 static QChar FRAMEBREAK;
41 static QChar OLD_NBHYPHEN;
42 static QChar OLD_NBSPACE;
43 static QChar NBHYPHEN;
45 static QChar ZWNBSPACE;
47 static QChar PAGENUMBER;
48 static QChar PAGECOUNT;
51 static bool isBreak(QChar c,
bool includeColBreak =
true);
52 static bool isBreakingSpace(QChar c);
53 static bool isExpandingSpace(QChar c);
56 CJK_FENCE_BEGIN = 0x0001,
57 CJK_FENCE_END = 0x0002,
60 CJK_DELMITER = 0x0005,
61 CJK_MIDPOINT = 0x0006,
71 CJK_CHAR_MASK = 0x00ff,
73 CJK_NOBREAK_BEFORE = 0x0100,
74 CJK_NOBREAK_AFTER = 0x0200,
76 static int getCJKAttr(QChar c);
Definition: specialchars.h:32