PageRenderTime 49ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/qt-everywhere-opensource-src-4.8.2/src/3rdparty/harfbuzz/src/harfbuzz-gsub.h

#
C Header | 139 lines | 69 code | 37 blank | 33 comment | 0 complexity | 02dda6a31969dda802d8ab949cfc4af7 MD5 | raw file
Possible License(s): BSD-3-Clause, Apache-2.0, MPL-2.0-no-copyleft-exception, CC-BY-SA-4.0, LGPL-3.0, GPL-2.0, LGPL-2.0, LGPL-2.1, GPL-3.0
  1. /*
  2. * Copyright (C) 1998-2004 David Turner and Werner Lemberg
  3. * Copyright (C) 2006 Behdad Esfahbod
  4. *
  5. * This is part of HarfBuzz, an OpenType Layout engine library.
  6. *
  7. * Permission is hereby granted, without written agreement and without
  8. * license or royalty fees, to use, copy, modify, and distribute this
  9. * software and its documentation for any purpose, provided that the
  10. * above copyright notice and the following two paragraphs appear in
  11. * all copies of this software.
  12. *
  13. * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
  14. * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
  15. * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
  16. * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  17. * DAMAGE.
  18. *
  19. * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
  20. * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  21. * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
  22. * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
  23. * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  24. */
  25. #ifndef HARFBUZZ_GSUB_H
  26. #define HARFBUZZ_GSUB_H
  27. #include "harfbuzz-gdef.h"
  28. #include "harfbuzz-buffer.h"
  29. HB_BEGIN_HEADER
  30. /* Lookup types for glyph substitution */
  31. #define HB_GSUB_LOOKUP_SINGLE 1
  32. #define HB_GSUB_LOOKUP_MULTIPLE 2
  33. #define HB_GSUB_LOOKUP_ALTERNATE 3
  34. #define HB_GSUB_LOOKUP_LIGATURE 4
  35. #define HB_GSUB_LOOKUP_CONTEXT 5
  36. #define HB_GSUB_LOOKUP_CHAIN 6
  37. #define HB_GSUB_LOOKUP_EXTENSION 7
  38. #define HB_GSUB_LOOKUP_REVERSE_CHAIN 8
  39. /* A pointer to a function which selects the alternate glyph. `pos' is
  40. the position of the glyph with index `glyphID', `num_alternates'
  41. gives the number of alternates in the `alternates' array. `data'
  42. points to the user-defined structure specified during a call to
  43. HB_GSUB_Register_Alternate_Function(). The function must return an
  44. index into the `alternates' array. */
  45. typedef HB_UShort (*HB_AltFunction)(HB_UInt pos,
  46. HB_UShort glyphID,
  47. HB_UShort num_alternates,
  48. HB_UShort* alternates,
  49. void* data );
  50. struct HB_GSUBHeader_
  51. {
  52. HB_GDEFHeader* gdef;
  53. /* the next two fields are used for an alternate substitution callback
  54. function to select the proper alternate glyph. */
  55. void* data;
  56. HB_AltFunction altfunc;
  57. HB_UInt offset;
  58. HB_16Dot16 Version;
  59. HB_ScriptList ScriptList;
  60. HB_FeatureList FeatureList;
  61. HB_LookupList LookupList;
  62. };
  63. typedef struct HB_GSUBHeader_ HB_GSUBHeader;
  64. typedef HB_GSUBHeader* HB_GSUB;
  65. HB_Error HB_Load_GSUB_Table( HB_Stream stream,
  66. HB_GSUBHeader** gsub,
  67. HB_GDEFHeader* gdef,
  68. HB_Stream gdefStream );
  69. HB_Error HB_Done_GSUB_Table( HB_GSUBHeader* gsub );
  70. HB_Error HB_GSUB_Select_Script( HB_GSUBHeader* gsub,
  71. HB_UInt script_tag,
  72. HB_UShort* script_index );
  73. HB_Error HB_GSUB_Select_Language( HB_GSUBHeader* gsub,
  74. HB_UInt language_tag,
  75. HB_UShort script_index,
  76. HB_UShort* language_index,
  77. HB_UShort* req_feature_index );
  78. HB_Error HB_GSUB_Select_Feature( HB_GSUBHeader* gsub,
  79. HB_UInt feature_tag,
  80. HB_UShort script_index,
  81. HB_UShort language_index,
  82. HB_UShort* feature_index );
  83. HB_Error HB_GSUB_Query_Scripts( HB_GSUBHeader* gsub,
  84. HB_UInt** script_tag_list );
  85. HB_Error HB_GSUB_Query_Languages( HB_GSUBHeader* gsub,
  86. HB_UShort script_index,
  87. HB_UInt** language_tag_list );
  88. HB_Error HB_GSUB_Query_Features( HB_GSUBHeader* gsub,
  89. HB_UShort script_index,
  90. HB_UShort language_index,
  91. HB_UInt** feature_tag_list );
  92. HB_Error HB_GSUB_Add_Feature( HB_GSUBHeader* gsub,
  93. HB_UShort feature_index,
  94. HB_UInt property );
  95. HB_Error HB_GSUB_Clear_Features( HB_GSUBHeader* gsub );
  96. HB_Error HB_GSUB_Register_Alternate_Function( HB_GSUBHeader* gsub,
  97. HB_AltFunction altfunc,
  98. void* data );
  99. HB_Error HB_GSUB_Apply_String( HB_GSUBHeader* gsub,
  100. HB_Buffer buffer );
  101. HB_END_HEADER
  102. #endif /* HARFBUZZ_GSUB_H */