meltygui-imgui 2.0.0.post1__tar.gz

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 (105) hide show
  1. meltygui_imgui-2.0.0.post1/LICENSE +28 -0
  2. meltygui_imgui-2.0.0.post1/LICENSES/imgui-MIT.txt +21 -0
  3. meltygui_imgui-2.0.0.post1/LICENSES/imstb_rectpack.h.license.txt +37 -0
  4. meltygui_imgui-2.0.0.post1/LICENSES/imstb_textedit.h.license.txt +37 -0
  5. meltygui_imgui-2.0.0.post1/LICENSES/imstb_truetype.h.license.txt +37 -0
  6. meltygui_imgui-2.0.0.post1/MANIFEST.in +26 -0
  7. meltygui_imgui-2.0.0.post1/MELTYGUI.md +58 -0
  8. meltygui_imgui-2.0.0.post1/PKG-INFO +122 -0
  9. meltygui_imgui-2.0.0.post1/README.md +58 -0
  10. meltygui_imgui-2.0.0.post1/UPSTREAM.json +4 -0
  11. meltygui_imgui-2.0.0.post1/ansifeed-cpp/AnsiTextColored.cpp +600 -0
  12. meltygui_imgui-2.0.0.post1/ansifeed-cpp/AnsiTextColored.h +12 -0
  13. meltygui_imgui-2.0.0.post1/config-cpp/py_imconfig.cpp +27 -0
  14. meltygui_imgui-2.0.0.post1/config-cpp/py_imconfig.h +45 -0
  15. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_allegro5.cpp +430 -0
  16. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_allegro5.h +30 -0
  17. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_android.cpp +187 -0
  18. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_android.h +26 -0
  19. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_dx10.cpp +536 -0
  20. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_dx10.h +24 -0
  21. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_dx11.cpp +551 -0
  22. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_dx11.h +25 -0
  23. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_dx12.cpp +700 -0
  24. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_dx12.h +48 -0
  25. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_dx9.cpp +308 -0
  26. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_dx9.h +24 -0
  27. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_glfw.cpp +374 -0
  28. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_glfw.h +36 -0
  29. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_glut.cpp +216 -0
  30. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_glut.h +36 -0
  31. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_marmalade.cpp +316 -0
  32. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_marmalade.h +27 -0
  33. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_metal.h +28 -0
  34. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_opengl2.cpp +258 -0
  35. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_opengl2.h +31 -0
  36. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_opengl3.cpp +720 -0
  37. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_opengl3.h +87 -0
  38. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_osx.h +23 -0
  39. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_sdl.cpp +370 -0
  40. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_sdl.h +29 -0
  41. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_vulkan.cpp +1415 -0
  42. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_vulkan.h +148 -0
  43. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_wgpu.cpp +783 -0
  44. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_wgpu.h +24 -0
  45. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_win32.cpp +537 -0
  46. meltygui_imgui-2.0.0.post1/imgui-cpp/backends/imgui_impl_win32.h +41 -0
  47. meltygui_imgui-2.0.0.post1/imgui-cpp/imconfig.h +120 -0
  48. meltygui_imgui-2.0.0.post1/imgui-cpp/imgui.cpp +11468 -0
  49. meltygui_imgui-2.0.0.post1/imgui-cpp/imgui.h +2826 -0
  50. meltygui_imgui-2.0.0.post1/imgui-cpp/imgui_demo.cpp +7663 -0
  51. meltygui_imgui-2.0.0.post1/imgui-cpp/imgui_draw.cpp +4128 -0
  52. meltygui_imgui-2.0.0.post1/imgui-cpp/imgui_internal.h +2597 -0
  53. meltygui_imgui-2.0.0.post1/imgui-cpp/imgui_tables.cpp +3953 -0
  54. meltygui_imgui-2.0.0.post1/imgui-cpp/imgui_widgets.cpp +7981 -0
  55. meltygui_imgui-2.0.0.post1/imgui-cpp/imstb_rectpack.h +639 -0
  56. meltygui_imgui-2.0.0.post1/imgui-cpp/imstb_textedit.h +1447 -0
  57. meltygui_imgui-2.0.0.post1/imgui-cpp/imstb_truetype.h +4903 -0
  58. meltygui_imgui-2.0.0.post1/imgui-cpp/misc/cpp/imgui_stdlib.cpp +76 -0
  59. meltygui_imgui-2.0.0.post1/imgui-cpp/misc/cpp/imgui_stdlib.h +22 -0
  60. meltygui_imgui-2.0.0.post1/imgui-cpp/misc/fonts/binary_to_compressed_c.cpp +385 -0
  61. meltygui_imgui-2.0.0.post1/imgui-cpp/misc/freetype/imgui_freetype.cpp +769 -0
  62. meltygui_imgui-2.0.0.post1/imgui-cpp/misc/freetype/imgui_freetype.h +50 -0
  63. meltygui_imgui-2.0.0.post1/imgui-cpp/misc/single_file/imgui_single_file.h +18 -0
  64. meltygui_imgui-2.0.0.post1/meltygui_imgui/__init__.py +867 -0
  65. meltygui_imgui-2.0.0.post1/meltygui_imgui/_compat.py +16 -0
  66. meltygui_imgui-2.0.0.post1/meltygui_imgui/ansifeed.pxd +20 -0
  67. meltygui_imgui-2.0.0.post1/meltygui_imgui/cimgui.pxd +2242 -0
  68. meltygui_imgui-2.0.0.post1/meltygui_imgui/common.pyx +75 -0
  69. meltygui_imgui-2.0.0.post1/meltygui_imgui/core.cpp +160743 -0
  70. meltygui_imgui-2.0.0.post1/meltygui_imgui/core.h +35 -0
  71. meltygui_imgui-2.0.0.post1/meltygui_imgui/core.pxd +12 -0
  72. meltygui_imgui-2.0.0.post1/meltygui_imgui/core.pyx +12812 -0
  73. meltygui_imgui-2.0.0.post1/meltygui_imgui/enums.pxd +561 -0
  74. meltygui_imgui-2.0.0.post1/meltygui_imgui/enums_internal.pxd +200 -0
  75. meltygui_imgui-2.0.0.post1/meltygui_imgui/extra.py +36 -0
  76. meltygui_imgui-2.0.0.post1/meltygui_imgui/integrations/__init__.py +13 -0
  77. meltygui_imgui-2.0.0.post1/meltygui_imgui/integrations/base.py +33 -0
  78. meltygui_imgui-2.0.0.post1/meltygui_imgui/integrations/cocos2d.py +27 -0
  79. meltygui_imgui-2.0.0.post1/meltygui_imgui/integrations/glfw.py +133 -0
  80. meltygui_imgui-2.0.0.post1/meltygui_imgui/integrations/glumpy.py +369 -0
  81. meltygui_imgui-2.0.0.post1/meltygui_imgui/integrations/opengl.py +422 -0
  82. meltygui_imgui-2.0.0.post1/meltygui_imgui/integrations/pygame.py +152 -0
  83. meltygui_imgui-2.0.0.post1/meltygui_imgui/integrations/pyglet.py +245 -0
  84. meltygui_imgui-2.0.0.post1/meltygui_imgui/integrations/sdl2.py +136 -0
  85. meltygui_imgui-2.0.0.post1/meltygui_imgui/internal.cpp +8390 -0
  86. meltygui_imgui-2.0.0.post1/meltygui_imgui/internal.h +35 -0
  87. meltygui_imgui-2.0.0.post1/meltygui_imgui/internal.pxd +686 -0
  88. meltygui_imgui-2.0.0.post1/meltygui_imgui/internal.pyx +207 -0
  89. meltygui_imgui-2.0.0.post1/meltygui_imgui.egg-info/PKG-INFO +122 -0
  90. meltygui_imgui-2.0.0.post1/meltygui_imgui.egg-info/SOURCES.txt +104 -0
  91. meltygui_imgui-2.0.0.post1/meltygui_imgui.egg-info/dependency_links.txt +1 -0
  92. meltygui_imgui-2.0.0.post1/meltygui_imgui.egg-info/requires.txt +48 -0
  93. meltygui_imgui-2.0.0.post1/meltygui_imgui.egg-info/top_level.txt +1 -0
  94. meltygui_imgui-2.0.0.post1/pyproject.toml +4 -0
  95. meltygui_imgui-2.0.0.post1/setup.cfg +8 -0
  96. meltygui_imgui-2.0.0.post1/setup.py +187 -0
  97. meltygui_imgui-2.0.0.post1/tests/test_begin_end_context_managers.py +597 -0
  98. meltygui_imgui-2.0.0.post1/tests/test_context_mem_safety.py +52 -0
  99. meltygui_imgui-2.0.0.post1/tests/test_crazy_callbacks.py +267 -0
  100. meltygui_imgui-2.0.0.post1/tests/test_graphics_mem_safety.py +63 -0
  101. meltygui_imgui-2.0.0.post1/tests/test_gui_style_initialization.py +52 -0
  102. meltygui_imgui-2.0.0.post1/tools/build.py +50 -0
  103. meltygui_imgui-2.0.0.post1/tools/build_in_container.sh +21 -0
  104. meltygui_imgui-2.0.0.post1/tools/smoke.py +27 -0
  105. meltygui_imgui-2.0.0.post1/tools/verify.py +51 -0
