@simonklee/opentui-tex-native-source 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (529) hide show
  1. package/LICENSE +674 -0
  2. package/LICENSE-PROJECT +21 -0
  3. package/README.md +7 -0
  4. package/build.zig +112 -0
  5. package/build.zig.zon +12 -0
  6. package/native/lib.zig +280 -0
  7. package/native/nanosvg.c +4 -0
  8. package/native/vendor/.bootstrap-v5 +1 -0
  9. package/native/vendor/LICENSE-NANOSVG +18 -0
  10. package/native/vendor/microtex/.clang-format +26 -0
  11. package/native/vendor/microtex/.github/workflows/ubuntu.yml +92 -0
  12. package/native/vendor/microtex/.github/workflows/windows-gdi.yml +34 -0
  13. package/native/vendor/microtex/.github/workflows/windows-qt.yml +52 -0
  14. package/native/vendor/microtex/CMakeLists.txt +110 -0
  15. package/native/vendor/microtex/LICENSE +21 -0
  16. package/native/vendor/microtex/MicroTeXInstall.cmake +42 -0
  17. package/native/vendor/microtex/README.md +600 -0
  18. package/native/vendor/microtex/build.zig +209 -0
  19. package/native/vendor/microtex/clatexmath.wrap +6 -0
  20. package/native/vendor/microtex/doc/meson.build +38 -0
  21. package/native/vendor/microtex/doc/microtex-doc.toml.in +47 -0
  22. package/native/vendor/microtex/doc/microtex.svg +39 -0
  23. package/native/vendor/microtex/doc/urlmap.js +6 -0
  24. package/native/vendor/microtex/example/gtk/CMakeLists.txt +68 -0
  25. package/native/vendor/microtex/example/gtk/gtk_main.c +170 -0
  26. package/native/vendor/microtex/example/gtk/isamples.cpp +21 -0
  27. package/native/vendor/microtex/example/gtk/isamples.h +15 -0
  28. package/native/vendor/microtex/example/gtk/meson.build +27 -0
  29. package/native/vendor/microtex/example/gtk/microtex-gtk.gresource.xml +6 -0
  30. package/native/vendor/microtex/example/gtk/microtex-gtk.ui +117 -0
  31. package/native/vendor/microtex/example/gtkmm/CMakeLists.txt +19 -0
  32. package/native/vendor/microtex/example/gtkmm/gtkmm_main.cpp +531 -0
  33. package/native/vendor/microtex/example/gtkmm/meson.build +19 -0
  34. package/native/vendor/microtex/example/memcheck/CMakeLists.txt +12 -0
  35. package/native/vendor/microtex/example/memcheck/mem_check_main.cpp +154 -0
  36. package/native/vendor/microtex/example/qt/CMakeLists.txt +37 -0
  37. package/native/vendor/microtex/example/qt/meson.build +25 -0
  38. package/native/vendor/microtex/example/qt/qt_main.cpp +70 -0
  39. package/native/vendor/microtex/example/qt/qt_mainwindow.cpp +107 -0
  40. package/native/vendor/microtex/example/qt/qt_mainwindow.h +40 -0
  41. package/native/vendor/microtex/example/qt/qt_skiatexwidget.cpp +149 -0
  42. package/native/vendor/microtex/example/qt/qt_skiatexwidget.h +48 -0
  43. package/native/vendor/microtex/example/qt/qt_tex_render.h +15 -0
  44. package/native/vendor/microtex/example/qt/qt_texqmlitem.cpp +56 -0
  45. package/native/vendor/microtex/example/qt/qt_texqmlitem.h +31 -0
  46. package/native/vendor/microtex/example/qt/qt_texwidget.cpp +62 -0
  47. package/native/vendor/microtex/example/qt/qt_texwidget.h +31 -0
  48. package/native/vendor/microtex/example/qtpng/CMakeLists.txt +11 -0
  49. package/native/vendor/microtex/example/qtpng/latex2png.cpp +115 -0
  50. package/native/vendor/microtex/example/samples/samples.cpp +52 -0
  51. package/native/vendor/microtex/example/samples/samples.h +32 -0
  52. package/native/vendor/microtex/example/win32/CMakeLists.txt +15 -0
  53. package/native/vendor/microtex/example/win32/meson.build +18 -0
  54. package/native/vendor/microtex/example/win32/win32_main.cpp +375 -0
  55. package/native/vendor/microtex/githooks/pre-commit +19 -0
  56. package/native/vendor/microtex/githooks/pre-push +103 -0
  57. package/native/vendor/microtex/lib/CMakeLists.txt +234 -0
  58. package/native/vendor/microtex/lib/atom/atom.cpp +14 -0
  59. package/native/vendor/microtex/lib/atom/atom.h +96 -0
  60. package/native/vendor/microtex/lib/atom/atom_accent.cpp +115 -0
  61. package/native/vendor/microtex/lib/atom/atom_accent.h +53 -0
  62. package/native/vendor/microtex/lib/atom/atom_basic.cpp +146 -0
  63. package/native/vendor/microtex/lib/atom/atom_basic.h +273 -0
  64. package/native/vendor/microtex/lib/atom/atom_box.cpp +41 -0
  65. package/native/vendor/microtex/lib/atom/atom_box.h +70 -0
  66. package/native/vendor/microtex/lib/atom/atom_char.cpp +99 -0
  67. package/native/vendor/microtex/lib/atom/atom_char.h +147 -0
  68. package/native/vendor/microtex/lib/atom/atom_delim.cpp +65 -0
  69. package/native/vendor/microtex/lib/atom/atom_delim.h +58 -0
  70. package/native/vendor/microtex/lib/atom/atom_fence.cpp +65 -0
  71. package/native/vendor/microtex/lib/atom/atom_fence.h +56 -0
  72. package/native/vendor/microtex/lib/atom/atom_font.cpp +20 -0
  73. package/native/vendor/microtex/lib/atom/atom_font.h +49 -0
  74. package/native/vendor/microtex/lib/atom/atom_frac.cpp +101 -0
  75. package/native/vendor/microtex/lib/atom/atom_frac.h +42 -0
  76. package/native/vendor/microtex/lib/atom/atom_matrix.cpp +756 -0
  77. package/native/vendor/microtex/lib/atom/atom_matrix.h +268 -0
  78. package/native/vendor/microtex/lib/atom/atom_misc.cpp +230 -0
  79. package/native/vendor/microtex/lib/atom/atom_misc.h +200 -0
  80. package/native/vendor/microtex/lib/atom/atom_operator.cpp +51 -0
  81. package/native/vendor/microtex/lib/atom/atom_operator.h +41 -0
  82. package/native/vendor/microtex/lib/atom/atom_root.cpp +61 -0
  83. package/native/vendor/microtex/lib/atom/atom_root.h +27 -0
  84. package/native/vendor/microtex/lib/atom/atom_row.cpp +334 -0
  85. package/native/vendor/microtex/lib/atom/atom_row.h +176 -0
  86. package/native/vendor/microtex/lib/atom/atom_scripts.cpp +182 -0
  87. package/native/vendor/microtex/lib/atom/atom_scripts.h +52 -0
  88. package/native/vendor/microtex/lib/atom/atom_sideset.cpp +92 -0
  89. package/native/vendor/microtex/lib/atom/atom_sideset.h +24 -0
  90. package/native/vendor/microtex/lib/atom/atom_space.cpp +22 -0
  91. package/native/vendor/microtex/lib/atom/atom_space.h +38 -0
  92. package/native/vendor/microtex/lib/atom/atom_stack.cpp +117 -0
  93. package/native/vendor/microtex/lib/atom/atom_stack.h +103 -0
  94. package/native/vendor/microtex/lib/atom/atom_text.cpp +17 -0
  95. package/native/vendor/microtex/lib/atom/atom_text.h +33 -0
  96. package/native/vendor/microtex/lib/atom/atom_vrow.cpp +96 -0
  97. package/native/vendor/microtex/lib/atom/atom_vrow.h +47 -0
  98. package/native/vendor/microtex/lib/atom/atom_zstack.cpp +66 -0
  99. package/native/vendor/microtex/lib/atom/atom_zstack.h +37 -0
  100. package/native/vendor/microtex/lib/atom/colors_def.cpp +157 -0
  101. package/native/vendor/microtex/lib/atom/meson.build +50 -0
  102. package/native/vendor/microtex/lib/box/box.cpp +49 -0
  103. package/native/vendor/microtex/lib/box/box.h +184 -0
  104. package/native/vendor/microtex/lib/box/box_factory.cpp +162 -0
  105. package/native/vendor/microtex/lib/box/box_factory.h +24 -0
  106. package/native/vendor/microtex/lib/box/box_group.cpp +503 -0
  107. package/native/vendor/microtex/lib/box/box_group.h +285 -0
  108. package/native/vendor/microtex/lib/box/box_single.cpp +179 -0
  109. package/native/vendor/microtex/lib/box/box_single.h +157 -0
  110. package/native/vendor/microtex/lib/box/meson.build +15 -0
  111. package/native/vendor/microtex/lib/core/debug_config.cpp +3 -0
  112. package/native/vendor/microtex/lib/core/debug_config.h +24 -0
  113. package/native/vendor/microtex/lib/core/formula.cpp +180 -0
  114. package/native/vendor/microtex/lib/core/formula.h +137 -0
  115. package/native/vendor/microtex/lib/core/formula_def.cpp +167 -0
  116. package/native/vendor/microtex/lib/core/glue.cpp +108 -0
  117. package/native/vendor/microtex/lib/core/glue.h +55 -0
  118. package/native/vendor/microtex/lib/core/localized_num.cpp +51 -0
  119. package/native/vendor/microtex/lib/core/meson.build +19 -0
  120. package/native/vendor/microtex/lib/core/parser.cpp +874 -0
  121. package/native/vendor/microtex/lib/core/parser.h +306 -0
  122. package/native/vendor/microtex/lib/core/split.cpp +185 -0
  123. package/native/vendor/microtex/lib/core/split.h +40 -0
  124. package/native/vendor/microtex/lib/env/env.cpp +141 -0
  125. package/native/vendor/microtex/lib/env/env.h +221 -0
  126. package/native/vendor/microtex/lib/env/meson.build +11 -0
  127. package/native/vendor/microtex/lib/env/units.cpp +109 -0
  128. package/native/vendor/microtex/lib/env/units.h +61 -0
  129. package/native/vendor/microtex/lib/graphic/font_style.cpp +63 -0
  130. package/native/vendor/microtex/lib/graphic/font_style.h +61 -0
  131. package/native/vendor/microtex/lib/graphic/graphic.cpp +38 -0
  132. package/native/vendor/microtex/lib/graphic/graphic.h +314 -0
  133. package/native/vendor/microtex/lib/graphic/graphic_basic.cpp +44 -0
  134. package/native/vendor/microtex/lib/graphic/graphic_basic.h +131 -0
  135. package/native/vendor/microtex/lib/graphic/meson.build +13 -0
  136. package/native/vendor/microtex/lib/macro/macro.cpp +143 -0
  137. package/native/vendor/microtex/lib/macro/macro.h +155 -0
  138. package/native/vendor/microtex/lib/macro/macro_accent.cpp +50 -0
  139. package/native/vendor/microtex/lib/macro/macro_accent.h +61 -0
  140. package/native/vendor/microtex/lib/macro/macro_boxes.h +68 -0
  141. package/native/vendor/microtex/lib/macro/macro_colors.cpp +42 -0
  142. package/native/vendor/microtex/lib/macro/macro_colors.h +42 -0
  143. package/native/vendor/microtex/lib/macro/macro_decl.h +16 -0
  144. package/native/vendor/microtex/lib/macro/macro_def.cpp +418 -0
  145. package/native/vendor/microtex/lib/macro/macro_delims.cpp +56 -0
  146. package/native/vendor/microtex/lib/macro/macro_delims.h +73 -0
  147. package/native/vendor/microtex/lib/macro/macro_env.h +212 -0
  148. package/native/vendor/microtex/lib/macro/macro_fonts.cpp +53 -0
  149. package/native/vendor/microtex/lib/macro/macro_fonts.h +78 -0
  150. package/native/vendor/microtex/lib/macro/macro_frac.cpp +138 -0
  151. package/native/vendor/microtex/lib/macro/macro_frac.h +50 -0
  152. package/native/vendor/microtex/lib/macro/macro_misc.cpp +211 -0
  153. package/native/vendor/microtex/lib/macro/macro_misc.h +217 -0
  154. package/native/vendor/microtex/lib/macro/macro_scripts.cpp +32 -0
  155. package/native/vendor/microtex/lib/macro/macro_scripts.h +17 -0
  156. package/native/vendor/microtex/lib/macro/macro_sizes.h +110 -0
  157. package/native/vendor/microtex/lib/macro/macro_space.cpp +31 -0
  158. package/native/vendor/microtex/lib/macro/macro_space.h +17 -0
  159. package/native/vendor/microtex/lib/macro/macro_styles.cpp +45 -0
  160. package/native/vendor/microtex/lib/macro/macro_styles.h +22 -0
  161. package/native/vendor/microtex/lib/macro/macro_types.h +48 -0
  162. package/native/vendor/microtex/lib/macro/meson.build +33 -0
  163. package/native/vendor/microtex/lib/meson.build +102 -0
  164. package/native/vendor/microtex/lib/microtex.cpp +208 -0
  165. package/native/vendor/microtex/lib/microtex.h +225 -0
  166. package/native/vendor/microtex/lib/microtexConfig.cmake.in +2 -0
  167. package/native/vendor/microtex/lib/microtexapi.h +22 -0
  168. package/native/vendor/microtex/lib/microtexconfig.h.in +7 -0
  169. package/native/vendor/microtex/lib/microtexexport.h +31 -0
  170. package/native/vendor/microtex/lib/otf/clm.cpp +405 -0
  171. package/native/vendor/microtex/lib/otf/clm.h +61 -0
  172. package/native/vendor/microtex/lib/otf/fontsense.cpp +191 -0
  173. package/native/vendor/microtex/lib/otf/fontsense.h +20 -0
  174. package/native/vendor/microtex/lib/otf/glyph.cpp +53 -0
  175. package/native/vendor/microtex/lib/otf/glyph.h +384 -0
  176. package/native/vendor/microtex/lib/otf/math_consts.h +154 -0
  177. package/native/vendor/microtex/lib/otf/meson.build +18 -0
  178. package/native/vendor/microtex/lib/otf/otf.cpp +84 -0
  179. package/native/vendor/microtex/lib/otf/otf.h +177 -0
  180. package/native/vendor/microtex/lib/otf/otfconfig.h +32 -0
  181. package/native/vendor/microtex/lib/otf/path.cpp +187 -0
  182. package/native/vendor/microtex/lib/otf/path.h +120 -0
  183. package/native/vendor/microtex/lib/render/builder.cpp +68 -0
  184. package/native/vendor/microtex/lib/render/builder.h +73 -0
  185. package/native/vendor/microtex/lib/render/meson.build +11 -0
  186. package/native/vendor/microtex/lib/render/render.cpp +136 -0
  187. package/native/vendor/microtex/lib/render/render.h +59 -0
  188. package/native/vendor/microtex/lib/unimath/font_meta.h +22 -0
  189. package/native/vendor/microtex/lib/unimath/font_src.cpp +21 -0
  190. package/native/vendor/microtex/lib/unimath/font_src.h +61 -0
  191. package/native/vendor/microtex/lib/unimath/math_type.cpp +318 -0
  192. package/native/vendor/microtex/lib/unimath/math_type.h +105 -0
  193. package/native/vendor/microtex/lib/unimath/meson.build +18 -0
  194. package/native/vendor/microtex/lib/unimath/uni_char.cpp +121 -0
  195. package/native/vendor/microtex/lib/unimath/uni_char.h +109 -0
  196. package/native/vendor/microtex/lib/unimath/uni_font.cpp +248 -0
  197. package/native/vendor/microtex/lib/unimath/uni_font.h +139 -0
  198. package/native/vendor/microtex/lib/unimath/uni_symbol.cpp +2929 -0
  199. package/native/vendor/microtex/lib/unimath/uni_symbol.h +31 -0
  200. package/native/vendor/microtex/lib/utils/dict_tree.h +68 -0
  201. package/native/vendor/microtex/lib/utils/exceptions.h +61 -0
  202. package/native/vendor/microtex/lib/utils/log.h +34 -0
  203. package/native/vendor/microtex/lib/utils/meson.build +18 -0
  204. package/native/vendor/microtex/lib/utils/nums.h +24 -0
  205. package/native/vendor/microtex/lib/utils/string_utils.cpp +85 -0
  206. package/native/vendor/microtex/lib/utils/string_utils.h +130 -0
  207. package/native/vendor/microtex/lib/utils/types.h +152 -0
  208. package/native/vendor/microtex/lib/utils/utf.cpp +115 -0
  209. package/native/vendor/microtex/lib/utils/utf.h +58 -0
  210. package/native/vendor/microtex/lib/utils/utils.cpp +40 -0
  211. package/native/vendor/microtex/lib/utils/utils.h +88 -0
  212. package/native/vendor/microtex/lib/wrapper/byte_seq.cpp +46 -0
  213. package/native/vendor/microtex/lib/wrapper/byte_seq.h +70 -0
  214. package/native/vendor/microtex/lib/wrapper/callback.cpp +10 -0
  215. package/native/vendor/microtex/lib/wrapper/callback.h +72 -0
  216. package/native/vendor/microtex/lib/wrapper/cwrapper.cpp +206 -0
  217. package/native/vendor/microtex/lib/wrapper/cwrapper.h +305 -0
  218. package/native/vendor/microtex/lib/wrapper/graphic_wrapper.cpp +211 -0
  219. package/native/vendor/microtex/lib/wrapper/graphic_wrapper.h +159 -0
  220. package/native/vendor/microtex/lib/wrapper/meson.build +22 -0
  221. package/native/vendor/microtex/meson.build +75 -0
  222. package/native/vendor/microtex/meson_options.txt +29 -0
  223. package/native/vendor/microtex/platform/cairo/CMakeLists.txt +36 -0
  224. package/native/vendor/microtex/platform/cairo/graphic_cairo.cpp +384 -0
  225. package/native/vendor/microtex/platform/cairo/graphic_cairo.h +119 -0
  226. package/native/vendor/microtex/platform/cairo/meson.build +47 -0
  227. package/native/vendor/microtex/platform/cairo/microtex-cairoConfig.cmake.in +11 -0
  228. package/native/vendor/microtex/platform/flutter/microtex/.metadata +10 -0
  229. package/native/vendor/microtex/platform/flutter/microtex/CHANGELOG.md +3 -0
  230. package/native/vendor/microtex/platform/flutter/microtex/LICENSE +1 -0
  231. package/native/vendor/microtex/platform/flutter/microtex/README.md +15 -0
  232. package/native/vendor/microtex/platform/flutter/microtex/analysis_options.yaml +4 -0
  233. package/native/vendor/microtex/platform/flutter/microtex/android/build.gradle +56 -0
  234. package/native/vendor/microtex/platform/flutter/microtex/android/settings.gradle +1 -0
  235. package/native/vendor/microtex/platform/flutter/microtex/android/src/main/AndroidManifest.xml +3 -0
  236. package/native/vendor/microtex/platform/flutter/microtex/android/src/main/kotlin/io/nano/microtex/microtex/MicrotexPlugin.kt +35 -0
  237. package/native/vendor/microtex/platform/flutter/microtex/example/.metadata +10 -0
  238. package/native/vendor/microtex/platform/flutter/microtex/example/README.md +16 -0
  239. package/native/vendor/microtex/platform/flutter/microtex/example/analysis_options.yaml +31 -0
  240. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/build.gradle +68 -0
  241. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/debug/AndroidManifest.xml +7 -0
  242. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/AndroidManifest.xml +34 -0
  243. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/kotlin/io/nano/microtex/microtex_example/MainActivity.kt +6 -0
  244. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable/launch_background.xml +12 -0
  245. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
  246. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  247. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  248. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  249. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  250. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  251. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values/styles.xml +18 -0
  252. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values-night/styles.xml +18 -0
  253. package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/profile/AndroidManifest.xml +7 -0
  254. package/native/vendor/microtex/platform/flutter/microtex/example/android/build.gradle +31 -0
  255. package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
  256. package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle.properties +3 -0
  257. package/native/vendor/microtex/platform/flutter/microtex/example/android/settings.gradle +11 -0
  258. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/AppFrameworkInfo.plist +26 -0
  259. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Debug.xcconfig +2 -0
  260. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Release.xcconfig +2 -0
  261. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile +41 -0
  262. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile.lock +22 -0
  263. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/AppDelegate.swift +13 -0
  264. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
  265. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
  266. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
  267. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
  268. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
  269. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
  270. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
  271. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
  272. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
  273. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
  274. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
  275. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
  276. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
  277. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
  278. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
  279. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
  280. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
  281. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
  282. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
  283. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
  284. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
  285. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
  286. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/Main.storyboard +26 -0
  287. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Info.plist +49 -0
  288. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Runner-Bridging-Header.h +1 -0
  289. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.pbxproj +549 -0
  290. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  291. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  292. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  293. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
  294. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
  295. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  296. package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  297. package/native/vendor/microtex/platform/flutter/microtex/example/lib/main.dart +23 -0
  298. package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_in_one.dart +0 -0
  299. package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_screen.dart +208 -0
  300. package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/convert_spans.dart +63 -0
  301. package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/string_ext.dart +10 -0
  302. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/cmp.dart +118 -0
  303. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/draggable.dart +75 -0
  304. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/rich.dart +23 -0
  305. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/split.dart +72 -0
  306. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_highlight_controller.dart +66 -0
  307. package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_input_controller.dart +19 -0
  308. package/native/vendor/microtex/platform/flutter/microtex/example/linux/CMakeLists.txt +116 -0
  309. package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/CMakeLists.txt +87 -0
  310. package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.cc +15 -0
  311. package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.h +15 -0
  312. package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugins.cmake +24 -0
  313. package/native/vendor/microtex/platform/flutter/microtex/example/linux/main.cc +6 -0
  314. package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.cc +104 -0
  315. package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.h +18 -0
  316. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Debug.xcconfig +2 -0
  317. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Release.xcconfig +2 -0
  318. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/GeneratedPluginRegistrant.swift +12 -0
  319. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile +40 -0
  320. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile.lock +22 -0
  321. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/AppDelegate.swift +9 -0
  322. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
  323. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
  324. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
  325. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
  326. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
  327. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
  328. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
  329. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
  330. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Base.lproj/MainMenu.xib +343 -0
  331. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/AppInfo.xcconfig +14 -0
  332. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Debug.xcconfig +2 -0
  333. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Release.xcconfig +2 -0
  334. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Warnings.xcconfig +13 -0
  335. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/DebugProfile.entitlements +12 -0
  336. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Info.plist +32 -0
  337. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/MainFlutterWindow.swift +15 -0
  338. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Release.entitlements +8 -0
  339. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.pbxproj +633 -0
  340. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  341. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
  342. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
  343. package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  344. package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.lock +191 -0
  345. package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.yaml +56 -0
  346. package/native/vendor/microtex/platform/flutter/microtex/example/test/widget_test.dart +26 -0
  347. package/native/vendor/microtex/platform/flutter/microtex/example/windows/CMakeLists.txt +95 -0
  348. package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/CMakeLists.txt +103 -0
  349. package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.cc +14 -0
  350. package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.h +15 -0
  351. package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugins.cmake +24 -0
  352. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/CMakeLists.txt +17 -0
  353. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/Runner.rc +121 -0
  354. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.cpp +61 -0
  355. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.h +33 -0
  356. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/main.cpp +43 -0
  357. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resource.h +16 -0
  358. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resources/app_icon.ico +0 -0
  359. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/runner.exe.manifest +20 -0
  360. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.cpp +64 -0
  361. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.h +19 -0
  362. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.cpp +245 -0
  363. package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.h +98 -0
  364. package/native/vendor/microtex/platform/flutter/microtex/ios/Assets/.gitkeep +0 -0
  365. package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.h +4 -0
  366. package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.m +19 -0
  367. package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/SwiftMicrotexPlugin.swift +14 -0
  368. package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/dummy.h +4 -0
  369. package/native/vendor/microtex/platform/flutter/microtex/ios/microtex.podspec +27 -0
  370. package/native/vendor/microtex/platform/flutter/microtex/lib/microtex.dart +7 -0
  371. package/native/vendor/microtex/platform/flutter/microtex/lib/src/bindings.dart +218 -0
  372. package/native/vendor/microtex/platform/flutter/microtex/lib/src/bounds.dart +10 -0
  373. package/native/vendor/microtex/platform/flutter/microtex/lib/src/context.dart +205 -0
  374. package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontdesc.dart +14 -0
  375. package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontmeta.dart +14 -0
  376. package/native/vendor/microtex/platform/flutter/microtex/lib/src/pathcache.dart +17 -0
  377. package/native/vendor/microtex/platform/flutter/microtex/lib/src/render.dart +291 -0
  378. package/native/vendor/microtex/platform/flutter/microtex/lib/src/texstyle.dart +11 -0
  379. package/native/vendor/microtex/platform/flutter/microtex/lib/src/textlayout.dart +93 -0
  380. package/native/vendor/microtex/platform/flutter/microtex/lib/src/widget.dart +163 -0
  381. package/native/vendor/microtex/platform/flutter/microtex/linux/CMakeLists.txt +33 -0
  382. package/native/vendor/microtex/platform/flutter/microtex/linux/include/microtex/microtex_plugin.h +26 -0
  383. package/native/vendor/microtex/platform/flutter/microtex/linux/microtex_plugin.cc +70 -0
  384. package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/MicrotexPlugin.swift +20 -0
  385. package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/dummy.h +4 -0
  386. package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/microtex-Bridging-Header.h +1 -0
  387. package/native/vendor/microtex/platform/flutter/microtex/macos/microtex.podspec +26 -0
  388. package/native/vendor/microtex/platform/flutter/microtex/nativelib/CMakeLists.txt +44 -0
  389. package/native/vendor/microtex/platform/flutter/microtex/nativelib/builddarwin.sh +108 -0
  390. package/native/vendor/microtex/platform/flutter/microtex/pubspec.yaml +37 -0
  391. package/native/vendor/microtex/platform/flutter/microtex/test/microtex_test.dart +23 -0
  392. package/native/vendor/microtex/platform/flutter/microtex/windows/CMakeLists.txt +32 -0
  393. package/native/vendor/microtex/platform/flutter/microtex/windows/include/microtex/microtex_plugin.h +23 -0
  394. package/native/vendor/microtex/platform/flutter/microtex/windows/microtex_plugin.cpp +82 -0
  395. package/native/vendor/microtex/platform/gdi_win/CMakeLists.txt +20 -0
  396. package/native/vendor/microtex/platform/gdi_win/graphic_win32.cpp +352 -0
  397. package/native/vendor/microtex/platform/gdi_win/graphic_win32.h +137 -0
  398. package/native/vendor/microtex/platform/gdi_win/meson.build +39 -0
  399. package/native/vendor/microtex/platform/gtk/CMakeLists.txt +36 -0
  400. package/native/vendor/microtex/platform/gtk/meson.build +65 -0
  401. package/native/vendor/microtex/platform/gtk/microtex-gtkConfig.cmake.in +11 -0
  402. package/native/vendor/microtex/platform/gtk/microtexequation.cpp +708 -0
  403. package/native/vendor/microtex/platform/gtk/microtexequation.h +72 -0
  404. package/native/vendor/microtex/platform/qt/CMakeLists.txt +37 -0
  405. package/native/vendor/microtex/platform/qt/graphic_qt.cpp +355 -0
  406. package/native/vendor/microtex/platform/qt/graphic_qt.h +116 -0
  407. package/native/vendor/microtex/platform/qt/meson.build +38 -0
  408. package/native/vendor/microtex/platform/qt/microtex-qtConfig.cmake.in +7 -0
  409. package/native/vendor/microtex/platform/skia/CMakeLists.txt +46 -0
  410. package/native/vendor/microtex/platform/skia/graphic_skia.cpp +306 -0
  411. package/native/vendor/microtex/platform/skia/graphic_skia.h +125 -0
  412. package/native/vendor/microtex/platform/skia/microtex-skiaConfig.cmake.in +6 -0
  413. package/native/vendor/microtex/platform/wasm/CMakeLists.txt +38 -0
  414. package/native/vendor/microtex/platform/wasm/emscripten.cross +31 -0
  415. package/native/vendor/microtex/platform/wasm/main.cpp +15 -0
  416. package/native/vendor/microtex/platform/wasm/meson.build +8 -0
  417. package/native/vendor/microtex/platform/wasm/prebuild-example-meson.sh +21 -0
  418. package/native/vendor/microtex/platform/wasm/prebuild-example.sh +21 -0
  419. package/native/vendor/microtex/platform/wasm/prebuild-lib-meson.sh +28 -0
  420. package/native/vendor/microtex/platform/wasm/prebuild-lib.sh +31 -0
  421. package/native/vendor/microtex/platform/wasm/web/.babelrc +10 -0
  422. package/native/vendor/microtex/platform/wasm/web/example/examples.js +43 -0
  423. package/native/vendor/microtex/platform/wasm/web/example/hello.js +31 -0
  424. package/native/vendor/microtex/platform/wasm/web/example/index.html +55 -0
  425. package/native/vendor/microtex/platform/wasm/web/example/index.js +243 -0
  426. package/native/vendor/microtex/platform/wasm/web/example/styles.css +86 -0
  427. package/native/vendor/microtex/platform/wasm/web/example/utils.js +47 -0
  428. package/native/vendor/microtex/platform/wasm/web/lib/context.js +271 -0
  429. package/native/vendor/microtex/platform/wasm/web/lib/index.js +10 -0
  430. package/native/vendor/microtex/platform/wasm/web/lib/render.js +293 -0
  431. package/native/vendor/microtex/platform/wasm/web/lib/runtime.js +14 -0
  432. package/native/vendor/microtex/platform/wasm/web/lib/svg.js +237 -0
  433. package/native/vendor/microtex/platform/wasm/web/lib/textlayout.js +88 -0
  434. package/native/vendor/microtex/platform/wasm/web/package-lock.json +5931 -0
  435. package/native/vendor/microtex/platform/wasm/web/package.json +45 -0
  436. package/native/vendor/microtex/platform/wasm/web/publish-example.sh +17 -0
  437. package/native/vendor/microtex/platform/wasm/web/rollup.config.example.js +24 -0
  438. package/native/vendor/microtex/platform/wasm/web/rollup.config.lib.js +16 -0
  439. package/native/vendor/microtex/prebuilt/otf2clm.py +807 -0
  440. package/native/vendor/microtex/prebuilt/otf2clm.sh +9 -0
  441. package/native/vendor/microtex/prebuilt/preclms.sh +17 -0
  442. package/native/vendor/microtex/readme/example_bw_false.svg +680 -0
  443. package/native/vendor/microtex/readme/example_bw_true.svg +680 -0
  444. package/native/vendor/microtex/readme/example_cjk_trying.svg +54 -0
  445. package/native/vendor/microtex/readme/example_custom_symbols.svg +92 -0
  446. package/native/vendor/microtex/readme/example_debug.svg +764 -0
  447. package/native/vendor/microtex/readme/example_emoji.svg +199 -0
  448. package/native/vendor/microtex/readme/example_have_log.svg +79 -0
  449. package/native/vendor/microtex/readme/example_keep_trying.svg +101 -0
  450. package/native/vendor/microtex/readme/example_logos.svg +50 -0
  451. package/native/vendor/microtex/readme/example_ubuntu.png +0 -0
  452. package/native/vendor/microtex/readme/example_windows.png +0 -0
  453. package/native/vendor/microtex/readme/samples/sample_0.svg +665 -0
  454. package/native/vendor/microtex/readme/samples/sample_1.svg +1259 -0
  455. package/native/vendor/microtex/readme/samples/sample_10.svg +333 -0
  456. package/native/vendor/microtex/readme/samples/sample_11.svg +306 -0
  457. package/native/vendor/microtex/readme/samples/sample_2.svg +2461 -0
  458. package/native/vendor/microtex/readme/samples/sample_3.svg +2653 -0
  459. package/native/vendor/microtex/readme/samples/sample_4.svg +554 -0
  460. package/native/vendor/microtex/readme/samples/sample_5.svg +247 -0
  461. package/native/vendor/microtex/readme/samples/sample_6.svg +1082 -0
  462. package/native/vendor/microtex/readme/samples/sample_7.svg +518 -0
  463. package/native/vendor/microtex/readme/samples/sample_8.svg +529 -0
  464. package/native/vendor/microtex/readme/samples/sample_9.svg +1702 -0
  465. package/native/vendor/microtex/readme/samples.md +301 -0
  466. package/native/vendor/microtex/readme/tex_logo.svg +19 -0
  467. package/native/vendor/microtex/res/EXAMPLE.txt +25 -0
  468. package/native/vendor/microtex/res/SAMPLES.tex +946 -0
  469. package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm1 +0 -0
  470. package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm2 +0 -0
  471. package/native/vendor/microtex/res/firamath/FiraMath-Regular.otf +0 -0
  472. package/native/vendor/microtex/res/firamath/README.md +42 -0
  473. package/native/vendor/microtex/res/lm-math/README +92 -0
  474. package/native/vendor/microtex/res/lm-math/latinmodern-math.clm1 +0 -0
  475. package/native/vendor/microtex/res/lm-math/latinmodern-math.clm2 +0 -0
  476. package/native/vendor/microtex/res/lm-math/latinmodern-math.otf +0 -0
  477. package/native/vendor/microtex/res/tex-gyre/README-TeX-Gyre-DejaVu-Math.txt +82 -0
  478. package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm1 +0 -0
  479. package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm2 +0 -0
  480. package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.otf +0 -0
  481. package/native/vendor/microtex/res/xits/FONTLOG.txt +246 -0
  482. package/native/vendor/microtex/res/xits/OFL.txt +98 -0
  483. package/native/vendor/microtex/res/xits/README.txt +15 -0
  484. package/native/vendor/microtex/res/xits/XITS-Bold.clm1 +0 -0
  485. package/native/vendor/microtex/res/xits/XITS-Bold.clm2 +0 -0
  486. package/native/vendor/microtex/res/xits/XITS-Bold.otf +0 -0
  487. package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm1 +0 -0
  488. package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm2 +0 -0
  489. package/native/vendor/microtex/res/xits/XITS-BoldItalic.otf +0 -0
  490. package/native/vendor/microtex/res/xits/XITS-Italic.clm1 +0 -0
  491. package/native/vendor/microtex/res/xits/XITS-Italic.clm2 +0 -0
  492. package/native/vendor/microtex/res/xits/XITS-Italic.otf +0 -0
  493. package/native/vendor/microtex/res/xits/XITS-Regular.clm1 +0 -0
  494. package/native/vendor/microtex/res/xits/XITS-Regular.clm2 +0 -0
  495. package/native/vendor/microtex/res/xits/XITS-Regular.otf +0 -0
  496. package/native/vendor/microtex/res/xits/XITSMath-Bold.clm1 +0 -0
  497. package/native/vendor/microtex/res/xits/XITSMath-Bold.clm2 +0 -0
  498. package/native/vendor/microtex/res/xits/XITSMath-Bold.otf +0 -0
  499. package/native/vendor/microtex/res/xits/XITSMath-Regular.clm1 +0 -0
  500. package/native/vendor/microtex/res/xits/XITSMath-Regular.clm2 +0 -0
  501. package/native/vendor/microtex/res/xits/XITSMath-Regular.otf +0 -0
  502. package/native/vendor/microtex/test/clm/meson.build +10 -0
  503. package/native/vendor/microtex/test/clm/test_clm.cpp +140 -0
  504. package/native/vendor/microtex/test/env/meson.build +10 -0
  505. package/native/vendor/microtex/test/env/test_env.cpp +100 -0
  506. package/native/vendor/microtex/test/fuzzer/afl.native +20 -0
  507. package/native/vendor/microtex/test/fuzzer/fuzz.sh +135 -0
  508. package/native/vendor/microtex/test/fuzzer/fuzzer.cpp +61 -0
  509. package/native/vendor/microtex/test/fuzzer/generateSeed.java +33 -0
  510. package/native/vendor/microtex/test/fuzzer/meson.build +9 -0
  511. package/native/vendor/microtex/test/fuzzer/microtex.dict +3708 -0
  512. package/native/vendor/microtex/test/fuzzer/platform_none.cpp +100 -0
  513. package/native/vendor/microtex/test/has_filesystem.cpp +8 -0
  514. package/native/vendor/microtex/test/meson.build +6 -0
  515. package/native/vendor/nanosvg.h +3278 -0
  516. package/native/vendor/nanosvgrast.h +1472 -0
  517. package/native/vendor/zigtex/.github/assets/example.svg +27 -0
  518. package/native/vendor/zigtex/LICENSE +674 -0
  519. package/native/vendor/zigtex/README.md +52 -0
  520. package/native/vendor/zigtex/build.zig +52 -0
  521. package/native/vendor/zigtex/build.zig.zon +16 -0
  522. package/native/vendor/zigtex/fonts/latinmodern-math.clm2 +0 -0
  523. package/native/vendor/zigtex/src/main.zig +22 -0
  524. package/native/vendor/zigtex/src/root.zig +124 -0
  525. package/native/vendor/zigtex/src/svg.zig +273 -0
  526. package/native/vendor/zigtex/src/tex.zig +383 -0
  527. package/native/zigtex-0.16.patch +35 -0
  528. package/package.json +27 -0
  529. package/scripts/bootstrap-native +89 -0
