~ubuntu-branches/ubuntu/wily/scribus/wily-proposed

« back to all changes in this revision

Viewing changes to scribus/text/specialchars.h

  • Committer: Package Import Robot
  • Author(s): Oleksandr Moskalenko
  • Date: 2012-02-09 21:50:56 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120209215056-2wrx1ara0jbm7fi5
Tags: 1.4.0.dfsg+r17287-1
* New upstream stable release upload into Debian (Closes: #654703).
* Applied the Ubuntu armel patch.
* Removed non-free color swatches from resources.
* debian/control:
  - Moved icc-profiles from Recommends to Suggests (Closes: #655885).
  - Updated Standards-Version to 3.9.2.
  - Updated extended description per lintian warning.
* debian/rules:
  - Update mailcap (Closes: #630751). A request for mime.types update has
    been sent to the mime-support maintainer.
  - Added build-arch and build-indep targets per lintian warning.
* debian/patches:
  - top_cmakelists.patch - don't copy extra docs and changelogs.
  - scribus_cmakelists.patch - don't copy extra docs and changelogs.
  - scribus_cmakelists.patch - don't install the non-free "doc" dir.
  - profiles_cmakelists.patch - don't install non-free sRGB profile.
* debian/copyright: 
  - Converted to the DEP5 machine readable foramt.
  - Added licenses for free color swatches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
        static bool isBreakingSpace(QChar c);
53
53
        static bool isExpandingSpace(QChar c);
54
54
 
 
55
        enum {
 
56
                CJK_FENCE_BEGIN = 0x0001,
 
57
                CJK_FENCE_END = 0x0002,
 
58
                CJK_NOTOP = 0x0003,
 
59
                CJK_HYPHEN = 0x0004,
 
60
                CJK_DELMITER = 0x0005,
 
61
                CJK_MIDPOINT = 0x0006,
 
62
                CJK_PERIOD = 0x0007,
 
63
                CJK_COMMA = 0x0008,
 
64
                CJK_BETWEEN = 0x0009,
 
65
                CJK_PREFIX = 0x000a,
 
66
                CJK_POSTFIX = 0x000b,
 
67
                CJK_SPACE = 0x000c,
 
68
                CJK_KANA = 0x000d,
 
69
                CJK_KANJI = 0x000e,
 
70
 
 
71
                CJK_CHAR_MASK = 0x00ff,
 
72
 
 
73
                CJK_NOBREAK_BEFORE = 0x0100,
 
74
                CJK_NOBREAK_AFTER = 0x0200,
 
75
        };
 
76
        static int getCJKAttr(QChar c);
55
77
};
56
78
 
57
79
#endif