@@ -0,0 +1,28 @@
1
+ Copyright (c) 2016, Michał Jaworski
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+
7
+ * Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+
10
+ * Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ * Neither the name of pyimgui nor the names of its
15
+ contributors may be used to endorse or promote products derived from
16
+ this software without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
+
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014-2021 Omar Cornut
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,37 @@
1
+ ALTERNATIVE A - MIT License
2
+ Copyright (c) 2017 Sean Barrett
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+ The above copyright notice and this permission notice shall be included in all
10
+ copies or substantial portions of the Software.
11
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17
+ SOFTWARE.
18
+ ------------------------------------------------------------------------------
19
+ ALTERNATIVE B - Public Domain (www.unlicense.org)
20
+ This is free and unencumbered software released into the public domain.
21
+ Anyone is free to copy, modify, publish, use, compile, sell, or distribute this
22
+ software, either in source code form or as a compiled binary, for any purpose,
23
+ commercial or non-commercial, and by any means.
24
+ In jurisdictions that recognize copyright laws, the author or authors of this
25
+ software dedicate any and all copyright interest in the software to the public
26
+ domain. We make this dedication for the benefit of the public at large and to
27
+ the detriment of our heirs and successors. We intend this dedication to be an
28
+ overt act of relinquishment in perpetuity of all present and future rights to
29
+ this software under copyright law.
30
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
31
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
32
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
33
+ AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
34
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
35
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36
+ ------------------------------------------------------------------------------
37
+ */
@@ -0,0 +1,37 @@
1
+ ALTERNATIVE A - MIT License
2
+ Copyright (c) 2017 Sean Barrett
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+ The above copyright notice and this permission notice shall be included in all
10
+ copies or substantial portions of the Software.
11
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17
+ SOFTWARE.
18
+ ------------------------------------------------------------------------------
19
+ ALTERNATIVE B - Public Domain (www.unlicense.org)
20
+ This is free and unencumbered software released into the public domain.
21
+ Anyone is free to copy, modify, publish, use, compile, sell, or distribute this
22
+ software, either in source code form or as a compiled binary, for any purpose,
23
+ commercial or non-commercial, and by any means.
24
+ In jurisdictions that recognize copyright laws, the author or authors of this
25
+ software dedicate any and all copyright interest in the software to the public
26
+ domain. We make this dedication for the benefit of the public at large and to
27
+ the detriment of our heirs and successors. We intend this dedication to be an
28
+ overt act of relinquishment in perpetuity of all present and future rights to
29
+ this software under copyright law.
30
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
31
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
32
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
33
+ AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
34
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
35
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36
+ ------------------------------------------------------------------------------
37
+ */
@@ -0,0 +1,37 @@
1
+ ALTERNATIVE A - MIT License
2
+ Copyright (c) 2017 Sean Barrett
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+ The above copyright notice and this permission notice shall be included in all
10
+ copies or substantial portions of the Software.
11
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17
+ SOFTWARE.
18
+ ------------------------------------------------------------------------------
19
+ ALTERNATIVE B - Public Domain (www.unlicense.org)
20
+ This is free and unencumbered software released into the public domain.
21
+ Anyone is free to copy, modify, publish, use, compile, sell, or distribute this
22
+ software, either in source code form or as a compiled binary, for any purpose,
23
+ commercial or non-commercial, and by any means.
24
+ In jurisdictions that recognize copyright laws, the author or authors of this
25
+ software dedicate any and all copyright interest in the software to the public
26
+ domain. We make this dedication for the benefit of the public at large and to
27
+ the detriment of our heirs and successors. We intend this dedication to be an
28
+ overt act of relinquishment in perpetuity of all present and future rights to
29
+ this software under copyright law.
30
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
31
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
32
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
33
+ AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
34
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
35
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36
+ ------------------------------------------------------------------------------
37
+ */
@@ -0,0 +1,26 @@
1
+ include README.md
2
+ include LICENSE
3
+
4
+ # Cython sources
5
+ recursive-include meltygui_imgui *.pyx *.pxd
6
+
7
+ # Cython-generated C++ sources
8
+ recursive-include meltygui_imgui *.cpp *.h
9
+
10
+ # Additional internal ImgGui configuration
11
+ recursive-include config-cpp *.cpp *.h
12
+
13
+ # ImGui sources
14
+ recursive-include imgui-cpp *.cpp *.h
15
+ prune imgui-cpp/examples
16
+ prune imgui-cpp/extra_fonts
17
+
18
+ # ansifeed sources
19
+ recursive-include ansifeed-cpp *.cpp *.h
20
+
21
+ include MELTYGUI.md
22
+ include UPSTREAM.json
23
+ recursive-include LICENSES *
24
+
25
+ include README.md
26
+ recursive-include tools *.py *.sh
@@ -0,0 +1,58 @@
1
+ # meltygui-imgui
2
+
3
+ Namespaced imgui bindings maintained for MeltyGUI, based on the upstream source
4
+ recorded in [UPSTREAM.json](UPSTREAM.json). Original authorship and licenses are
5
+ preserved. This repository contains the binding source and its release tooling.
6
+
7
+ ```sh
8
+ uv pip install meltygui-imgui
9
+ ```
10
+
11
+ ```python
12
+ import meltygui_imgui
13
+ ```
14
+
15
+ The first release is **2.0.0.post1**, supporting Linux x86-64, CPython 3.12 and
16
+ glibc 2.28 or newer. It installs `meltygui_imgui` without overwriting the upstream
17
+ `imgui` package. Other platforms and Python versions are not supported yet.
18
+
19
+ The bundled Dear ImGui and font-helper license notices are included in the artifacts.
20
+
21
+ ## Build
22
+
23
+ Docker is required. The manylinux image and Python build dependencies are pinned.
24
+ The wheel is built from the generated source archive, which is also published
25
+ for local compilation when a matching wheel is unavailable.
26
+
27
+ ```sh
28
+ python3 tools/build.py
29
+ python3 tools/verify.py dist
30
+ uvx --from twine==7.0.0 twine check --strict dist/*.whl dist/*.tar.gz
31
+ ```
32
+
33
+ Use `--sudo-docker` if Docker requires sudo. Source builds require a C++ compiler.
34
+
35
+ ## Publish
36
+
37
+ Pushes to `main` and pull requests build and test without uploading. A `v*` tag
38
+ or a manual run with `publish=true` publishes the verified wheel and source
39
+ archive through PyPI trusted publishing. Published versions cannot be replaced.
40
+
41
+ Configure a pending GitHub publisher at https://pypi.org/manage/account/publishing/:
42
+
43
+ | Field | Value |
44
+ | --- | --- |
45
+ | PyPI project | `meltygui-imgui` |
46
+ | Owner | `Attentio-AI` |
47
+ | Repository | `meltygui-imgui` |
48
+ | Workflow | `release.yml` |
49
+ | Environment | `pypi` |
50
+
51
+ Then, after the main-branch build passes, create and push `v2.0.0.post1`.
52
+ No API token belongs in this repository.
53
+
54
+ ## Licenses and changes
55
+
56
+ See [LICENSE](LICENSE), [LICENSES](LICENSES), and [MELTYGUI.md](MELTYGUI.md).
57
+ The primary changes are the Python namespace, pinned build dependencies,
58
+ Python 3.12 support, and rebuilt Cython extensions.
@@ -0,0 +1,122 @@
1
+ Metadata-Version: 2.4
2
+ Name: meltygui-imgui
3
+ Version: 2.0.0.post1
4
+ Summary: Cython-based Python bindings for dear meltygui_imgui
5
+ Home-page: https://github.com/Attentio-AI/meltygui-imgui
6
+ Author: Michał Jaworski
7
+ Author-email: swistakm@gmail.com
8
+ License: BSD
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: BSD License
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: Implementation :: CPython
13
+ Classifier: Programming Language :: Cython
14
+ Classifier: Operating System :: POSIX :: Linux
15
+ Classifier: Topic :: Games/Entertainment
16
+ Requires-Python: >=3.12,<3.13
17
+ Description-Content-Type: text/markdown
18
+ License-File: LICENSE
19
+ License-File: LICENSES/imgui-MIT.txt
20
+ License-File: LICENSES/imstb_rectpack.h.license.txt
21
+ License-File: LICENSES/imstb_textedit.h.license.txt
22
+ License-File: LICENSES/imstb_truetype.h.license.txt
23
+ Provides-Extra: cython
24
+ Requires-Dist: Cython<0.30,>=0.24; extra == "cython"
25
+ Provides-Extra: cocos2d
26
+ Requires-Dist: PyOpenGL; extra == "cocos2d"
27
+ Requires-Dist: cocos2d; extra == "cocos2d"
28
+ Requires-Dist: pyglet>=1.5.6; sys_platform == "darwin" and extra == "cocos2d"
29
+ Provides-Extra: sdl2
30
+ Requires-Dist: PyOpenGL; extra == "sdl2"
31
+ Requires-Dist: PySDL2; extra == "sdl2"
32
+ Provides-Extra: glfw
33
+ Requires-Dist: PyOpenGL; extra == "glfw"
34
+ Requires-Dist: glfw; extra == "glfw"
35
+ Provides-Extra: pygame
36
+ Requires-Dist: PyOpenGL; extra == "pygame"
37
+ Requires-Dist: pygame; extra == "pygame"
38
+ Provides-Extra: opengl
39
+ Requires-Dist: PyOpenGL; extra == "opengl"
40
+ Provides-Extra: pyglet
41
+ Requires-Dist: PyOpenGL; extra == "pyglet"
42
+ Requires-Dist: pyglet; sys_platform != "darwin" and extra == "pyglet"
43
+ Requires-Dist: pyglet>=1.5.6; sys_platform == "darwin" and extra == "pyglet"
44
+ Provides-Extra: full
45
+ Requires-Dist: PySDL2; extra == "full"
46
+ Requires-Dist: Cython<0.30,>=0.24; extra == "full"
47
+ Requires-Dist: glfw; extra == "full"
48
+ Requires-Dist: cocos2d; extra == "full"
49
+ Requires-Dist: pygame; extra == "full"
50
+ Requires-Dist: PyOpenGL; extra == "full"
51
+ Requires-Dist: pyglet>=1.5.6; sys_platform == "darwin" and extra == "full"
52
+ Requires-Dist: pyglet; sys_platform != "darwin" and extra == "full"
53
+ Dynamic: author
54
+ Dynamic: author-email
55
+ Dynamic: classifier
56
+ Dynamic: description
57
+ Dynamic: description-content-type
58
+ Dynamic: home-page
59
+ Dynamic: license
60
+ Dynamic: license-file
61
+ Dynamic: provides-extra
62
+ Dynamic: requires-python
63
+ Dynamic: summary
64
+
65
+ # meltygui-imgui
66
+
67
+ Namespaced imgui bindings maintained for MeltyGUI, based on the upstream source
68
+ recorded in [UPSTREAM.json](UPSTREAM.json). Original authorship and licenses are
69
+ preserved. This repository contains the binding source and its release tooling.
70
+
71
+ ```sh
72
+ uv pip install meltygui-imgui
73
+ ```
74
+
75
+ ```python
76
+ import meltygui_imgui
77
+ ```
78
+
79
+ The first release is **2.0.0.post1**, supporting Linux x86-64, CPython 3.12 and
80
+ glibc 2.28 or newer. It installs `meltygui_imgui` without overwriting the upstream
81
+ `imgui` package. Other platforms and Python versions are not supported yet.
82
+
83
+ The bundled Dear ImGui and font-helper license notices are included in the artifacts.
84
+
85
+ ## Build
86
+
87
+ Docker is required. The manylinux image and Python build dependencies are pinned.
88
+ The wheel is built from the generated source archive, which is also published
89
+ for local compilation when a matching wheel is unavailable.
90
+
91
+ ```sh
92
+ python3 tools/build.py
93
+ python3 tools/verify.py dist
94
+ uvx --from twine==7.0.0 twine check --strict dist/*.whl dist/*.tar.gz
95
+ ```
96
+
97
+ Use `--sudo-docker` if Docker requires sudo. Source builds require a C++ compiler.
98
+
99
+ ## Publish
100
+
101
+ Pushes to `main` and pull requests build and test without uploading. A `v*` tag
102
+ or a manual run with `publish=true` publishes the verified wheel and source
103
+ archive through PyPI trusted publishing. Published versions cannot be replaced.
104
+
105
+ Configure a pending GitHub publisher at https://pypi.org/manage/account/publishing/:
106
+
107
+ | Field | Value |
108
+ | --- | --- |
109
+ | PyPI project | `meltygui-imgui` |
110
+ | Owner | `Attentio-AI` |
111
+ | Repository | `meltygui-imgui` |
112
+ | Workflow | `release.yml` |
113
+ | Environment | `pypi` |
114
+
115
+ Then, after the main-branch build passes, create and push `v2.0.0.post1`.
116
+ No API token belongs in this repository.
117
+
118
+ ## Licenses and changes
119
+
120
+ See [LICENSE](LICENSE), [LICENSES](LICENSES), and [MELTYGUI.md](MELTYGUI.md).
121
+ The primary changes are the Python namespace, pinned build dependencies,
122
+ Python 3.12 support, and rebuilt Cython extensions.
@@ -0,0 +1,58 @@
1
+ # meltygui-imgui
2
+
3
+ Namespaced imgui bindings maintained for MeltyGUI, based on the upstream source
4
+ recorded in [UPSTREAM.json](UPSTREAM.json). Original authorship and licenses are
5
+ preserved. This repository contains the binding source and its release tooling.
6
+
7
+ ```sh
8
+ uv pip install meltygui-imgui
9
+ ```
10
+
11
+ ```python
12
+ import meltygui_imgui
13
+ ```
14
+
15
+ The first release is **2.0.0.post1**, supporting Linux x86-64, CPython 3.12 and
16
+ glibc 2.28 or newer. It installs `meltygui_imgui` without overwriting the upstream
17
+ `imgui` package. Other platforms and Python versions are not supported yet.
18
+
19
+ The bundled Dear ImGui and font-helper license notices are included in the artifacts.
20
+
21
+ ## Build
22
+
23
+ Docker is required. The manylinux image and Python build dependencies are pinned.
24
+ The wheel is built from the generated source archive, which is also published
25
+ for local compilation when a matching wheel is unavailable.
26
+
27
+ ```sh
28
+ python3 tools/build.py
29
+ python3 tools/verify.py dist
30
+ uvx --from twine==7.0.0 twine check --strict dist/*.whl dist/*.tar.gz
31
+ ```
32
+
33
+ Use `--sudo-docker` if Docker requires sudo. Source builds require a C++ compiler.
34
+
35
+ ## Publish
36
+
37
+ Pushes to `main` and pull requests build and test without uploading. A `v*` tag
38
+ or a manual run with `publish=true` publishes the verified wheel and source
39
+ archive through PyPI trusted publishing. Published versions cannot be replaced.
40
+
41
+ Configure a pending GitHub publisher at https://pypi.org/manage/account/publishing/:
42
+
43
+ | Field | Value |
44
+ | --- | --- |
45
+ | PyPI project | `meltygui-imgui` |
46
+ | Owner | `Attentio-AI` |
47
+ | Repository | `meltygui-imgui` |
48
+ | Workflow | `release.yml` |
49
+ | Environment | `pypi` |
50
+
51
+ Then, after the main-branch build passes, create and push `v2.0.0.post1`.
52
+ No API token belongs in this repository.
53
+
54
+ ## Licenses and changes
55
+
56
+ See [LICENSE](LICENSE), [LICENSES](LICENSES), and [MELTYGUI.md](MELTYGUI.md).
57
+ The primary changes are the Python namespace, pinned build dependencies,
58
+ Python 3.12 support, and rebuilt Cython extensions.
@@ -0,0 +1,4 @@
1
+ {
2
+ "url": "https://files.pythonhosted.org/packages/f1/aa/4abb0d3d6054da9a4390160fc25ca743a824263a9931cc6a95f30e3d75b4/imgui-2.0.0.tar.gz",
3
+ "sha256": "2fbdb8eed3b8dbd7ea98af9e4c1c6582b0bc4da942a258de16333d8c653d67e1"
4
+ }