@@ -0,0 +1,285 @@
1
+ #ifndef MICROTEX_BOX_GROUP_H
2
+ #define MICROTEX_BOX_GROUP_H
3
+
4
+ #include "atom/atom.h"
5
+ #include "graphic/graphic_basic.h"
6
+ #include "utils/nums.h"
7
+
8
+ namespace microtex {
9
+
10
+ /***************************************************************************************************
11
+ * rule boxes *
12
+ ***************************************************************************************************/
13
+
14
+ /** A box composed of a horizontal row of child boxes */
15
+ class HBox : public BoxGroup {
16
+ private:
17
+ void recalculate(const Box& box);
18
+
19
+ std::pair<sptr<HBox>, sptr<HBox>> split(int pos, int shift);
20
+
21
+ public:
22
+ std::vector<int> _breakPositions;
23
+
24
+ HBox() = default;
25
+
26
+ /** Create a horizontal box with alignment */
27
+ HBox(const sptr<Box>& box, float width, Alignment alignment);
28
+
29
+ /** Create a horizontal box that child box aligned at center with bias */
30
+ HBox(const sptr<Box>& box, float width, float bias);
31
+
32
+ explicit HBox(const sptr<Box>& box);
33
+
34
+ sptr<HBox> cloneBox();
35
+
36
+ void add(const sptr<Box>& box) override;
37
+
38
+ void add(int pos, const sptr<Box>& box) override;
39
+
40
+ void replaceFirst(const sptr<Box>& from, const sptr<Box>& to) override;
41
+
42
+ inline void addBreakPosition(int pos) { _breakPositions.push_back(pos); }
43
+
44
+ std::pair<sptr<HBox>, sptr<HBox>> split(int pos) { return split(pos, 1); }
45
+
46
+ std::pair<sptr<HBox>, sptr<HBox>> splitRemove(int pos) { return split(pos, 2); }
47
+
48
+ void draw(Graphics2D& g2, float x, float y) override;
49
+
50
+ boxname(HBox);
51
+ };
52
+
53
+ /** A box composed of other boxes, put one above the other */
54
+ class VBox : public BoxGroup {
55
+ private:
56
+ float _leftMostPos, _rightMostPos;
57
+
58
+ void recalculateWidth(const Box& box);
59
+
60
+ public:
61
+ VBox() : _leftMostPos(F_MAX), _rightMostPos(F_MIN) {}
62
+
63
+ VBox(const sptr<Box>& box, float rest, Alignment alignment);
64
+
65
+ inline float leftMostPos() const { return _leftMostPos; }
66
+
67
+ void add(const sptr<Box>& box) override;
68
+
69
+ void add(const sptr<Box>& box, float interline);
70
+
71
+ void add(int pos, const sptr<Box>& box) override;
72
+
73
+ void draw(Graphics2D& g2, float x, float y) override;
74
+
75
+ boxname(VBox);
76
+ };
77
+
78
+ /***************************************************************************************************
79
+ * operation boxes *
80
+ ***************************************************************************************************/
81
+
82
+ class ColorBox : public DecorBox {
83
+ private:
84
+ color _foreground = transparent;
85
+ color _background = transparent;
86
+
87
+ public:
88
+ ColorBox() = delete;
89
+
90
+ explicit ColorBox(const sptr<Box>& box, color fg = transparent, color bg = transparent);
91
+
92
+ void draw(Graphics2D& g2, float x, float y) override;
93
+
94
+ boxname(ColorBox);
95
+ };
96
+
97
+ /** A box representing a scale operation */
98
+ class ScaleBox : public DecorBox {
99
+ private:
100
+ float _sx = 1, _sy = 1;
101
+
102
+ void init(const sptr<Box>& b, float sx, float sy);
103
+
104
+ public:
105
+ ScaleBox() = delete;
106
+
107
+ ScaleBox(const sptr<Box>& b, float sx, float sy) : DecorBox(b) { init(b, sx, sy); }
108
+
109
+ ScaleBox(const sptr<Box>& b, float factor) : DecorBox(b) { init(b, factor, factor); }
110
+
111
+ void draw(Graphics2D& g2, float x, float y) override;
112
+
113
+ boxname(ScaleBox);
114
+ };
115
+
116
+ /** A box representing a reflected box */
117
+ class ReflectBox : public DecorBox {
118
+ public:
119
+ ReflectBox() = delete;
120
+
121
+ explicit ReflectBox(const sptr<Box>& b);
122
+
123
+ void draw(Graphics2D& g2, float x, float y) override;
124
+
125
+ boxname(ReflectBox);
126
+ };
127
+
128
+ /** Enumeration representing rotation origin */
129
+ enum class Rotation {
130
+ bl, // Bottom Left
131
+ bc, // Bottom Center
132
+ br, // Bottom Right
133
+ tl, // Top Left
134
+ tc, // Top Center
135
+ tr, // Top Right
136
+ Bl, // Baseline Left
137
+ Br, // Baseline Right
138
+ Bc, // Baseline Center
139
+ cl, // Center Left
140
+ cc, // Center Center
141
+ cr, // Center Right
142
+ none = -1
143
+ };
144
+
145
+ /** A box representing a rotate operation */
146
+ class RotateBox : public DecorBox {
147
+ private:
148
+ float _angle = 0;
149
+ float _xmax = 0, _xmin = 0, _ymax = 0, _ymin = 0;
150
+ float _shiftX = 0, _shiftY = 0;
151
+
152
+ void init(const sptr<Box>& b, float angle, float x, float y);
153
+
154
+ static Point calculateShift(const Box& b, Rotation option);
155
+
156
+ public:
157
+ RotateBox() = delete;
158
+
159
+ RotateBox(const sptr<Box>& b, float angle, float x, float y) : DecorBox(b) {
160
+ init(b, angle, x, y);
161
+ }
162
+
163
+ RotateBox(const sptr<Box>& b, float angle, const Point& origin) : DecorBox(b) {
164
+ init(b, angle, origin.x, origin.y);
165
+ }
166
+
167
+ RotateBox(const sptr<Box>& b, float angle, Rotation option) : DecorBox(b) {
168
+ const Point& p = calculateShift(*b, option);
169
+ init(b, angle, p.x, p.y);
170
+ }
171
+
172
+ void draw(Graphics2D& g2, float x, float y) override;
173
+
174
+ boxname(RotateBox);
175
+
176
+ static Rotation getOrigin(std::string option);
177
+ };
178
+
179
+ /***************************************************************************************************
180
+ * wrapped boxes *
181
+ ***************************************************************************************************/
182
+
183
+ /** A box representing a wrapped box by square frame */
184
+ class FramedBox : public DecorBox {
185
+ public:
186
+ float _thickness = 1;
187
+ float _space = 0;
188
+ color _line = transparent;
189
+ color _bg = transparent;
190
+
191
+ void init(const sptr<Box>& box, float thickness, float space);
192
+
193
+ public:
194
+ FramedBox() = delete;
195
+
196
+ FramedBox(const sptr<Box>& box, float thickness, float space) : DecorBox(box) {
197
+ init(box, thickness, space);
198
+ }
199
+
200
+ FramedBox(const sptr<Box>& box, float thickness, float space, color line, color bg)
201
+ : DecorBox(box) {
202
+ init(box, thickness, space);
203
+ _line = line;
204
+ _bg = bg;
205
+ }
206
+
207
+ void draw(Graphics2D& g2, float x, float y) override;
208
+
209
+ boxname(FramedBox);
210
+ };
211
+
212
+ /** A box representing a wrapped box by oval frame */
213
+ class OvalBox : public FramedBox {
214
+ private:
215
+ float _multiplier, _diameter;
216
+
217
+ public:
218
+ OvalBox() = delete;
219
+
220
+ explicit OvalBox(const sptr<FramedBox>& fbox, float multiplier = 0.5f, float diameter = 0.f)
221
+ : FramedBox(fbox->_base, fbox->_thickness, fbox->_space),
222
+ _multiplier(multiplier),
223
+ _diameter(diameter) {}
224
+
225
+ void draw(Graphics2D& g2, float x, float y) override;
226
+
227
+ boxname(OvalBox);
228
+ };
229
+
230
+ /** A box representing a wrapped box by shadowed frame */
231
+ class ShadowBox : public FramedBox {
232
+ private:
233
+ float _shadowRule;
234
+
235
+ public:
236
+ ShadowBox() = delete;
237
+
238
+ ShadowBox(const sptr<FramedBox>& fbox, float shadowRule)
239
+ : FramedBox(fbox->_base, fbox->_thickness, fbox->_space) {
240
+ _shadowRule = shadowRule;
241
+ _depth += shadowRule;
242
+ _width += shadowRule;
243
+ }
244
+
245
+ void draw(Graphics2D& g2, float x, float y) override;
246
+
247
+ boxname(ShadowBox);
248
+ };
249
+
250
+ /** A box representing 'wrapper' that with insets in left, top, right and bottom */
251
+ class WrapperBox : public DecorBox {
252
+ private:
253
+ float _l;
254
+ color _fg = 0, _bg = 0;
255
+
256
+ public:
257
+ WrapperBox() = delete;
258
+
259
+ WrapperBox(const sptr<Box>& base, float width, float rowheight, float rowdepth, Alignment align)
260
+ : DecorBox(base), _l(0) {
261
+ _height = rowheight;
262
+ _depth = rowdepth;
263
+ _width = width;
264
+ if (base->_width < 0) _width += base->_width;
265
+ if (align == Alignment::right) {
266
+ _l = width - _base->_width;
267
+ } else if (align == Alignment::center) {
268
+ _l = (width - _base->_width) / 2.f;
269
+ }
270
+ }
271
+
272
+ inline void setForeground(color fg) { _fg = fg; }
273
+
274
+ inline void setBackground(color bg) { _bg = bg; }
275
+
276
+ void addInsets(float l, float t, float r, float b);
277
+
278
+ void draw(Graphics2D& g2, float x, float y) override;
279
+
280
+ boxname(WrapperBox);
281
+ };
282
+
283
+ } // namespace microtex
284
+
285
+ #endif // MICROTEX_BOX_GROUP_H
@@ -0,0 +1,179 @@
1
+ #include "box_single.h"
2
+
3
+ #include "core/debug_config.h"
4
+ #include "env/env.h"
5
+ #include "microtex.h"
6
+ #include "utils/exceptions.h"
7
+ #include "utils/log.h"
8
+ #include "utils/utf.h"
9
+
10
+ using namespace std;
11
+ using namespace microtex;
12
+
13
+ CharBox::CharBox(const Char& chr) : _chr(chr) {
14
+ _width = chr.width();
15
+ _height = chr.height();
16
+ _depth = chr.depth();
17
+ }
18
+
19
+ namespace microtex {
20
+
21
+ #ifdef HAVE_GLYPH_RENDER_TYPEFACE
22
+
23
+ void _drawWithFont(const Char& chr, Graphics2D& g2, float x, float y) {
24
+ auto factory = PlatformFactory::get();
25
+ const auto font = factory->createFont(chr.otfFont()->fontFile);
26
+ g2.setFont(font);
27
+ g2.setFontSize(Env::fixedTextSize() * chr.scale);
28
+ if (chr.isValid()) {
29
+ g2.drawGlyph(chr.glyphId, x, y);
30
+ return;
31
+ }
32
+ const auto old = g2.getColor();
33
+ g2.setColor(red);
34
+ g2.drawGlyph(chr.fallbackGlyphId(), x, y);
35
+ g2.setColor(old);
36
+ }
37
+
38
+ #endif
39
+
40
+ #ifdef HAVE_GLYPH_RENDER_PATH
41
+
42
+ void _drawWithPath(const Char& chr, Graphics2D& g2, float x, float y) {
43
+ const auto old = g2.getColor();
44
+ if (!chr.isValid()) g2.setColor(red);
45
+ const auto scale = chr.scale;
46
+ g2.translate(x, y);
47
+ if (scale != 1.f) g2.scale(scale, scale);
48
+ chr.glyph()->path().draw(g2);
49
+ if (scale != 1.f) g2.scale(1 / scale, 1 / scale);
50
+ g2.translate(-x, -y);
51
+ if (!chr.isValid()) g2.setColor(old);
52
+ }
53
+
54
+ #endif
55
+ } // namespace microtex
56
+
57
+ void CharBox::draw(Graphics2D& g2, float x, float y) {
58
+ #if GLYPH_RENDER_TYPE == GLYPH_RENDER_TYPE_PATH
59
+ _drawWithPath(_chr, g2, x, y);
60
+ #elif GLYPH_RENDER_TYPE == GLYPH_RENDER_TYPE_TYPEFACE
61
+ _drawWithFont(_chr, g2, x, y);
62
+ #elif GLYPH_RENDER_TYPE == GLYPH_RENDER_TYPE_BOTH
63
+ auto font = _chr.otfFont();
64
+ const bool hasGlyphPath = font != nullptr && font->otf().hasGlyphPath();
65
+ #ifdef HAVE_LOG
66
+ if (MicroTeX::isRenderGlyphUsePath() && !hasGlyphPath) {
67
+ logv(
68
+ "Render use glyph path, but the font '%s' does not have glyph paths, "
69
+ "fallback to use font instead.\n",
70
+ font->otf().name().c_str()
71
+ );
72
+ }
73
+ #endif
74
+ if (MicroTeX::isRenderGlyphUsePath() && hasGlyphPath) {
75
+ _drawWithPath(_chr, g2, x, y);
76
+ } else {
77
+ _drawWithFont(_chr, g2, x, y);
78
+ }
79
+ #endif
80
+ }
81
+
82
+ int CharBox::lastFontId() {
83
+ return _chr.fontId;
84
+ }
85
+
86
+ std::string CharBox::toString() const {
87
+ std::string str;
88
+ appendToUtf8(str, _chr.mappedCode);
89
+ return str + " scale: " + std::to_string(_chr.scale);
90
+ }
91
+
92
+ TextBox::TextBox(const std::string& str, FontStyle style, float size) {
93
+ auto factory = PlatformFactory::get();
94
+ _layout = factory->createTextLayout(str, style, size);
95
+ Rect rect;
96
+ _layout->getBounds(rect);
97
+ _height = -rect.y;
98
+ _depth = rect.h - _height;
99
+ _width = rect.w + rect.x;
100
+ }
101
+
102
+ void TextBox::draw(Graphics2D& g2, float x, float y) {
103
+ g2.translate(x, y);
104
+ _layout->draw(g2, 0, 0);
105
+ g2.translate(-x, -y);
106
+ }
107
+
108
+ LineBox::LineBox(const vector<float>& lines, float thickness) {
109
+ _thickness = thickness;
110
+ if (lines.size() % 4 != 0) throw ex_invalid_param("The vector not represent lines.");
111
+ _lines = lines;
112
+ }
113
+
114
+ void LineBox::draw(Graphics2D& g2, float x, float y) {
115
+ const auto oldStroke = g2.getStroke();
116
+ auto stroke = Stroke(_thickness, CAP_ROUND, JOIN_ROUND);
117
+ g2.setStroke(stroke);
118
+ g2.translate(0, -_height);
119
+ int count = _lines.size() / 4;
120
+ for (int i = 0; i < count; i++) {
121
+ int j = i * 4;
122
+ float x1 = _lines[j] + x, y1 = _lines[j + 1] + y;
123
+ float x2 = _lines[j + 2] + x, y2 = _lines[j + 3] + y;
124
+ g2.drawLine(x1, y1, x2, y2);
125
+ }
126
+ g2.translate(0, _height);
127
+ g2.setStroke(oldStroke);
128
+ }
129
+
130
+ RuleBox::RuleBox(float thickness, float width, float shift, color c, bool trueshift)
131
+ : _color(c), _speShift(0) {
132
+ _height = thickness;
133
+ _width = width;
134
+ if (trueshift) {
135
+ _shift = shift;
136
+ } else {
137
+ _shift = 0;
138
+ _speShift = shift;
139
+ }
140
+ }
141
+
142
+ void RuleBox::draw(Graphics2D& g2, float x, float y) {
143
+ const color oldColor = g2.getColor();
144
+ if (!isTransparent(_color)) g2.setColor(_color);
145
+ const Stroke oldStroke = g2.getStroke();
146
+ g2.setStroke(Stroke(_height, CAP_BUTT, JOIN_BEVEL));
147
+ y = y - _height / 2.f - _speShift;
148
+ g2.drawLine(x, y, x + _width, y);
149
+ g2.setStroke(oldStroke);
150
+ g2.setColor(oldColor);
151
+ }
152
+
153
+ DebugBox::DebugBox(const sptr<Box>& base) {
154
+ copyMetrics(base);
155
+ }
156
+
157
+ void DebugBox::draw(Graphics2D& g2, float x, float y) {
158
+ const auto& config = DebugConfig::INSTANCE;
159
+
160
+ const color prevColor = g2.getColor();
161
+ const auto& prevStroke = g2.getStroke();
162
+
163
+ g2.setColor(config.boundColor);
164
+ g2.setStrokeWidth(std::abs(1.f / g2.sx()));
165
+
166
+ // draw box
167
+ g2.drawRect(x, y - _height, _width, _height + _depth);
168
+ // draw baseline
169
+ if (_depth > PREC) {
170
+ const auto& prevDash = g2.getDash();
171
+ g2.setColor(config.baselineColor);
172
+ g2.setDash({std::abs(5 / g2.sx()), std::abs(5 / g2.sx())});
173
+ g2.drawLine(x, y, x + _width, y);
174
+ g2.setDash(prevDash);
175
+ }
176
+
177
+ g2.setColor(prevColor);
178
+ g2.setStroke(prevStroke);
179
+ }
@@ -0,0 +1,157 @@
1
+ #ifndef MICROTEX_BOX_SINGLE_H
2
+ #define MICROTEX_BOX_SINGLE_H
3
+
4
+ #include "atom/atom.h"
5
+ #include "graphic/font_style.h"
6
+ #include "graphic/graphic_basic.h"
7
+ #include "unimath/uni_char.h"
8
+
9
+ namespace microtex {
10
+
11
+ class TextLayout;
12
+
13
+ /** A box representing whitespace */
14
+ class StrutBox : public Box {
15
+ public:
16
+ StrutBox() = delete;
17
+
18
+ explicit StrutBox(const sptr<Box>& box) noexcept {
19
+ copyMetrics(box);
20
+ _shift = _shift;
21
+ }
22
+
23
+ StrutBox(float width, float height, float depth, float shift) noexcept {
24
+ _width = width;
25
+ _height = height;
26
+ _depth = depth;
27
+ _shift = shift;
28
+ }
29
+
30
+ void draw(Graphics2D& g2, float x, float y) override {
31
+ // no visual effect
32
+ }
33
+
34
+ bool isSpace() const override { return true; }
35
+
36
+ boxname(StrutBox);
37
+
38
+ static sptr<StrutBox> empty() noexcept { return sptrOf<StrutBox>(0.f, 0.f, 0.f, 0.f); }
39
+
40
+ static sptr<StrutBox> create(float width) noexcept {
41
+ return sptrOf<StrutBox>(width, 0.f, 0.f, 0.f);
42
+ }
43
+ };
44
+
45
+ /** A box representing glue */
46
+ class GlueBox : public Box {
47
+ public:
48
+ // Not used by now
49
+ float _stretch, _shrink;
50
+
51
+ GlueBox() = delete;
52
+
53
+ GlueBox(float space, float stretch, float shrink) {
54
+ _width = space;
55
+ _stretch = stretch;
56
+ _shrink = shrink;
57
+ }
58
+
59
+ void draw(Graphics2D& g2, float x, float y) override {
60
+ // no visual effect
61
+ }
62
+
63
+ bool isSpace() const override { return true; }
64
+
65
+ boxname(GlueBox);
66
+ };
67
+
68
+ /** A box representing a single character */
69
+ class CharBox : public Box {
70
+ private:
71
+ Char _chr;
72
+
73
+ public:
74
+ CharBox() = delete;
75
+
76
+ /**
77
+ * Create a new CharBox that will represent the character defined by the
78
+ * given Char-object.
79
+ *
80
+ * @param chr a Char-object containing the character's font information.
81
+ */
82
+ explicit CharBox(const Char& chr);
83
+
84
+ inline float italic() const { return _chr.italic(); }
85
+
86
+ void draw(Graphics2D& g2, float x, float y) override;
87
+
88
+ int lastFontId() override;
89
+
90
+ std::string toString() const override;
91
+
92
+ boxname(CharBox);
93
+ };
94
+
95
+ /**
96
+ * Box to draw text. The metrics measurement and drawing is
97
+ * delegated to rendering backend.
98
+ */
99
+ class TextBox : public Box {
100
+ private:
101
+ sptr<TextLayout> _layout;
102
+
103
+ public:
104
+ TextBox() = delete;
105
+
106
+ TextBox(const std::string& str, FontStyle style, float size);
107
+
108
+ void draw(Graphics2D& g2, float x, float y) override;
109
+
110
+ boxname(TextBox);
111
+ };
112
+
113
+ /** Class represents several lines */
114
+ class LineBox : public Box {
115
+ private:
116
+ // Every 4 elements represent a line, thus (x1, y1, x2, y2)
117
+ std::vector<float> _lines;
118
+ float _thickness;
119
+
120
+ public:
121
+ LineBox() = delete;
122
+
123
+ LineBox(const std::vector<float>& lines, float thickness);
124
+
125
+ void draw(Graphics2D& g2, float x, float y) override;
126
+
127
+ boxname(LineBox);
128
+ };
129
+
130
+ /** A box representing a line. */
131
+ class RuleBox : public Box {
132
+ private:
133
+ color _color;
134
+ float _speShift;
135
+
136
+ public:
137
+ RuleBox() = delete;
138
+
139
+ RuleBox(float thickness, float width, float shift, color c = transparent, bool trueshift = true);
140
+
141
+ void draw(Graphics2D& g2, float x, float y) override;
142
+
143
+ boxname(RuleBox);
144
+ };
145
+
146
+ class DebugBox : public Box {
147
+ public:
148
+ explicit DebugBox(const sptr<Box>& base);
149
+
150
+ void draw(Graphics2D& g2, float x, float y) override;
151
+
152
+ boxname(DebugBox);
153
+ };
154
+
155
+ } // namespace microtex
156
+
157
+ #endif // MICROTEX_BOX_SINGLE_H
@@ -0,0 +1,15 @@
1
+ box_src = [
2
+ 'box/box.cpp',
3
+ 'box/box_factory.cpp',
4
+ 'box/box_group.cpp',
5
+ 'box/box_single.cpp'
6
+ ]
7
+
8
+ if install_headerfiles
9
+ install_headers([
10
+ 'box_factory.h',
11
+ 'box_group.h',
12
+ 'box.h',
13
+ 'box_single.h'
14
+ ], subdir: 'microtex/box')
15
+ endif
@@ -0,0 +1,3 @@
1
+ #include "core/debug_config.h"
2
+
3
+ microtex::DebugConfig microtex::DebugConfig::INSTANCE;
@@ -0,0 +1,24 @@
1
+ #ifndef MICROTEX_DEBUG_CONFIG_H
2
+ #define MICROTEX_DEBUG_CONFIG_H
3
+
4
+ #include "graphic/graphic_basic.h"
5
+
6
+ namespace microtex {
7
+
8
+ /** The graphic debug configs */
9
+ struct DebugConfig {
10
+ /** If enable debug mode */
11
+ bool enable = false;
12
+ /** If show only the char boxes */
13
+ bool showOnlyChar = true;
14
+ /** The box's bound rectangle color */
15
+ color boundColor = RED;
16
+ /** The box's baseline color */
17
+ color baselineColor = BLUE;
18
+
19
+ static DebugConfig INSTANCE;
20
+ };
21
+
22
+ } // namespace microtex
23
+
24
+ #endif