@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.
- package/LICENSE +674 -0
- package/LICENSE-PROJECT +21 -0
- package/README.md +7 -0
- package/build.zig +112 -0
- package/build.zig.zon +12 -0
- package/native/lib.zig +280 -0
- package/native/nanosvg.c +4 -0
- package/native/vendor/.bootstrap-v5 +1 -0
- package/native/vendor/LICENSE-NANOSVG +18 -0
- package/native/vendor/microtex/.clang-format +26 -0
- package/native/vendor/microtex/.github/workflows/ubuntu.yml +92 -0
- package/native/vendor/microtex/.github/workflows/windows-gdi.yml +34 -0
- package/native/vendor/microtex/.github/workflows/windows-qt.yml +52 -0
- package/native/vendor/microtex/CMakeLists.txt +110 -0
- package/native/vendor/microtex/LICENSE +21 -0
- package/native/vendor/microtex/MicroTeXInstall.cmake +42 -0
- package/native/vendor/microtex/README.md +600 -0
- package/native/vendor/microtex/build.zig +209 -0
- package/native/vendor/microtex/clatexmath.wrap +6 -0
- package/native/vendor/microtex/doc/meson.build +38 -0
- package/native/vendor/microtex/doc/microtex-doc.toml.in +47 -0
- package/native/vendor/microtex/doc/microtex.svg +39 -0
- package/native/vendor/microtex/doc/urlmap.js +6 -0
- package/native/vendor/microtex/example/gtk/CMakeLists.txt +68 -0
- package/native/vendor/microtex/example/gtk/gtk_main.c +170 -0
- package/native/vendor/microtex/example/gtk/isamples.cpp +21 -0
- package/native/vendor/microtex/example/gtk/isamples.h +15 -0
- package/native/vendor/microtex/example/gtk/meson.build +27 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.gresource.xml +6 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.ui +117 -0
- package/native/vendor/microtex/example/gtkmm/CMakeLists.txt +19 -0
- package/native/vendor/microtex/example/gtkmm/gtkmm_main.cpp +531 -0
- package/native/vendor/microtex/example/gtkmm/meson.build +19 -0
- package/native/vendor/microtex/example/memcheck/CMakeLists.txt +12 -0
- package/native/vendor/microtex/example/memcheck/mem_check_main.cpp +154 -0
- package/native/vendor/microtex/example/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/example/qt/meson.build +25 -0
- package/native/vendor/microtex/example/qt/qt_main.cpp +70 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.cpp +107 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.h +40 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.cpp +149 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.h +48 -0
- package/native/vendor/microtex/example/qt/qt_tex_render.h +15 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.cpp +56 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.h +31 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.cpp +62 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.h +31 -0
- package/native/vendor/microtex/example/qtpng/CMakeLists.txt +11 -0
- package/native/vendor/microtex/example/qtpng/latex2png.cpp +115 -0
- package/native/vendor/microtex/example/samples/samples.cpp +52 -0
- package/native/vendor/microtex/example/samples/samples.h +32 -0
- package/native/vendor/microtex/example/win32/CMakeLists.txt +15 -0
- package/native/vendor/microtex/example/win32/meson.build +18 -0
- package/native/vendor/microtex/example/win32/win32_main.cpp +375 -0
- package/native/vendor/microtex/githooks/pre-commit +19 -0
- package/native/vendor/microtex/githooks/pre-push +103 -0
- package/native/vendor/microtex/lib/CMakeLists.txt +234 -0
- package/native/vendor/microtex/lib/atom/atom.cpp +14 -0
- package/native/vendor/microtex/lib/atom/atom.h +96 -0
- package/native/vendor/microtex/lib/atom/atom_accent.cpp +115 -0
- package/native/vendor/microtex/lib/atom/atom_accent.h +53 -0
- package/native/vendor/microtex/lib/atom/atom_basic.cpp +146 -0
- package/native/vendor/microtex/lib/atom/atom_basic.h +273 -0
- package/native/vendor/microtex/lib/atom/atom_box.cpp +41 -0
- package/native/vendor/microtex/lib/atom/atom_box.h +70 -0
- package/native/vendor/microtex/lib/atom/atom_char.cpp +99 -0
- package/native/vendor/microtex/lib/atom/atom_char.h +147 -0
- package/native/vendor/microtex/lib/atom/atom_delim.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_delim.h +58 -0
- package/native/vendor/microtex/lib/atom/atom_fence.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_fence.h +56 -0
- package/native/vendor/microtex/lib/atom/atom_font.cpp +20 -0
- package/native/vendor/microtex/lib/atom/atom_font.h +49 -0
- package/native/vendor/microtex/lib/atom/atom_frac.cpp +101 -0
- package/native/vendor/microtex/lib/atom/atom_frac.h +42 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.cpp +756 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.h +268 -0
- package/native/vendor/microtex/lib/atom/atom_misc.cpp +230 -0
- package/native/vendor/microtex/lib/atom/atom_misc.h +200 -0
- package/native/vendor/microtex/lib/atom/atom_operator.cpp +51 -0
- package/native/vendor/microtex/lib/atom/atom_operator.h +41 -0
- package/native/vendor/microtex/lib/atom/atom_root.cpp +61 -0
- package/native/vendor/microtex/lib/atom/atom_root.h +27 -0
- package/native/vendor/microtex/lib/atom/atom_row.cpp +334 -0
- package/native/vendor/microtex/lib/atom/atom_row.h +176 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.cpp +182 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.h +52 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.cpp +92 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.h +24 -0
- package/native/vendor/microtex/lib/atom/atom_space.cpp +22 -0
- package/native/vendor/microtex/lib/atom/atom_space.h +38 -0
- package/native/vendor/microtex/lib/atom/atom_stack.cpp +117 -0
- package/native/vendor/microtex/lib/atom/atom_stack.h +103 -0
- package/native/vendor/microtex/lib/atom/atom_text.cpp +17 -0
- package/native/vendor/microtex/lib/atom/atom_text.h +33 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.cpp +96 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.h +47 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.cpp +66 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.h +37 -0
- package/native/vendor/microtex/lib/atom/colors_def.cpp +157 -0
- package/native/vendor/microtex/lib/atom/meson.build +50 -0
- package/native/vendor/microtex/lib/box/box.cpp +49 -0
- package/native/vendor/microtex/lib/box/box.h +184 -0
- package/native/vendor/microtex/lib/box/box_factory.cpp +162 -0
- package/native/vendor/microtex/lib/box/box_factory.h +24 -0
- package/native/vendor/microtex/lib/box/box_group.cpp +503 -0
- package/native/vendor/microtex/lib/box/box_group.h +285 -0
- package/native/vendor/microtex/lib/box/box_single.cpp +179 -0
- package/native/vendor/microtex/lib/box/box_single.h +157 -0
- package/native/vendor/microtex/lib/box/meson.build +15 -0
- package/native/vendor/microtex/lib/core/debug_config.cpp +3 -0
- package/native/vendor/microtex/lib/core/debug_config.h +24 -0
- package/native/vendor/microtex/lib/core/formula.cpp +180 -0
- package/native/vendor/microtex/lib/core/formula.h +137 -0
- package/native/vendor/microtex/lib/core/formula_def.cpp +167 -0
- package/native/vendor/microtex/lib/core/glue.cpp +108 -0
- package/native/vendor/microtex/lib/core/glue.h +55 -0
- package/native/vendor/microtex/lib/core/localized_num.cpp +51 -0
- package/native/vendor/microtex/lib/core/meson.build +19 -0
- package/native/vendor/microtex/lib/core/parser.cpp +874 -0
- package/native/vendor/microtex/lib/core/parser.h +306 -0
- package/native/vendor/microtex/lib/core/split.cpp +185 -0
- package/native/vendor/microtex/lib/core/split.h +40 -0
- package/native/vendor/microtex/lib/env/env.cpp +141 -0
- package/native/vendor/microtex/lib/env/env.h +221 -0
- package/native/vendor/microtex/lib/env/meson.build +11 -0
- package/native/vendor/microtex/lib/env/units.cpp +109 -0
- package/native/vendor/microtex/lib/env/units.h +61 -0
- package/native/vendor/microtex/lib/graphic/font_style.cpp +63 -0
- package/native/vendor/microtex/lib/graphic/font_style.h +61 -0
- package/native/vendor/microtex/lib/graphic/graphic.cpp +38 -0
- package/native/vendor/microtex/lib/graphic/graphic.h +314 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.cpp +44 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.h +131 -0
- package/native/vendor/microtex/lib/graphic/meson.build +13 -0
- package/native/vendor/microtex/lib/macro/macro.cpp +143 -0
- package/native/vendor/microtex/lib/macro/macro.h +155 -0
- package/native/vendor/microtex/lib/macro/macro_accent.cpp +50 -0
- package/native/vendor/microtex/lib/macro/macro_accent.h +61 -0
- package/native/vendor/microtex/lib/macro/macro_boxes.h +68 -0
- package/native/vendor/microtex/lib/macro/macro_colors.cpp +42 -0
- package/native/vendor/microtex/lib/macro/macro_colors.h +42 -0
- package/native/vendor/microtex/lib/macro/macro_decl.h +16 -0
- package/native/vendor/microtex/lib/macro/macro_def.cpp +418 -0
- package/native/vendor/microtex/lib/macro/macro_delims.cpp +56 -0
- package/native/vendor/microtex/lib/macro/macro_delims.h +73 -0
- package/native/vendor/microtex/lib/macro/macro_env.h +212 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.cpp +53 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.h +78 -0
- package/native/vendor/microtex/lib/macro/macro_frac.cpp +138 -0
- package/native/vendor/microtex/lib/macro/macro_frac.h +50 -0
- package/native/vendor/microtex/lib/macro/macro_misc.cpp +211 -0
- package/native/vendor/microtex/lib/macro/macro_misc.h +217 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.cpp +32 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_sizes.h +110 -0
- package/native/vendor/microtex/lib/macro/macro_space.cpp +31 -0
- package/native/vendor/microtex/lib/macro/macro_space.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_styles.cpp +45 -0
- package/native/vendor/microtex/lib/macro/macro_styles.h +22 -0
- package/native/vendor/microtex/lib/macro/macro_types.h +48 -0
- package/native/vendor/microtex/lib/macro/meson.build +33 -0
- package/native/vendor/microtex/lib/meson.build +102 -0
- package/native/vendor/microtex/lib/microtex.cpp +208 -0
- package/native/vendor/microtex/lib/microtex.h +225 -0
- package/native/vendor/microtex/lib/microtexConfig.cmake.in +2 -0
- package/native/vendor/microtex/lib/microtexapi.h +22 -0
- package/native/vendor/microtex/lib/microtexconfig.h.in +7 -0
- package/native/vendor/microtex/lib/microtexexport.h +31 -0
- package/native/vendor/microtex/lib/otf/clm.cpp +405 -0
- package/native/vendor/microtex/lib/otf/clm.h +61 -0
- package/native/vendor/microtex/lib/otf/fontsense.cpp +191 -0
- package/native/vendor/microtex/lib/otf/fontsense.h +20 -0
- package/native/vendor/microtex/lib/otf/glyph.cpp +53 -0
- package/native/vendor/microtex/lib/otf/glyph.h +384 -0
- package/native/vendor/microtex/lib/otf/math_consts.h +154 -0
- package/native/vendor/microtex/lib/otf/meson.build +18 -0
- package/native/vendor/microtex/lib/otf/otf.cpp +84 -0
- package/native/vendor/microtex/lib/otf/otf.h +177 -0
- package/native/vendor/microtex/lib/otf/otfconfig.h +32 -0
- package/native/vendor/microtex/lib/otf/path.cpp +187 -0
- package/native/vendor/microtex/lib/otf/path.h +120 -0
- package/native/vendor/microtex/lib/render/builder.cpp +68 -0
- package/native/vendor/microtex/lib/render/builder.h +73 -0
- package/native/vendor/microtex/lib/render/meson.build +11 -0
- package/native/vendor/microtex/lib/render/render.cpp +136 -0
- package/native/vendor/microtex/lib/render/render.h +59 -0
- package/native/vendor/microtex/lib/unimath/font_meta.h +22 -0
- package/native/vendor/microtex/lib/unimath/font_src.cpp +21 -0
- package/native/vendor/microtex/lib/unimath/font_src.h +61 -0
- package/native/vendor/microtex/lib/unimath/math_type.cpp +318 -0
- package/native/vendor/microtex/lib/unimath/math_type.h +105 -0
- package/native/vendor/microtex/lib/unimath/meson.build +18 -0
- package/native/vendor/microtex/lib/unimath/uni_char.cpp +121 -0
- package/native/vendor/microtex/lib/unimath/uni_char.h +109 -0
- package/native/vendor/microtex/lib/unimath/uni_font.cpp +248 -0
- package/native/vendor/microtex/lib/unimath/uni_font.h +139 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.cpp +2929 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.h +31 -0
- package/native/vendor/microtex/lib/utils/dict_tree.h +68 -0
- package/native/vendor/microtex/lib/utils/exceptions.h +61 -0
- package/native/vendor/microtex/lib/utils/log.h +34 -0
- package/native/vendor/microtex/lib/utils/meson.build +18 -0
- package/native/vendor/microtex/lib/utils/nums.h +24 -0
- package/native/vendor/microtex/lib/utils/string_utils.cpp +85 -0
- package/native/vendor/microtex/lib/utils/string_utils.h +130 -0
- package/native/vendor/microtex/lib/utils/types.h +152 -0
- package/native/vendor/microtex/lib/utils/utf.cpp +115 -0
- package/native/vendor/microtex/lib/utils/utf.h +58 -0
- package/native/vendor/microtex/lib/utils/utils.cpp +40 -0
- package/native/vendor/microtex/lib/utils/utils.h +88 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.cpp +46 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.h +70 -0
- package/native/vendor/microtex/lib/wrapper/callback.cpp +10 -0
- package/native/vendor/microtex/lib/wrapper/callback.h +72 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.cpp +206 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.h +305 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.cpp +211 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.h +159 -0
- package/native/vendor/microtex/lib/wrapper/meson.build +22 -0
- package/native/vendor/microtex/meson.build +75 -0
- package/native/vendor/microtex/meson_options.txt +29 -0
- package/native/vendor/microtex/platform/cairo/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.cpp +384 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.h +119 -0
- package/native/vendor/microtex/platform/cairo/meson.build +47 -0
- package/native/vendor/microtex/platform/cairo/microtex-cairoConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/CHANGELOG.md +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/LICENSE +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/README.md +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/analysis_options.yaml +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/build.gradle +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/settings.gradle +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/AndroidManifest.xml +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/kotlin/io/nano/microtex/microtex/MicrotexPlugin.kt +35 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/README.md +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/analysis_options.yaml +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/build.gradle +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/debug/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/AndroidManifest.xml +34 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/kotlin/io/nano/microtex/microtex_example/MainActivity.kt +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values-night/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/profile/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/build.gradle +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle.properties +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/settings.gradle +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/AppFrameworkInfo.plist +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile +41 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/AppDelegate.swift +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/Main.storyboard +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Info.plist +49 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Runner-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.pbxproj +549 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/main.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_in_one.dart +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_screen.dart +208 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/convert_spans.dart +63 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/string_ext.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/cmp.dart +118 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/draggable.dart +75 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/rich.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/split.dart +72 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_highlight_controller.dart +66 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_input_controller.dart +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/CMakeLists.txt +116 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/CMakeLists.txt +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.cc +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/main.cc +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.cc +104 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.h +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/GeneratedPluginRegistrant.swift +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile +40 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/AppDelegate.swift +9 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Base.lproj/MainMenu.xib +343 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/AppInfo.xcconfig +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Warnings.xcconfig +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/DebugProfile.entitlements +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Info.plist +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/MainFlutterWindow.swift +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Release.entitlements +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.pbxproj +633 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.lock +191 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.yaml +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/test/widget_test.dart +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/CMakeLists.txt +95 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/CMakeLists.txt +103 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.cc +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/CMakeLists.txt +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/Runner.rc +121 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.cpp +61 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.h +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/main.cpp +43 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resource.h +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resources/app_icon.ico +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/runner.exe.manifest +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.cpp +64 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.h +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.cpp +245 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.h +98 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Assets/.gitkeep +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.m +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/SwiftMicrotexPlugin.swift +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/microtex.podspec +27 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/microtex.dart +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bindings.dart +218 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bounds.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/context.dart +205 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontdesc.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontmeta.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/pathcache.dart +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/render.dart +291 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/texstyle.dart +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/textlayout.dart +93 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/widget.dart +163 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/CMakeLists.txt +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/include/microtex/microtex_plugin.h +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/microtex_plugin.cc +70 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/MicrotexPlugin.swift +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/microtex-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/microtex.podspec +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/CMakeLists.txt +44 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/builddarwin.sh +108 -0
- package/native/vendor/microtex/platform/flutter/microtex/pubspec.yaml +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/test/microtex_test.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/CMakeLists.txt +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/include/microtex/microtex_plugin.h +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/microtex_plugin.cpp +82 -0
- package/native/vendor/microtex/platform/gdi_win/CMakeLists.txt +20 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.cpp +352 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.h +137 -0
- package/native/vendor/microtex/platform/gdi_win/meson.build +39 -0
- package/native/vendor/microtex/platform/gtk/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/gtk/meson.build +65 -0
- package/native/vendor/microtex/platform/gtk/microtex-gtkConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.cpp +708 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.h +72 -0
- package/native/vendor/microtex/platform/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.cpp +355 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.h +116 -0
- package/native/vendor/microtex/platform/qt/meson.build +38 -0
- package/native/vendor/microtex/platform/qt/microtex-qtConfig.cmake.in +7 -0
- package/native/vendor/microtex/platform/skia/CMakeLists.txt +46 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.cpp +306 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.h +125 -0
- package/native/vendor/microtex/platform/skia/microtex-skiaConfig.cmake.in +6 -0
- package/native/vendor/microtex/platform/wasm/CMakeLists.txt +38 -0
- package/native/vendor/microtex/platform/wasm/emscripten.cross +31 -0
- package/native/vendor/microtex/platform/wasm/main.cpp +15 -0
- package/native/vendor/microtex/platform/wasm/meson.build +8 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example-meson.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib-meson.sh +28 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib.sh +31 -0
- package/native/vendor/microtex/platform/wasm/web/.babelrc +10 -0
- package/native/vendor/microtex/platform/wasm/web/example/examples.js +43 -0
- package/native/vendor/microtex/platform/wasm/web/example/hello.js +31 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.html +55 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.js +243 -0
- package/native/vendor/microtex/platform/wasm/web/example/styles.css +86 -0
- package/native/vendor/microtex/platform/wasm/web/example/utils.js +47 -0
- package/native/vendor/microtex/platform/wasm/web/lib/context.js +271 -0
- package/native/vendor/microtex/platform/wasm/web/lib/index.js +10 -0
- package/native/vendor/microtex/platform/wasm/web/lib/render.js +293 -0
- package/native/vendor/microtex/platform/wasm/web/lib/runtime.js +14 -0
- package/native/vendor/microtex/platform/wasm/web/lib/svg.js +237 -0
- package/native/vendor/microtex/platform/wasm/web/lib/textlayout.js +88 -0
- package/native/vendor/microtex/platform/wasm/web/package-lock.json +5931 -0
- package/native/vendor/microtex/platform/wasm/web/package.json +45 -0
- package/native/vendor/microtex/platform/wasm/web/publish-example.sh +17 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.example.js +24 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.lib.js +16 -0
- package/native/vendor/microtex/prebuilt/otf2clm.py +807 -0
- package/native/vendor/microtex/prebuilt/otf2clm.sh +9 -0
- package/native/vendor/microtex/prebuilt/preclms.sh +17 -0
- package/native/vendor/microtex/readme/example_bw_false.svg +680 -0
- package/native/vendor/microtex/readme/example_bw_true.svg +680 -0
- package/native/vendor/microtex/readme/example_cjk_trying.svg +54 -0
- package/native/vendor/microtex/readme/example_custom_symbols.svg +92 -0
- package/native/vendor/microtex/readme/example_debug.svg +764 -0
- package/native/vendor/microtex/readme/example_emoji.svg +199 -0
- package/native/vendor/microtex/readme/example_have_log.svg +79 -0
- package/native/vendor/microtex/readme/example_keep_trying.svg +101 -0
- package/native/vendor/microtex/readme/example_logos.svg +50 -0
- package/native/vendor/microtex/readme/example_ubuntu.png +0 -0
- package/native/vendor/microtex/readme/example_windows.png +0 -0
- package/native/vendor/microtex/readme/samples/sample_0.svg +665 -0
- package/native/vendor/microtex/readme/samples/sample_1.svg +1259 -0
- package/native/vendor/microtex/readme/samples/sample_10.svg +333 -0
- package/native/vendor/microtex/readme/samples/sample_11.svg +306 -0
- package/native/vendor/microtex/readme/samples/sample_2.svg +2461 -0
- package/native/vendor/microtex/readme/samples/sample_3.svg +2653 -0
- package/native/vendor/microtex/readme/samples/sample_4.svg +554 -0
- package/native/vendor/microtex/readme/samples/sample_5.svg +247 -0
- package/native/vendor/microtex/readme/samples/sample_6.svg +1082 -0
- package/native/vendor/microtex/readme/samples/sample_7.svg +518 -0
- package/native/vendor/microtex/readme/samples/sample_8.svg +529 -0
- package/native/vendor/microtex/readme/samples/sample_9.svg +1702 -0
- package/native/vendor/microtex/readme/samples.md +301 -0
- package/native/vendor/microtex/readme/tex_logo.svg +19 -0
- package/native/vendor/microtex/res/EXAMPLE.txt +25 -0
- package/native/vendor/microtex/res/SAMPLES.tex +946 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.otf +0 -0
- package/native/vendor/microtex/res/firamath/README.md +42 -0
- package/native/vendor/microtex/res/lm-math/README +92 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm1 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm2 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.otf +0 -0
- package/native/vendor/microtex/res/tex-gyre/README-TeX-Gyre-DejaVu-Math.txt +82 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm1 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm2 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.otf +0 -0
- package/native/vendor/microtex/res/xits/FONTLOG.txt +246 -0
- package/native/vendor/microtex/res/xits/OFL.txt +98 -0
- package/native/vendor/microtex/res/xits/README.txt +15 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.otf +0 -0
- package/native/vendor/microtex/test/clm/meson.build +10 -0
- package/native/vendor/microtex/test/clm/test_clm.cpp +140 -0
- package/native/vendor/microtex/test/env/meson.build +10 -0
- package/native/vendor/microtex/test/env/test_env.cpp +100 -0
- package/native/vendor/microtex/test/fuzzer/afl.native +20 -0
- package/native/vendor/microtex/test/fuzzer/fuzz.sh +135 -0
- package/native/vendor/microtex/test/fuzzer/fuzzer.cpp +61 -0
- package/native/vendor/microtex/test/fuzzer/generateSeed.java +33 -0
- package/native/vendor/microtex/test/fuzzer/meson.build +9 -0
- package/native/vendor/microtex/test/fuzzer/microtex.dict +3708 -0
- package/native/vendor/microtex/test/fuzzer/platform_none.cpp +100 -0
- package/native/vendor/microtex/test/has_filesystem.cpp +8 -0
- package/native/vendor/microtex/test/meson.build +6 -0
- package/native/vendor/nanosvg.h +3278 -0
- package/native/vendor/nanosvgrast.h +1472 -0
- package/native/vendor/zigtex/.github/assets/example.svg +27 -0
- package/native/vendor/zigtex/LICENSE +674 -0
- package/native/vendor/zigtex/README.md +52 -0
- package/native/vendor/zigtex/build.zig +52 -0
- package/native/vendor/zigtex/build.zig.zon +16 -0
- package/native/vendor/zigtex/fonts/latinmodern-math.clm2 +0 -0
- package/native/vendor/zigtex/src/main.zig +22 -0
- package/native/vendor/zigtex/src/root.zig +124 -0
- package/native/vendor/zigtex/src/svg.zig +273 -0
- package/native/vendor/zigtex/src/tex.zig +383 -0
- package/native/zigtex-0.16.patch +35 -0
- package/package.json +27 -0
- package/scripts/bootstrap-native +89 -0
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14490.70" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
|
|
3
|
+
<dependencies>
|
|
4
|
+
<deployment identifier="macosx"/>
|
|
5
|
+
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14490.70"/>
|
|
6
|
+
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
7
|
+
</dependencies>
|
|
8
|
+
<objects>
|
|
9
|
+
<customObject id="-2" userLabel="File's Owner" customClass="NSApplication">
|
|
10
|
+
<connections>
|
|
11
|
+
<outlet property="delegate" destination="Voe-Tx-rLC" id="GzC-gU-4Uq"/>
|
|
12
|
+
</connections>
|
|
13
|
+
</customObject>
|
|
14
|
+
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
|
|
15
|
+
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
|
|
16
|
+
<customObject id="Voe-Tx-rLC" customClass="AppDelegate" customModule="Runner" customModuleProvider="target">
|
|
17
|
+
<connections>
|
|
18
|
+
<outlet property="applicationMenu" destination="uQy-DD-JDr" id="XBo-yE-nKs"/>
|
|
19
|
+
<outlet property="mainFlutterWindow" destination="QvC-M9-y7g" id="gIp-Ho-8D9"/>
|
|
20
|
+
</connections>
|
|
21
|
+
</customObject>
|
|
22
|
+
<customObject id="YLy-65-1bz" customClass="NSFontManager"/>
|
|
23
|
+
<menu title="Main Menu" systemMenu="main" id="AYu-sK-qS6">
|
|
24
|
+
<items>
|
|
25
|
+
<menuItem title="APP_NAME" id="1Xt-HY-uBw">
|
|
26
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
27
|
+
<menu key="submenu" title="APP_NAME" systemMenu="apple" id="uQy-DD-JDr">
|
|
28
|
+
<items>
|
|
29
|
+
<menuItem title="About APP_NAME" id="5kV-Vb-QxS">
|
|
30
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
31
|
+
<connections>
|
|
32
|
+
<action selector="orderFrontStandardAboutPanel:" target="-1" id="Exp-CZ-Vem"/>
|
|
33
|
+
</connections>
|
|
34
|
+
</menuItem>
|
|
35
|
+
<menuItem isSeparatorItem="YES" id="VOq-y0-SEH"/>
|
|
36
|
+
<menuItem title="Preferences…" keyEquivalent="," id="BOF-NM-1cW"/>
|
|
37
|
+
<menuItem isSeparatorItem="YES" id="wFC-TO-SCJ"/>
|
|
38
|
+
<menuItem title="Services" id="NMo-om-nkz">
|
|
39
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
40
|
+
<menu key="submenu" title="Services" systemMenu="services" id="hz9-B4-Xy5"/>
|
|
41
|
+
</menuItem>
|
|
42
|
+
<menuItem isSeparatorItem="YES" id="4je-JR-u6R"/>
|
|
43
|
+
<menuItem title="Hide APP_NAME" keyEquivalent="h" id="Olw-nP-bQN">
|
|
44
|
+
<connections>
|
|
45
|
+
<action selector="hide:" target="-1" id="PnN-Uc-m68"/>
|
|
46
|
+
</connections>
|
|
47
|
+
</menuItem>
|
|
48
|
+
<menuItem title="Hide Others" keyEquivalent="h" id="Vdr-fp-XzO">
|
|
49
|
+
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/>
|
|
50
|
+
<connections>
|
|
51
|
+
<action selector="hideOtherApplications:" target="-1" id="VT4-aY-XCT"/>
|
|
52
|
+
</connections>
|
|
53
|
+
</menuItem>
|
|
54
|
+
<menuItem title="Show All" id="Kd2-mp-pUS">
|
|
55
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
56
|
+
<connections>
|
|
57
|
+
<action selector="unhideAllApplications:" target="-1" id="Dhg-Le-xox"/>
|
|
58
|
+
</connections>
|
|
59
|
+
</menuItem>
|
|
60
|
+
<menuItem isSeparatorItem="YES" id="kCx-OE-vgT"/>
|
|
61
|
+
<menuItem title="Quit APP_NAME" keyEquivalent="q" id="4sb-4s-VLi">
|
|
62
|
+
<connections>
|
|
63
|
+
<action selector="terminate:" target="-1" id="Te7-pn-YzF"/>
|
|
64
|
+
</connections>
|
|
65
|
+
</menuItem>
|
|
66
|
+
</items>
|
|
67
|
+
</menu>
|
|
68
|
+
</menuItem>
|
|
69
|
+
<menuItem title="Edit" id="5QF-Oa-p0T">
|
|
70
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
71
|
+
<menu key="submenu" title="Edit" id="W48-6f-4Dl">
|
|
72
|
+
<items>
|
|
73
|
+
<menuItem title="Undo" keyEquivalent="z" id="dRJ-4n-Yzg">
|
|
74
|
+
<connections>
|
|
75
|
+
<action selector="undo:" target="-1" id="M6e-cu-g7V"/>
|
|
76
|
+
</connections>
|
|
77
|
+
</menuItem>
|
|
78
|
+
<menuItem title="Redo" keyEquivalent="Z" id="6dh-zS-Vam">
|
|
79
|
+
<connections>
|
|
80
|
+
<action selector="redo:" target="-1" id="oIA-Rs-6OD"/>
|
|
81
|
+
</connections>
|
|
82
|
+
</menuItem>
|
|
83
|
+
<menuItem isSeparatorItem="YES" id="WRV-NI-Exz"/>
|
|
84
|
+
<menuItem title="Cut" keyEquivalent="x" id="uRl-iY-unG">
|
|
85
|
+
<connections>
|
|
86
|
+
<action selector="cut:" target="-1" id="YJe-68-I9s"/>
|
|
87
|
+
</connections>
|
|
88
|
+
</menuItem>
|
|
89
|
+
<menuItem title="Copy" keyEquivalent="c" id="x3v-GG-iWU">
|
|
90
|
+
<connections>
|
|
91
|
+
<action selector="copy:" target="-1" id="G1f-GL-Joy"/>
|
|
92
|
+
</connections>
|
|
93
|
+
</menuItem>
|
|
94
|
+
<menuItem title="Paste" keyEquivalent="v" id="gVA-U4-sdL">
|
|
95
|
+
<connections>
|
|
96
|
+
<action selector="paste:" target="-1" id="UvS-8e-Qdg"/>
|
|
97
|
+
</connections>
|
|
98
|
+
</menuItem>
|
|
99
|
+
<menuItem title="Paste and Match Style" keyEquivalent="V" id="WeT-3V-zwk">
|
|
100
|
+
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/>
|
|
101
|
+
<connections>
|
|
102
|
+
<action selector="pasteAsPlainText:" target="-1" id="cEh-KX-wJQ"/>
|
|
103
|
+
</connections>
|
|
104
|
+
</menuItem>
|
|
105
|
+
<menuItem title="Delete" id="pa3-QI-u2k">
|
|
106
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
107
|
+
<connections>
|
|
108
|
+
<action selector="delete:" target="-1" id="0Mk-Ml-PaM"/>
|
|
109
|
+
</connections>
|
|
110
|
+
</menuItem>
|
|
111
|
+
<menuItem title="Select All" keyEquivalent="a" id="Ruw-6m-B2m">
|
|
112
|
+
<connections>
|
|
113
|
+
<action selector="selectAll:" target="-1" id="VNm-Mi-diN"/>
|
|
114
|
+
</connections>
|
|
115
|
+
</menuItem>
|
|
116
|
+
<menuItem isSeparatorItem="YES" id="uyl-h8-XO2"/>
|
|
117
|
+
<menuItem title="Find" id="4EN-yA-p0u">
|
|
118
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
119
|
+
<menu key="submenu" title="Find" id="1b7-l0-nxx">
|
|
120
|
+
<items>
|
|
121
|
+
<menuItem title="Find…" tag="1" keyEquivalent="f" id="Xz5-n4-O0W">
|
|
122
|
+
<connections>
|
|
123
|
+
<action selector="performFindPanelAction:" target="-1" id="cD7-Qs-BN4"/>
|
|
124
|
+
</connections>
|
|
125
|
+
</menuItem>
|
|
126
|
+
<menuItem title="Find and Replace…" tag="12" keyEquivalent="f" id="YEy-JH-Tfz">
|
|
127
|
+
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/>
|
|
128
|
+
<connections>
|
|
129
|
+
<action selector="performFindPanelAction:" target="-1" id="WD3-Gg-5AJ"/>
|
|
130
|
+
</connections>
|
|
131
|
+
</menuItem>
|
|
132
|
+
<menuItem title="Find Next" tag="2" keyEquivalent="g" id="q09-fT-Sye">
|
|
133
|
+
<connections>
|
|
134
|
+
<action selector="performFindPanelAction:" target="-1" id="NDo-RZ-v9R"/>
|
|
135
|
+
</connections>
|
|
136
|
+
</menuItem>
|
|
137
|
+
<menuItem title="Find Previous" tag="3" keyEquivalent="G" id="OwM-mh-QMV">
|
|
138
|
+
<connections>
|
|
139
|
+
<action selector="performFindPanelAction:" target="-1" id="HOh-sY-3ay"/>
|
|
140
|
+
</connections>
|
|
141
|
+
</menuItem>
|
|
142
|
+
<menuItem title="Use Selection for Find" tag="7" keyEquivalent="e" id="buJ-ug-pKt">
|
|
143
|
+
<connections>
|
|
144
|
+
<action selector="performFindPanelAction:" target="-1" id="U76-nv-p5D"/>
|
|
145
|
+
</connections>
|
|
146
|
+
</menuItem>
|
|
147
|
+
<menuItem title="Jump to Selection" keyEquivalent="j" id="S0p-oC-mLd">
|
|
148
|
+
<connections>
|
|
149
|
+
<action selector="centerSelectionInVisibleArea:" target="-1" id="IOG-6D-g5B"/>
|
|
150
|
+
</connections>
|
|
151
|
+
</menuItem>
|
|
152
|
+
</items>
|
|
153
|
+
</menu>
|
|
154
|
+
</menuItem>
|
|
155
|
+
<menuItem title="Spelling and Grammar" id="Dv1-io-Yv7">
|
|
156
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
157
|
+
<menu key="submenu" title="Spelling" id="3IN-sU-3Bg">
|
|
158
|
+
<items>
|
|
159
|
+
<menuItem title="Show Spelling and Grammar" keyEquivalent=":" id="HFo-cy-zxI">
|
|
160
|
+
<connections>
|
|
161
|
+
<action selector="showGuessPanel:" target="-1" id="vFj-Ks-hy3"/>
|
|
162
|
+
</connections>
|
|
163
|
+
</menuItem>
|
|
164
|
+
<menuItem title="Check Document Now" keyEquivalent=";" id="hz2-CU-CR7">
|
|
165
|
+
<connections>
|
|
166
|
+
<action selector="checkSpelling:" target="-1" id="fz7-VC-reM"/>
|
|
167
|
+
</connections>
|
|
168
|
+
</menuItem>
|
|
169
|
+
<menuItem isSeparatorItem="YES" id="bNw-od-mp5"/>
|
|
170
|
+
<menuItem title="Check Spelling While Typing" id="rbD-Rh-wIN">
|
|
171
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
172
|
+
<connections>
|
|
173
|
+
<action selector="toggleContinuousSpellChecking:" target="-1" id="7w6-Qz-0kB"/>
|
|
174
|
+
</connections>
|
|
175
|
+
</menuItem>
|
|
176
|
+
<menuItem title="Check Grammar With Spelling" id="mK6-2p-4JG">
|
|
177
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
178
|
+
<connections>
|
|
179
|
+
<action selector="toggleGrammarChecking:" target="-1" id="muD-Qn-j4w"/>
|
|
180
|
+
</connections>
|
|
181
|
+
</menuItem>
|
|
182
|
+
<menuItem title="Correct Spelling Automatically" id="78Y-hA-62v">
|
|
183
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
184
|
+
<connections>
|
|
185
|
+
<action selector="toggleAutomaticSpellingCorrection:" target="-1" id="2lM-Qi-WAP"/>
|
|
186
|
+
</connections>
|
|
187
|
+
</menuItem>
|
|
188
|
+
</items>
|
|
189
|
+
</menu>
|
|
190
|
+
</menuItem>
|
|
191
|
+
<menuItem title="Substitutions" id="9ic-FL-obx">
|
|
192
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
193
|
+
<menu key="submenu" title="Substitutions" id="FeM-D8-WVr">
|
|
194
|
+
<items>
|
|
195
|
+
<menuItem title="Show Substitutions" id="z6F-FW-3nz">
|
|
196
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
197
|
+
<connections>
|
|
198
|
+
<action selector="orderFrontSubstitutionsPanel:" target="-1" id="oku-mr-iSq"/>
|
|
199
|
+
</connections>
|
|
200
|
+
</menuItem>
|
|
201
|
+
<menuItem isSeparatorItem="YES" id="gPx-C9-uUO"/>
|
|
202
|
+
<menuItem title="Smart Copy/Paste" id="9yt-4B-nSM">
|
|
203
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
204
|
+
<connections>
|
|
205
|
+
<action selector="toggleSmartInsertDelete:" target="-1" id="3IJ-Se-DZD"/>
|
|
206
|
+
</connections>
|
|
207
|
+
</menuItem>
|
|
208
|
+
<menuItem title="Smart Quotes" id="hQb-2v-fYv">
|
|
209
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
210
|
+
<connections>
|
|
211
|
+
<action selector="toggleAutomaticQuoteSubstitution:" target="-1" id="ptq-xd-QOA"/>
|
|
212
|
+
</connections>
|
|
213
|
+
</menuItem>
|
|
214
|
+
<menuItem title="Smart Dashes" id="rgM-f4-ycn">
|
|
215
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
216
|
+
<connections>
|
|
217
|
+
<action selector="toggleAutomaticDashSubstitution:" target="-1" id="oCt-pO-9gS"/>
|
|
218
|
+
</connections>
|
|
219
|
+
</menuItem>
|
|
220
|
+
<menuItem title="Smart Links" id="cwL-P1-jid">
|
|
221
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
222
|
+
<connections>
|
|
223
|
+
<action selector="toggleAutomaticLinkDetection:" target="-1" id="Gip-E3-Fov"/>
|
|
224
|
+
</connections>
|
|
225
|
+
</menuItem>
|
|
226
|
+
<menuItem title="Data Detectors" id="tRr-pd-1PS">
|
|
227
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
228
|
+
<connections>
|
|
229
|
+
<action selector="toggleAutomaticDataDetection:" target="-1" id="R1I-Nq-Kbl"/>
|
|
230
|
+
</connections>
|
|
231
|
+
</menuItem>
|
|
232
|
+
<menuItem title="Text Replacement" id="HFQ-gK-NFA">
|
|
233
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
234
|
+
<connections>
|
|
235
|
+
<action selector="toggleAutomaticTextReplacement:" target="-1" id="DvP-Fe-Py6"/>
|
|
236
|
+
</connections>
|
|
237
|
+
</menuItem>
|
|
238
|
+
</items>
|
|
239
|
+
</menu>
|
|
240
|
+
</menuItem>
|
|
241
|
+
<menuItem title="Transformations" id="2oI-Rn-ZJC">
|
|
242
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
243
|
+
<menu key="submenu" title="Transformations" id="c8a-y6-VQd">
|
|
244
|
+
<items>
|
|
245
|
+
<menuItem title="Make Upper Case" id="vmV-6d-7jI">
|
|
246
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
247
|
+
<connections>
|
|
248
|
+
<action selector="uppercaseWord:" target="-1" id="sPh-Tk-edu"/>
|
|
249
|
+
</connections>
|
|
250
|
+
</menuItem>
|
|
251
|
+
<menuItem title="Make Lower Case" id="d9M-CD-aMd">
|
|
252
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
253
|
+
<connections>
|
|
254
|
+
<action selector="lowercaseWord:" target="-1" id="iUZ-b5-hil"/>
|
|
255
|
+
</connections>
|
|
256
|
+
</menuItem>
|
|
257
|
+
<menuItem title="Capitalize" id="UEZ-Bs-lqG">
|
|
258
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
259
|
+
<connections>
|
|
260
|
+
<action selector="capitalizeWord:" target="-1" id="26H-TL-nsh"/>
|
|
261
|
+
</connections>
|
|
262
|
+
</menuItem>
|
|
263
|
+
</items>
|
|
264
|
+
</menu>
|
|
265
|
+
</menuItem>
|
|
266
|
+
<menuItem title="Speech" id="xrE-MZ-jX0">
|
|
267
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
268
|
+
<menu key="submenu" title="Speech" id="3rS-ZA-NoH">
|
|
269
|
+
<items>
|
|
270
|
+
<menuItem title="Start Speaking" id="Ynk-f8-cLZ">
|
|
271
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
272
|
+
<connections>
|
|
273
|
+
<action selector="startSpeaking:" target="-1" id="654-Ng-kyl"/>
|
|
274
|
+
</connections>
|
|
275
|
+
</menuItem>
|
|
276
|
+
<menuItem title="Stop Speaking" id="Oyz-dy-DGm">
|
|
277
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
278
|
+
<connections>
|
|
279
|
+
<action selector="stopSpeaking:" target="-1" id="dX8-6p-jy9"/>
|
|
280
|
+
</connections>
|
|
281
|
+
</menuItem>
|
|
282
|
+
</items>
|
|
283
|
+
</menu>
|
|
284
|
+
</menuItem>
|
|
285
|
+
</items>
|
|
286
|
+
</menu>
|
|
287
|
+
</menuItem>
|
|
288
|
+
<menuItem title="View" id="H8h-7b-M4v">
|
|
289
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
290
|
+
<menu key="submenu" title="View" id="HyV-fh-RgO">
|
|
291
|
+
<items>
|
|
292
|
+
<menuItem title="Enter Full Screen" keyEquivalent="f" id="4J7-dP-txa">
|
|
293
|
+
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES"/>
|
|
294
|
+
<connections>
|
|
295
|
+
<action selector="toggleFullScreen:" target="-1" id="dU3-MA-1Rq"/>
|
|
296
|
+
</connections>
|
|
297
|
+
</menuItem>
|
|
298
|
+
</items>
|
|
299
|
+
</menu>
|
|
300
|
+
</menuItem>
|
|
301
|
+
<menuItem title="Window" id="aUF-d1-5bR">
|
|
302
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
303
|
+
<menu key="submenu" title="Window" systemMenu="window" id="Td7-aD-5lo">
|
|
304
|
+
<items>
|
|
305
|
+
<menuItem title="Minimize" keyEquivalent="m" id="OY7-WF-poV">
|
|
306
|
+
<connections>
|
|
307
|
+
<action selector="performMiniaturize:" target="-1" id="VwT-WD-YPe"/>
|
|
308
|
+
</connections>
|
|
309
|
+
</menuItem>
|
|
310
|
+
<menuItem title="Zoom" id="R4o-n2-Eq4">
|
|
311
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
312
|
+
<connections>
|
|
313
|
+
<action selector="performZoom:" target="-1" id="DIl-cC-cCs"/>
|
|
314
|
+
</connections>
|
|
315
|
+
</menuItem>
|
|
316
|
+
<menuItem isSeparatorItem="YES" id="eu3-7i-yIM"/>
|
|
317
|
+
<menuItem title="Bring All to Front" id="LE2-aR-0XJ">
|
|
318
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
319
|
+
<connections>
|
|
320
|
+
<action selector="arrangeInFront:" target="-1" id="DRN-fu-gQh"/>
|
|
321
|
+
</connections>
|
|
322
|
+
</menuItem>
|
|
323
|
+
</items>
|
|
324
|
+
</menu>
|
|
325
|
+
</menuItem>
|
|
326
|
+
<menuItem title="Help" id="EPT-qC-fAb">
|
|
327
|
+
<modifierMask key="keyEquivalentModifierMask"/>
|
|
328
|
+
<menu key="submenu" title="Help" systemMenu="help" id="rJ0-wn-3NY"/>
|
|
329
|
+
</menuItem>
|
|
330
|
+
</items>
|
|
331
|
+
<point key="canvasLocation" x="142" y="-258"/>
|
|
332
|
+
</menu>
|
|
333
|
+
<window title="APP_NAME" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" animationBehavior="default" id="QvC-M9-y7g" customClass="MainFlutterWindow" customModule="Runner" customModuleProvider="target">
|
|
334
|
+
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
|
|
335
|
+
<rect key="contentRect" x="335" y="390" width="800" height="600"/>
|
|
336
|
+
<rect key="screenRect" x="0.0" y="0.0" width="2560" height="1577"/>
|
|
337
|
+
<view key="contentView" wantsLayer="YES" id="EiT-Mj-1SZ">
|
|
338
|
+
<rect key="frame" x="0.0" y="0.0" width="800" height="600"/>
|
|
339
|
+
<autoresizingMask key="autoresizingMask"/>
|
|
340
|
+
</view>
|
|
341
|
+
</window>
|
|
342
|
+
</objects>
|
|
343
|
+
</document>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Application-level settings for the Runner target.
|
|
2
|
+
//
|
|
3
|
+
// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the
|
|
4
|
+
// future. If not, the values below would default to using the project name when this becomes a
|
|
5
|
+
// 'flutter create' template.
|
|
6
|
+
|
|
7
|
+
// The application's name. By default this is also the title of the Flutter window.
|
|
8
|
+
PRODUCT_NAME = microtex_example
|
|
9
|
+
|
|
10
|
+
// The application's bundle identifier
|
|
11
|
+
PRODUCT_BUNDLE_IDENTIFIER = io.nano.microtex.microtexExample
|
|
12
|
+
|
|
13
|
+
// The copyright displayed in application information
|
|
14
|
+
PRODUCT_COPYRIGHT = Copyright © 2022 io.nano.microtex. All rights reserved.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings
|
|
2
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES
|
|
3
|
+
CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES
|
|
4
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE
|
|
5
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
|
|
6
|
+
CLANG_WARN_PRAGMA_PACK = YES
|
|
7
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES
|
|
8
|
+
CLANG_WARN_COMMA = YES
|
|
9
|
+
GCC_WARN_STRICT_SELECTOR_MATCH = YES
|
|
10
|
+
CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES
|
|
11
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
|
|
12
|
+
GCC_WARN_SHADOW = YES
|
|
13
|
+
CLANG_WARN_UNREACHABLE_CODE = YES
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>com.apple.security.app-sandbox</key>
|
|
6
|
+
<true/>
|
|
7
|
+
<key>com.apple.security.cs.allow-jit</key>
|
|
8
|
+
<true/>
|
|
9
|
+
<key>com.apple.security.network.server</key>
|
|
10
|
+
<true/>
|
|
11
|
+
</dict>
|
|
12
|
+
</plist>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>CFBundleDevelopmentRegion</key>
|
|
6
|
+
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
|
7
|
+
<key>CFBundleExecutable</key>
|
|
8
|
+
<string>$(EXECUTABLE_NAME)</string>
|
|
9
|
+
<key>CFBundleIconFile</key>
|
|
10
|
+
<string></string>
|
|
11
|
+
<key>CFBundleIdentifier</key>
|
|
12
|
+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
13
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
|
14
|
+
<string>6.0</string>
|
|
15
|
+
<key>CFBundleName</key>
|
|
16
|
+
<string>$(PRODUCT_NAME)</string>
|
|
17
|
+
<key>CFBundlePackageType</key>
|
|
18
|
+
<string>APPL</string>
|
|
19
|
+
<key>CFBundleShortVersionString</key>
|
|
20
|
+
<string>$(FLUTTER_BUILD_NAME)</string>
|
|
21
|
+
<key>CFBundleVersion</key>
|
|
22
|
+
<string>$(FLUTTER_BUILD_NUMBER)</string>
|
|
23
|
+
<key>LSMinimumSystemVersion</key>
|
|
24
|
+
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
|
|
25
|
+
<key>NSHumanReadableCopyright</key>
|
|
26
|
+
<string>$(PRODUCT_COPYRIGHT)</string>
|
|
27
|
+
<key>NSMainNibFile</key>
|
|
28
|
+
<string>MainMenu</string>
|
|
29
|
+
<key>NSPrincipalClass</key>
|
|
30
|
+
<string>NSApplication</string>
|
|
31
|
+
</dict>
|
|
32
|
+
</plist>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import Cocoa
|
|
2
|
+
import FlutterMacOS
|
|
3
|
+
|
|
4
|
+
class MainFlutterWindow: NSWindow {
|
|
5
|
+
override func awakeFromNib() {
|
|
6
|
+
let flutterViewController = FlutterViewController.init()
|
|
7
|
+
let windowFrame = self.frame
|
|
8
|
+
self.contentViewController = flutterViewController
|
|
9
|
+
self.setFrame(windowFrame, display: true)
|
|
10
|
+
|
|
11
|
+
RegisterGeneratedPlugins(registry: flutterViewController)
|
|
12
|
+
|
|
13
|
+
super.awakeFromNib()
|
|
14
|
+
}
|
|
15
|
+
}
|