meltygui 0.1.0__py3-none-any.whl
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.
- meltygui/__init__.py +107 -0
- meltygui/accounts/__init__.py +0 -0
- meltygui/accounts/internet_accounts.py +1355 -0
- meltygui/chat/__init__.py +91 -0
- meltygui/chat/activity.py +75 -0
- meltygui/chat/backends.py +36 -0
- meltygui/chat/chat_interface.py +732 -0
- meltygui/chat/chat_proxy.py +352 -0
- meltygui/chat/codex_proxy.py +592 -0
- meltygui/chat/codex_settings.py +100 -0
- meltygui/chat/codex_transport.py +60 -0
- meltygui/chat/command_parser.py +204 -0
- meltygui/chat/images.py +227 -0
- meltygui/chat/messages.py +417 -0
- meltygui/chat/metadata.py +139 -0
- meltygui/chat/writer_locks.py +64 -0
- meltygui/code/__init__.py +0 -0
- meltygui/code/basic_converters.py +533 -0
- meltygui/code/chain_converters.py +2111 -0
- meltygui/code/code_checks.py +2209 -0
- meltygui/code/core_syntax.py +1430 -0
- meltygui/code/file_converters.py +1933 -0
- meltygui/code/fileref.py +702 -0
- meltygui/code/hotswap_guard.py +144 -0
- meltygui/code/libcst_conversion.py +9724 -0
- meltygui/code/live_instrument.py +392 -0
- meltygui/code/live_view.py +2490 -0
- meltygui/code/melty_scan.py +2684 -0
- meltygui/code/new_codecs.py +1255 -0
- meltygui/code/new_converters.py +3017 -0
- meltygui/code/project_code.py +278 -0
- meltygui/code/source_context.py +63 -0
- meltygui/code/symbol_roster.py +1588 -0
- meltygui/code/syntax_check.py +34 -0
- meltygui/code/syntax_check_worker.py +114 -0
- meltygui/completion/__init__.py +0 -0
- meltygui/completion/fim.py +1232 -0
- meltygui/completion/fim_context.py +481 -0
- meltygui/completion/providers/__init__.py +0 -0
- meltygui/completion/providers/anthropic_oauth.py +446 -0
- meltygui/completion/providers/anthropic_requests.py +69 -0
- meltygui/completion/providers/claude.py +203 -0
- meltygui/completion/providers/claude_usage.py +499 -0
- meltygui/completion/providers/codex_accounts.py +180 -0
- meltygui/completion/providers/copilot.py +617 -0
- meltygui/completion/providers/oauth_popup.py +220 -0
- meltygui/completion/providers/ollama.py +320 -0
- meltygui/completion/providers/profiles.py +23 -0
- meltygui/core/README.md +88 -0
- meltygui/core/__init__.py +1 -0
- meltygui/core/automation/__init__.py +1 -0
- meltygui/core/automation/action_core.py +153 -0
- meltygui/core/automation/collection_action.py +45 -0
- meltygui/core/automation/mcp_eval.py +167 -0
- meltygui/core/automation/mcp_hotswap.py +107 -0
- meltygui/core/automation/mcp_query.py +552 -0
- meltygui/core/automation/mcp_server.py +657 -0
- meltygui/core/automation/orchestration_core.py +2636 -0
- meltygui/core/automation/query_core.py +124 -0
- meltygui/core/automation/search_core.py +26 -0
- meltygui/core/automation/selector_core.py +340 -0
- meltygui/core/automation/value_core.py +1752 -0
- meltygui/core/cache/__init__.py +1 -0
- meltygui/core/cache/cache_diagnostics.py +0 -0
- meltygui/core/cache/invalidation_decoration.py +153 -0
- meltygui/core/cache/invalidation_tracker.py +43 -0
- meltygui/core/cache/tile_cache.py +5968 -0
- meltygui/core/conversion/__init__.py +1 -0
- meltygui/core/conversion/bubbling.py +599 -0
- meltygui/core/conversion/cache_tree.py +188 -0
- meltygui/core/conversion/chain.py +113 -0
- meltygui/core/conversion/converter_register.py +145 -0
- meltygui/core/conversion/data_decoration.py +67 -0
- meltygui/core/conversion/dict_conversion.py +1815 -0
- meltygui/core/conversion/dict_conversion_util.py +177 -0
- meltygui/core/conversion/dynamic_obj.py +89 -0
- meltygui/core/conversion/graph_compare.py +183 -0
- meltygui/core/conversion/load_save_v2.py +1032 -0
- meltygui/core/conversion/missing_saved_class.py +39 -0
- meltygui/core/conversion/path_finder.py +606 -0
- meltygui/core/conversion/render_host.py +1083 -0
- meltygui/core/core_render.py +6537 -0
- meltygui/core/definition_hotswap.py +231 -0
- meltygui/core/diagnostics/__init__.py +1 -0
- meltygui/core/diagnostics/attribute_churn.py +38 -0
- meltygui/core/diagnostics/fps_counter.py +39 -0
- meltygui/core/diagnostics/gpu_frame_timer.py +103 -0
- meltygui/core/diagnostics/inspection_core.py +169 -0
- meltygui/core/diagnostics/monitor_core.py +105 -0
- meltygui/core/diagnostics/notifications.py +706 -0
- meltygui/core/diagnostics/perf_trace.py +281 -0
- meltygui/core/diagnostics/profile_decoration.py +88 -0
- meltygui/core/diagnostics/resize_trace.py +62 -0
- meltygui/core/diagnostics/screenshot_core.py +247 -0
- meltygui/core/diagnostics/session_status.py +98 -0
- meltygui/core/diagnostics/trace_core.py +445 -0
- meltygui/core/files/__init__.py +1 -0
- meltygui/core/files/file_core.py +208 -0
- meltygui/core/files/file_explorer_core.py +104 -0
- meltygui/core/files/file_tree_core.py +198 -0
- meltygui/core/files/file_watch_core.py +43 -0
- meltygui/core/files/import_graph_core.py +43 -0
- meltygui/core/files/metadata_core.py +51 -0
- meltygui/core/graphics/__init__.py +1 -0
- meltygui/core/graphics/cuda_context_core.py +166 -0
- meltygui/core/graphics/cuda_interop_core.py +136 -0
- meltygui/core/graphics/cuda_kernel_core.py +91 -0
- meltygui/core/graphics/framebuffer_recorder.py +337 -0
- meltygui/core/graphics/gl_state.py +658 -0
- meltygui/core/graphics/lut_core.py +52 -0
- meltygui/core/graphics/overlay_renderer.py +984 -0
- meltygui/core/graphics/scene_target.py +180 -0
- meltygui/core/graphics/screenshot.py +439 -0
- meltygui/core/graphics/shader_func.py +478 -0
- meltygui/core/graphics/tensor_core.py +45 -0
- meltygui/core/graphics/text_texture.py +329 -0
- meltygui/core/graphics/wayland_color.py +635 -0
- meltygui/core/input/__init__.py +1 -0
- meltygui/core/input/collision.py +165 -0
- meltygui/core/input/drag_drop_core.py +1525 -0
- meltygui/core/input/hypr_left_drag.py +323 -0
- meltygui/core/input/input_core.py +245 -0
- meltygui/core/input/input_handler.py +1101 -0
- meltygui/core/input/mouse_cursor.py +355 -0
- meltygui/core/input/pynput_backend.py +1054 -0
- meltygui/core/input/space_mouse.py +338 -0
- meltygui/core/input/touchpad_backend.py +393 -0
- meltygui/core/input/view_selection.py +177 -0
- meltygui/core/layout/__init__.py +1 -0
- meltygui/core/layout/column_core.py +2153 -0
- meltygui/core/layout/cursor_core.py +161 -0
- meltygui/core/layout/dropdown_core.py +278 -0
- meltygui/core/layout/edge_constraints.py +155 -0
- meltygui/core/layout/grid_core.py +117 -0
- meltygui/core/layout/header_core.py +23 -0
- meltygui/core/layout/header_runtime.py +67 -0
- meltygui/core/layout/layout_core.py +87 -0
- meltygui/core/layout/tile_manager_core.py +591 -0
- meltygui/core/melty.py +6726 -0
- meltygui/core/module_map.json +896 -0
- meltygui/core/module_names.py +19 -0
- meltygui/core/rendering/__init__.py +1 -0
- meltygui/core/rendering/core_decoration.py +431 -0
- meltygui/core/rendering/core_render_helpers.py +328 -0
- meltygui/core/rendering/func_metadata.py +398 -0
- meltygui/core/rendering/mode.py +818 -0
- meltygui/core/rendering/mode_defaults.py +41 -0
- meltygui/core/rendering/modes.py +136 -0
- meltygui/core/rendering/parameter_core.py +1665 -0
- meltygui/core/rendering/render_dispatch.py +1891 -0
- meltygui/core/rendering/render_funcs.py +273 -0
- meltygui/core/rendering/shaped.py +312 -0
- meltygui/core/rendering/window_decoration.py +25 -0
- meltygui/core/runtime/__init__.py +1 -0
- meltygui/core/runtime/app.py +735 -0
- meltygui/core/runtime/app_session.py +140 -0
- meltygui/core/runtime/background.py +564 -0
- meltygui/core/runtime/extensions.py +53 -0
- meltygui/core/runtime/gc_manager.py +1163 -0
- meltygui/core/runtime/lifecycle.py +21 -0
- meltygui/core/runtime/paths.py +27 -0
- meltygui/core/runtime/settings.py +14 -0
- meltygui/core/runtime/singleton.py +16 -0
- meltygui/core/runtime/thread_safe_bool.py +24 -0
- meltygui/core/runtime/thread_signal.py +30 -0
- meltygui/core/runtime/toggles.py +3115 -0
- meltygui/core/services/__init__.py +1 -0
- meltygui/core/services/account_core.py +10 -0
- meltygui/core/services/chat_core.py +19 -0
- meltygui/core/services/claude_terminal_core.py +346 -0
- meltygui/core/services/terminal_core.py +458 -0
- meltygui/core/services/terminal_runtime.py +78 -0
- meltygui/core/styling/__init__.py +1 -0
- meltygui/core/styling/color_core.py +46 -0
- meltygui/core/styling/fonts.py +639 -0
- meltygui/core/styling/global_style.py +338 -0
- meltygui/core/styling/style.py +198 -0
- meltygui/core/styling/style_core.py +522 -0
- meltygui/core/styling/warm_start.py +149 -0
- meltygui/core/windowing/__init__.py +1 -0
- meltygui/core/windowing/backends/PYIMGUI_LICENSE +28 -0
- meltygui/core/windowing/backends/__init__.py +1 -0
- meltygui/core/windowing/backends/imgui_renderer.py +138 -0
- meltygui/core/windowing/backends/native_wayland.py +850 -0
- meltygui/core/windowing/backends/protocols/xdg-decoration-unstable-v1.xml +156 -0
- meltygui/core/windowing/backends/protocols/xdg-shell.xml +1420 -0
- meltygui/core/windowing/backends/wayland_protocol.py +101 -0
- meltygui/core/windowing/dock_core.py +182 -0
- meltygui/core/windowing/frame_geometry.py +42 -0
- meltygui/core/windowing/geometry_feed.py +864 -0
- meltygui/core/windowing/glfw_utils.py +1343 -0
- meltygui/core/windowing/os_frame.py +1552 -0
- meltygui/core/windowing/surface.py +643 -0
- meltygui/core/windowing/titlebar.py +1560 -0
- meltygui/core/windowing/titlebar_buttons.py +281 -0
- meltygui/core/windowing/wayland_move.py +932 -0
- meltygui/core/windowing/window_api.py +62 -0
- meltygui/core/windowing/window_constants.py +339 -0
- meltygui/core/windowing/window_visibility.py +162 -0
- meltygui/debug/__init__.py +0 -0
- meltygui/debug/app_view_utils.py +9 -0
- meltygui/editor/__init__.py +0 -0
- meltygui/editor/bash_syntax.py +30 -0
- meltygui/editor/code_line_fast.py +152 -0
- meltygui/editor/diff.py +139 -0
- meltygui/editor/external_changes.py +159 -0
- meltygui/editor/file_header.py +41 -0
- meltygui/editor/live_usage.py +169 -0
- meltygui/editor/live_view_views.py +1803 -0
- meltygui/editor/pending_save.py +1351 -0
- meltygui/editor/roster_tints.py +547 -0
- meltygui/editor/source_preview.py +16 -0
- meltygui/editor/source_tools.py +10 -0
- meltygui/editor/source_ui.py +70 -0
- meltygui/editor/spell_check.py +77 -0
- meltygui/editor/text_editor.py +9076 -0
- meltygui/editor/usage_picker.py +538 -0
- meltygui/events/__init__.py +0 -0
- meltygui/events/example.py +118 -0
- meltygui/examples/__init__.py +0 -0
- meltygui/examples/columns_demo.py +33 -0
- meltygui/examples/columns_window_demo.py +60 -0
- meltygui/examples/context_menu_demo.py +24 -0
- meltygui/examples/context_menu_window_demo.py +49 -0
- meltygui/examples/gui_playground.py +127 -0
- meltygui/examples/live_view_playground.py +256 -0
- meltygui/examples/lora.py +43 -0
- meltygui/examples/lora_data.py +59 -0
- meltygui/examples/lora_policies.py +67 -0
- meltygui/examples/mode_demo.py +49 -0
- meltygui/examples/modifies_demo.py +119 -0
- meltygui/examples/scalar_policies.py +60 -0
- meltygui/examples/style_layouts.py +149 -0
- meltygui/examples/tile_manager_demo.py +74 -0
- meltygui/examples/tint_demo.py +160 -0
- meltygui/examples/tint_functions.py +56 -0
- meltygui/examples/trace_demo.py +88 -0
- meltygui/examples/two_windows.py +36 -0
- meltygui/files/__init__.py +0 -0
- meltygui/files/fast_file_explorer.py +439 -0
- meltygui/gnome_extension/lsd-window-geometry@latent-descent/extension.js +237 -0
- meltygui/gnome_extension/lsd-window-geometry@latent-descent/lsd-window-geometry@latent-descent.iml +9 -0
- meltygui/gnome_extension/lsd-window-geometry@latent-descent/metadata.json +7 -0
- meltygui/graphics/__init__.py +6 -0
- meltygui/graphics/base.py +85 -0
- meltygui/graphics/examples.py +507 -0
- meltygui/graphics/executor.py +520 -0
- meltygui/graphics/filter.py +667 -0
- meltygui/graphics/filter.pyi +856 -0
- meltygui/graphics/generate_stubs.py +22 -0
- meltygui/graphics/registry.py +203 -0
- meltygui/graphics/shader_compiler.py +155 -0
- meltygui/graphics/shaders.py +1302 -0
- meltygui/graphics/stub_generator.py +250 -0
- meltygui/graphics/texture_manager.py +170 -0
- meltygui/graphics/texture_min_max.py +295 -0
- meltygui/hdr_color.py +757 -0
- meltygui/image_load.py +308 -0
- meltygui/model/__init__.py +1 -0
- meltygui/model/account_model.py +142 -0
- meltygui/model/camera_model.py +159 -0
- meltygui/model/chat_model.py +86 -0
- meltygui/model/code_model.py +62 -0
- meltygui/model/code_proxy_model.py +876 -0
- meltygui/model/collection_model.py +41 -0
- meltygui/model/color_model.py +127 -0
- meltygui/model/cuda_tensor_model.py +36 -0
- meltygui/model/cuda_texture_model.py +149 -0
- meltygui/model/dropdown_model.py +137 -0
- meltygui/model/file_metadata_model.py +73 -0
- meltygui/model/file_model.py +289 -0
- meltygui/model/format_model.py +390 -0
- meltygui/model/graph_model.py +98 -0
- meltygui/model/icon_model.py +1024 -0
- meltygui/model/import_graph_model.py +468 -0
- meltygui/model/layout_model.py +15 -0
- meltygui/model/lut_model.py +266 -0
- meltygui/model/search_model.py +173 -0
- meltygui/model/tensor_model.py +402 -0
- meltygui/model/terminal_model.py +329 -0
- meltygui/model/texture_model.py +146 -0
- meltygui/model/tile_model.py +24 -0
- meltygui/model/trace_model.py +198 -0
- meltygui/model/trace_report_model.py +146 -0
- meltygui/models/__init__.py +0 -0
- meltygui/models/file_meta.py +613 -0
- meltygui/models/function_console.py +184 -0
- meltygui/models/orchestration.py +48 -0
- meltygui/pbr.py +1576 -0
- meltygui/png_unfilter.c +49 -0
- meltygui/resources/JetBrainsMono-Regular.ttf +0 -0
- meltygui/resources/THIRD_PARTY_NOTICES.md +21 -0
- meltygui/resources/dejavu/DejaVuSans-Bold.ttf +0 -0
- meltygui/resources/dejavu/DejaVuSans-ExtraLight.ttf +0 -0
- meltygui/resources/dejavu/DejaVuSans.ttf +0 -0
- meltygui/resources/dejavu/LICENSE.txt +78 -0
- meltygui/resources/fontawesome-LICENSE.txt +121 -0
- meltygui/resources/fontawesome-webfont.ttf +0 -0
- meltygui/resources/hdri/studio_small_09_1k.hdr +0 -0
- meltygui/resources/jetbrains-weights/JetBrainsMono-Bold.ttf +0 -0
- meltygui/resources/jetbrains-weights/JetBrainsMono-ExtraBold.ttf +0 -0
- meltygui/resources/jetbrains-weights/JetBrainsMono-ExtraLight.ttf +0 -0
- meltygui/resources/jetbrains-weights/JetBrainsMono-Light.ttf +0 -0
- meltygui/resources/jetbrains-weights/JetBrainsMono-Medium.ttf +0 -0
- meltygui/resources/jetbrains-weights/JetBrainsMono-SemiBold.ttf +0 -0
- meltygui/resources/jetbrains-weights/JetBrainsMono-Thin.ttf +0 -0
- meltygui/resources/jetbrains-weights/OFL.txt +93 -0
- meltygui/resources/jetbrains-weights/README.md +2 -0
- meltygui/state/__init__.py +0 -0
- meltygui/state/account_state.py +22 -0
- meltygui/state/animation_state.py +97 -0
- meltygui/state/annotation_state.py +22 -0
- meltygui/state/chat_state.py +36 -0
- meltygui/state/code_state.py +10 -0
- meltygui/state/core_enums.py +59 -0
- meltygui/state/core_markers.py +115 -0
- meltygui/state/core_undo.py +1075 -0
- meltygui/state/file_state.py +75 -0
- meltygui/state/graph_state.py +26 -0
- meltygui/state/inspection_state.py +47 -0
- meltygui/state/menu_state.py +10 -0
- meltygui/state/model_enums.py +11 -0
- meltygui/state/new_core_model.py +2394 -0
- meltygui/state/orchestration_state.py +14 -0
- meltygui/state/query_state.py +24 -0
- meltygui/state/tensor_state.py +10 -0
- meltygui/state/terminal_state.py +23 -0
- meltygui/state/trace_state.py +32 -0
- meltygui/state/voxel_state.py +12 -0
- meltygui/text_index.py +816 -0
- meltygui/utils/__init__.py +0 -0
- meltygui/utils/jump_to_code.py +344 -0
- meltygui/utils/pkl_inspect.py +90 -0
- meltygui/utils/render_utils.py +1419 -0
- meltygui/view/__init__.py +1 -0
- meltygui/view/account_view.py +524 -0
- meltygui/view/action_view.py +73 -0
- meltygui/view/chat_decoration_view.py +112 -0
- meltygui/view/chat_view.py +1703 -0
- meltygui/view/code_view.py +2677 -0
- meltygui/view/collection_view.py +1185 -0
- meltygui/view/color_view.py +824 -0
- meltygui/view/control_view.py +559 -0
- meltygui/view/decoration_view.py +439 -0
- meltygui/view/diagnostic_view.py +177 -0
- meltygui/view/dropdown_view.py +1082 -0
- meltygui/view/file_view.py +1599 -0
- meltygui/view/graph_cuda_view.py +105 -0
- meltygui/view/graph_view.py +882 -0
- meltygui/view/header_view.py +848 -0
- meltygui/view/input_view.py +238 -0
- meltygui/view/inspection_view.py +1783 -0
- meltygui/view/layout_view.py +596 -0
- meltygui/view/lut_view.py +45 -0
- meltygui/view/menu_view.py +212 -0
- meltygui/view/orchestration_view.py +658 -0
- meltygui/view/query_view.py +118 -0
- meltygui/view/search_view.py +342 -0
- meltygui/view/tab_view.py +258 -0
- meltygui/view/tensor_view.py +430 -0
- meltygui/view/terminal_view.py +355 -0
- meltygui/view/text_view.py +8031 -0
- meltygui/view/texture_view.py +480 -0
- meltygui/view/tile_view.py +38 -0
- meltygui/view/trace_view.py +923 -0
- meltygui/view/voxel_cuda_view.py +824 -0
- meltygui/view/voxel_view.py +1860 -0
- meltygui/view/window_view.py +111 -0
- meltygui-0.1.0.dist-info/METADATA +143 -0
- meltygui-0.1.0.dist-info/RECORD +372 -0
- meltygui-0.1.0.dist-info/WHEEL +4 -0
- meltygui-0.1.0.dist-info/licenses/LICENSE +202 -0
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
"""Window view functions and supporting definitions."""
|
|
2
|
+
from meltygui.core.melty import ManagedWindow
|
|
3
|
+
from meltygui.core.core_render import render_func
|
|
4
|
+
from meltygui.core.rendering.core_decoration import Core
|
|
5
|
+
from meltygui.view.header_view import draw_header
|
|
6
|
+
import meltygui_imgui as imgui
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@render_func(is_default_for=ManagedWindow, is_tree=False, show_name=False, use_cache=True,
|
|
10
|
+
shadow=False, show_bg=False, selectable=False, show_add_delete=False,
|
|
11
|
+
show_tint=False, wrap=False, with_header=draw_header, temp=True)
|
|
12
|
+
def draw_managed_window(input_value, name, draw_state, mouse_down=False, selectable=False, **kwargs):
|
|
13
|
+
from meltygui.view.collection_view import draw_tuple
|
|
14
|
+
from meltygui.view.control_view import button
|
|
15
|
+
|
|
16
|
+
try:
|
|
17
|
+
window_draw_state = input_value.draw_state
|
|
18
|
+
except Exception as e:
|
|
19
|
+
imgui.text(f"Error accessing draw_state: {e}")
|
|
20
|
+
return False, input_value
|
|
21
|
+
|
|
22
|
+
window_input_value = input_value.input_value
|
|
23
|
+
name = window_draw_state.name
|
|
24
|
+
|
|
25
|
+
start_cursor = imgui.get_cursor_screen_pos()
|
|
26
|
+
imgui.dummy(4, 20)
|
|
27
|
+
imgui.same_line()
|
|
28
|
+
|
|
29
|
+
if not window_draw_state.persistent and not window_draw_state.seen and window_draw_state.closed:
|
|
30
|
+
Core.melty.delete_window(window_draw_state)
|
|
31
|
+
|
|
32
|
+
window_tint = None
|
|
33
|
+
|
|
34
|
+
if hasattr(window_input_value, 'tint') and window_input_value.tint is not None:
|
|
35
|
+
changed, new_tint = draw_tuple(window_input_value.tint, name="")
|
|
36
|
+
if changed:
|
|
37
|
+
window_input_value.tint = new_tint
|
|
38
|
+
window_draw_state.tint = window_input_value.tint
|
|
39
|
+
draw_state.tint = window_draw_state.tint
|
|
40
|
+
window_tint = window_input_value.tint
|
|
41
|
+
|
|
42
|
+
elif window_draw_state.tint is not None:
|
|
43
|
+
changed, new_tint = draw_tuple(window_draw_state.tint, name="")
|
|
44
|
+
if changed:
|
|
45
|
+
window_draw_state.tint = new_tint
|
|
46
|
+
draw_state.tint = window_draw_state.tint
|
|
47
|
+
window_tint = window_draw_state.tint
|
|
48
|
+
|
|
49
|
+
imgui.same_line()
|
|
50
|
+
|
|
51
|
+
if mouse_down:
|
|
52
|
+
window_draw_state.closed = not window_draw_state.closed
|
|
53
|
+
|
|
54
|
+
button_height = 31
|
|
55
|
+
target_spacing = 81
|
|
56
|
+
target_tint_value = 0.103
|
|
57
|
+
|
|
58
|
+
if name == "Window Manager":
|
|
59
|
+
button(f"{name}", color=(0, 0, 0, 0),
|
|
60
|
+
saturation=1.3, width=130, height=button_height)[0]
|
|
61
|
+
return
|
|
62
|
+
|
|
63
|
+
# Pass the search-match flags (set by draw_collection for this key) through
|
|
64
|
+
# to the name button so it can draw the find highlight — the visible row is
|
|
65
|
+
# this button, not a header.
|
|
66
|
+
_search_match = kwargs.get("search_match", False)
|
|
67
|
+
_search_current = kwargs.get("search_current", False)
|
|
68
|
+
if window_draw_state.closed:
|
|
69
|
+
if button(f"{name}", color=window_tint, z_offset=-4, tint_value=0.035, factor=0.92, text_value=0.305,
|
|
70
|
+
saturation=0.872, width=draw_state.content_width - target_spacing, height=button_height,
|
|
71
|
+
search_match=_search_match, search_current=_search_current)[0]:
|
|
72
|
+
window_draw_state.closed = False
|
|
73
|
+
this_window_right = draw_state.abs_left + draw_state.width
|
|
74
|
+
# summon_window does the anchor math AND clips the result to the
|
|
75
|
+
# screen, so a row low in the list can't put the window with its
|
|
76
|
+
# bottom below the bottom of the screen.
|
|
77
|
+
Core.melty.summon_window(window_draw_state, this_window_right + 10, draw_state.abs_top)
|
|
78
|
+
Core.melty.cache.invalidate_up_by_obj(input_value)
|
|
79
|
+
else:
|
|
80
|
+
if \
|
|
81
|
+
button(f"{name}", saturation=1.315, z_offset=4, color=window_tint, factor=0.659, value=-0.205, text_value=1.357,
|
|
82
|
+
width=draw_state.content_width - target_spacing, height=button_height,
|
|
83
|
+
search_match=_search_match, search_current=_search_current)[0]:
|
|
84
|
+
window_draw_state.closed = True
|
|
85
|
+
|
|
86
|
+
imgui.same_line()
|
|
87
|
+
|
|
88
|
+
if window_tint is None or not isinstance(window_tint, tuple) or len(window_tint) < 3:
|
|
89
|
+
window_tint = (2.558, 0.5, 0.5)
|
|
90
|
+
|
|
91
|
+
imgui.set_cursor_screen_pos((draw_state.abs_left + draw_state.content_width - 20, draw_state.abs_top))
|
|
92
|
+
target_icon = "" # Target icon (FontAwesome Unicode)
|
|
93
|
+
if \
|
|
94
|
+
button(f"{target_icon}##{name}", height=button_height, color=window_tint, z_offset=2, tint_value=target_tint_value,
|
|
95
|
+
factor=0.799,
|
|
96
|
+
saturation=0.764, shadow=False)[0]:
|
|
97
|
+
this_window_right = draw_state.abs_left + draw_state.width
|
|
98
|
+
from_zero_x = window_draw_state.abs_left - window_draw_state.window_pos[0]
|
|
99
|
+
from_zero_y = window_draw_state.abs_top - window_draw_state.window_pos[1]
|
|
100
|
+
window_draw_state.window_pos = (this_window_right + 10 - from_zero_x, draw_state.abs_top - from_zero_y)
|
|
101
|
+
Core.melty.move_window_to_front(window_draw_state)
|
|
102
|
+
Core.melty.cache.invalidate_up_by_obj(input_value)
|
|
103
|
+
|
|
104
|
+
imgui.set_cursor_screen_pos(start_cursor)
|
|
105
|
+
|
|
106
|
+
live_tint = (0.409, 0.1, 0.1)
|
|
107
|
+
|
|
108
|
+
if window_draw_state.live:
|
|
109
|
+
fa_live_icon = ""
|
|
110
|
+
imgui.text_colored(fa_live_icon, *(live_tint))
|
|
111
|
+
imgui.same_line()
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: meltygui
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Immediate-mode Python UI, live inspection, HDR and tensor visualization
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Classifier: Development Status :: 3 - Alpha
|
|
8
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
9
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Requires-Python: <3.14,>=3.11
|
|
14
|
+
Requires-Dist: anthropic>=0.40
|
|
15
|
+
Requires-Dist: freetype-py>=2.4
|
|
16
|
+
Requires-Dist: glfw>=2.10
|
|
17
|
+
Requires-Dist: httpx>=0.27
|
|
18
|
+
Requires-Dist: jedi>=0.19
|
|
19
|
+
Requires-Dist: libcst>=1.4
|
|
20
|
+
Requires-Dist: mcp>=1.0
|
|
21
|
+
Requires-Dist: meltygui-imgui[glfw]<2.0.1,>=2.0.0.post1
|
|
22
|
+
Requires-Dist: numpy>=1.26
|
|
23
|
+
Requires-Dist: packaging>=24
|
|
24
|
+
Requires-Dist: pillow>=10
|
|
25
|
+
Requires-Dist: psutil>=6
|
|
26
|
+
Requires-Dist: pygments>=2.18
|
|
27
|
+
Requires-Dist: pyopengl-accelerate>=3.1.7
|
|
28
|
+
Requires-Dist: pyopengl>=3.1.7
|
|
29
|
+
Requires-Dist: pyte>=0.8
|
|
30
|
+
Requires-Dist: rich>=13
|
|
31
|
+
Requires-Dist: rtree>=1.2
|
|
32
|
+
Requires-Dist: symspellpy>=6.7
|
|
33
|
+
Requires-Dist: tomlkit>=0.13
|
|
34
|
+
Requires-Dist: uvicorn>=0.30
|
|
35
|
+
Requires-Dist: watchdog>=4
|
|
36
|
+
Provides-Extra: input
|
|
37
|
+
Requires-Dist: evdev>=1.7; (sys_platform == 'linux') and extra == 'input'
|
|
38
|
+
Requires-Dist: pynput>=1.7; extra == 'input'
|
|
39
|
+
Provides-Extra: profile
|
|
40
|
+
Requires-Dist: line-profiler>=4; extra == 'profile'
|
|
41
|
+
Provides-Extra: tensor
|
|
42
|
+
Requires-Dist: meltygui-pycuda<2026.2,>=2026.1.post1; (sys_platform == 'linux') and extra == 'tensor'
|
|
43
|
+
Requires-Dist: torch>=2.2; extra == 'tensor'
|
|
44
|
+
Description-Content-Type: text/markdown
|
|
45
|
+
|
|
46
|
+
# MeltyGUI
|
|
47
|
+
|
|
48
|
+
Low latency tensor visualization for PyTorch.
|
|
49
|
+
|
|
50
|
+
MeltyGUI is an open source data visualization toolkit for PyTorch, designed to render massive tensors in-place on the GPU at an interactive framerate. The purpose of this project is to make PyTorch code easier to understand and faster to debug. Along with its core tensor rendering components, MeltyGUI is bundled with a Blender inspired UI framework designed to make interacting with high dimensional tensors feel fast and intuitive.
|
|
51
|
+
|
|
52
|
+
MeltyGUI is capable of rendering tensors exceeding 64GB in size. The primary challenge with visualizing data this large is moving it around. MeltyGUI skips the data movement entirely, and ray-marches tensors directly from CUDA memory.
|
|
53
|
+
|
|
54
|
+
<img width="2410" height="2018" alt="Image" src="https://github.com/user-attachments/assets/82ffae2c-ec0a-456c-b781-5428c54009f8" />
|
|
55
|
+
|
|
56
|
+
## Getting started
|
|
57
|
+
|
|
58
|
+
MeltyGUI is not yet published to PyPI. For now, install from a checkout using
|
|
59
|
+
[the setup guide](docs/DEVELOPMENT.md#setup).
|
|
60
|
+
|
|
61
|
+
The current setup targets Linux x86-64 with Python 3.11, 3.12 or 3.13 and a
|
|
62
|
+
working OpenGL 4.3 context. CUDA tensor rendering also requires PyTorch, an
|
|
63
|
+
NVIDIA GPU, a CUDA toolkit, and MeltyGUI's GL-enabled CUDA binding. The native
|
|
64
|
+
bindings install as prebuilt wheels on those targets; elsewhere installers
|
|
65
|
+
compile them, see [when no wheel matches](docs/SUPPORT_WHEELS.md#when-no-wheel-matches).
|
|
66
|
+
|
|
67
|
+
## Visualize a tensor
|
|
68
|
+
|
|
69
|
+
Create a small volume on the GPU and tag `draw_voxels` as an OS window with
|
|
70
|
+
`glfw_window`:
|
|
71
|
+
|
|
72
|
+
```python
|
|
73
|
+
import torch
|
|
74
|
+
import meltygui
|
|
75
|
+
|
|
76
|
+
axis = torch.linspace(-1.5, 1.5, 40, device="cuda:0")
|
|
77
|
+
x, y, z = torch.meshgrid(axis, axis, axis, indexing="ij")
|
|
78
|
+
volume = torch.exp(-4 * ((torch.sqrt(x * x + y * y) - 0.85) ** 2 + z * z))
|
|
79
|
+
|
|
80
|
+
meltygui.glfw_window(
|
|
81
|
+
meltygui.draw_voxels, name="Torus", value=volume, width=850, height=700
|
|
82
|
+
)
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Save this as `tensor_demo.py` and run it with the Python from your configured
|
|
86
|
+
environment:
|
|
87
|
+
|
|
88
|
+
```sh
|
|
89
|
+
.venv/bin/python tensor_demo.py
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
`glfw_window` turns a view into a native window: `name` is the window title,
|
|
93
|
+
`width` / `height` its content size, `value` the view's input, and every other
|
|
94
|
+
keyword argument goes to the view. The window loop starts automatically after
|
|
95
|
+
the module finishes defining its windows. The CUDA renderer reads the volume on
|
|
96
|
+
its own GPU and transfers the rendered 2D image for display.
|
|
97
|
+
|
|
98
|
+
To compose several views in one window, decorate your own function instead. It
|
|
99
|
+
runs each frame, so create the tensor outside it to avoid reallocating the
|
|
100
|
+
volume on every frame:
|
|
101
|
+
|
|
102
|
+
```python
|
|
103
|
+
@meltygui.glfw_window(name="CUDA tensor", width=850, height=700)
|
|
104
|
+
def draw_frame():
|
|
105
|
+
# Interactive widget, rendered in a loop. This function will be called wheneven
|
|
106
|
+
# the rendered image is invalidated
|
|
107
|
+
meltygui.draw_voxels(volume, name="Torus", width=800, height=630)
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
`draw_voxels` chooses CUDA for CUDA tensors and OpenGL for CPU tensors, NumPy
|
|
111
|
+
arrays and GL textures. Select a renderer explicitly with the framework's
|
|
112
|
+
`view_func` override (or call either renderer directly):
|
|
113
|
+
|
|
114
|
+
```python
|
|
115
|
+
meltygui.draw_voxels(volume, view_func=meltygui.draw_voxels_opengl)
|
|
116
|
+
meltygui.draw_voxels(volume, view_func=meltygui.draw_voxels_cuda)
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
`draw_voxels_opengl` accepts tensors directly, including CUDA tensors; it slices
|
|
120
|
+
and uploads the displayed volume to a GL texture. `draw_voxels_cuda` requires a
|
|
121
|
+
CUDA tensor and reads it in place. Both expose the same camera, mapping and
|
|
122
|
+
shading controls. Backend selection no longer uses the obsolete `cuda_march`
|
|
123
|
+
parameter.
|
|
124
|
+
|
|
125
|
+
See [the tensor and live-code example](examples/tensor_live.py) for a tensor
|
|
126
|
+
viewer alongside an editable function view.
|
|
127
|
+
|
|
128
|
+
## Build an app
|
|
129
|
+
|
|
130
|
+
Use the bundled UI framework to add controls, editors, and additional windows.
|
|
131
|
+
[Building an app](docs/APPS.md) covers persistent view state, render functions,
|
|
132
|
+
and window lifecycle.
|
|
133
|
+
|
|
134
|
+
For framework design, feature ownership and render-function patterns, see
|
|
135
|
+
[Contributing](CONTRIBUTING.md). [Development](docs/DEVELOPMENT.md) covers setup,
|
|
136
|
+
checks and packaging; [Architecture gaps](docs/ARCHITECTURE_DEBT.md) tracks the
|
|
137
|
+
remaining migration work.
|
|
138
|
+
|
|
139
|
+
## License
|
|
140
|
+
|
|
141
|
+
MeltyGUI is licensed under [Apache 2.0](LICENSE). Bundled third-party code and
|
|
142
|
+
assets retain their own licenses. The separate commercial IDE is not part of
|
|
143
|
+
this distribution.
|
|
@@ -0,0 +1,372 @@
|
|
|
1
|
+
meltygui/__init__.py,sha256=w-VWqGcylfIjK-drQc_Zt6fNkkEF-q_pq5EaIs_PSZw,5339
|
|
2
|
+
meltygui/hdr_color.py,sha256=nNUedZQOHkoe4PvoC6V2XC8uNXdOstYEe6KU2bSsjF0,32740
|
|
3
|
+
meltygui/image_load.py,sha256=Bcy8HZc5jagCtmbTBpDBHia2X4DyBxB7Xs93pLGmcmc,13005
|
|
4
|
+
meltygui/pbr.py,sha256=qlbqLhTu8MvkV_jksfGsice5XSmR6BVSan7_Npgw0jY,73357
|
|
5
|
+
meltygui/png_unfilter.c,sha256=WGXo2jHwg272MSJaLiOBeuFTQHpsAsb9jDQQ1jDMNPg,1735
|
|
6
|
+
meltygui/text_index.py,sha256=Cu-TL4Uj4YmtKrHj_qzyaQRgEx_6x74WTGCVJUhS158,34459
|
|
7
|
+
meltygui/accounts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
meltygui/accounts/internet_accounts.py,sha256=lbCxOLJ2tn-AbJh5Uqf8fA6K9tikH1CI9wHhbvlg07w,62145
|
|
9
|
+
meltygui/chat/__init__.py,sha256=VbInEk3Gc87nwMKOI3BS6nz4pDk93j_FmlxSMgTDNtc,4521
|
|
10
|
+
meltygui/chat/activity.py,sha256=FirRQPKC8fMQP7snDw1YmVYgl8aXPH0GgVRSgzZNfS4,3429
|
|
11
|
+
meltygui/chat/backends.py,sha256=5VH-NJB3V1_y_24FevEVClo_LUD3-6nQD5z_bxFo1nU,1480
|
|
12
|
+
meltygui/chat/chat_interface.py,sha256=zEByl65mUSecfeZOJ-AJosRqgsWEfc5lUg3mIw_EtME,33640
|
|
13
|
+
meltygui/chat/chat_proxy.py,sha256=8mpUTLaJKxGi3Wx0Tl-Tpt2-2iU-O3Vh34NtA9arkd0,14982
|
|
14
|
+
meltygui/chat/codex_proxy.py,sha256=zibqetAb4cQ_hSLs7Xi60CewOll3WRouu2iymd3c1Mc,31266
|
|
15
|
+
meltygui/chat/codex_settings.py,sha256=D3RbckCNkz9_NgRfI8JyCzI699E8ThUPqoe3HwBJAiA,4450
|
|
16
|
+
meltygui/chat/codex_transport.py,sha256=dObUGj3bDOTs1-tmP7rZWdXmReYtHYZMAbemnCNnmso,2416
|
|
17
|
+
meltygui/chat/command_parser.py,sha256=uw-QOrCc-3tn_Ye-ZXsYM_qXZS6yWYDKWNumjh_WyOE,9235
|
|
18
|
+
meltygui/chat/images.py,sha256=BJm5pMERNnGraEre0XuQZHX8Cxwk58rreCosCk8NYBs,9162
|
|
19
|
+
meltygui/chat/messages.py,sha256=EET9sfhFkIaPfGlpYlg69Wrq_d3SKlNaiSGBm9foMZ0,13621
|
|
20
|
+
meltygui/chat/metadata.py,sha256=NYhs0buXAZ7JOQchpE_u215m_TV8psEXMW_zbB0K8Sc,5661
|
|
21
|
+
meltygui/chat/writer_locks.py,sha256=np-oA2RVMxU5Nv_SUGrqEfEazhF5kwWceJIdGwuiI3Q,3005
|
|
22
|
+
meltygui/code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
+
meltygui/code/basic_converters.py,sha256=7TG-Poy5IVBA1GmWRef3emXuAzVaj3LuNY04inIXCZg,18021
|
|
24
|
+
meltygui/code/chain_converters.py,sha256=WWJRKggd0Ch-9QOKGbHWt0tXITnp3Asy_ms17MghkXA,97857
|
|
25
|
+
meltygui/code/code_checks.py,sha256=JpX859hWG70pPjtG7IQbDbuQN82wQjBaj8zcBFZnLzA,97630
|
|
26
|
+
meltygui/code/core_syntax.py,sha256=8SI0lbD7dkM1N-w54khdD4g6abdtUVAz3RliqsFJlCc,61545
|
|
27
|
+
meltygui/code/file_converters.py,sha256=oH7k6D4KaxKu6Sz3kOfpvrGgjjim6oIE7qtVoR9BQcc,87844
|
|
28
|
+
meltygui/code/fileref.py,sha256=XYn2PKI1jk9vklaW06ilasz8YW314gt0FSaoZZ5wJy8,29486
|
|
29
|
+
meltygui/code/hotswap_guard.py,sha256=Z-UORsUebAO1q_0GWJUFiDS_BcWAIX1-Gxp5lwvqVQ4,6137
|
|
30
|
+
meltygui/code/libcst_conversion.py,sha256=rSiEQ9evuVy71s1FJeYskq3YkbgW0X3XGOmKlF9zwmU,452933
|
|
31
|
+
meltygui/code/live_instrument.py,sha256=JGDUL4wJxI8NY8O8DQDMfdQvDENxv9rZBEbgoTDrMUw,17213
|
|
32
|
+
meltygui/code/live_view.py,sha256=QkEeTcR5pmDEFduzyKisK1aGnEnIk_DPQy2gJuag2s0,110296
|
|
33
|
+
meltygui/code/melty_scan.py,sha256=EiEM-jpDlngFXiIJ07bUIH7X2mpuw0GqWdmBzQdj4A8,111516
|
|
34
|
+
meltygui/code/new_codecs.py,sha256=CHOmodey9H9W7-9KwSmwLFYawj66h6vb-UhkzqF1zD4,61134
|
|
35
|
+
meltygui/code/new_converters.py,sha256=CFu9T4x7rEC2M7PUfBLdmRabpzGr6NkUVPbL356W4Ao,166718
|
|
36
|
+
meltygui/code/project_code.py,sha256=Nrdiece6MasTNi1VVxcqlWfnNcUORbEwvZlfKCMF8DY,11582
|
|
37
|
+
meltygui/code/source_context.py,sha256=LyZDYpYLoWrocpD9HpZLobQcxYeWdcKVgQk-GM1taC0,2221
|
|
38
|
+
meltygui/code/symbol_roster.py,sha256=HyeMyzoOepnlOZVQKft1m61IsG92xY1g1Z8Be_oWako,65481
|
|
39
|
+
meltygui/code/syntax_check.py,sha256=m1g7OhTAT-MMxErSKMLqz2_8dkrDbDsMDoJv1U28qKk,1457
|
|
40
|
+
meltygui/code/syntax_check_worker.py,sha256=nBRemiK2Bd93kqfdLPk6r4911CZQNwEk9gtPcyKBs5s,4642
|
|
41
|
+
meltygui/completion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
+
meltygui/completion/fim.py,sha256=zzctkW8Uktrr370kVdhn7dwChyu0JM1d6q2dBXF5ibU,50718
|
|
43
|
+
meltygui/completion/fim_context.py,sha256=pmYuqGCBhFHlx6qsqCn1f_G-S_nxos-bv4es27E2Mro,20741
|
|
44
|
+
meltygui/completion/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
+
meltygui/completion/providers/anthropic_oauth.py,sha256=x_N9on4dJNJaMmHptRHyS7nH-CEPjJ_IXwqTK1u2NOM,21271
|
|
46
|
+
meltygui/completion/providers/anthropic_requests.py,sha256=n7OQUq3ymCOoutwzlfXciacrBxlaoNIUH22RVECQGy4,2823
|
|
47
|
+
meltygui/completion/providers/claude.py,sha256=lQoLgAV8CPdH3kr-_EjGHDHKCNbObSrmndQpuZpSAKE,9185
|
|
48
|
+
meltygui/completion/providers/claude_usage.py,sha256=WzP3tXW_QaxkmEAsbv7ETjZkXRacBIPX9bDMqdnJ9mQ,22542
|
|
49
|
+
meltygui/completion/providers/codex_accounts.py,sha256=P9Xu10VZ1qJv7XfkGIzaHhZZ8WsL67Ic53HLqes5jso,7377
|
|
50
|
+
meltygui/completion/providers/copilot.py,sha256=vWt7weS2hlwuzIHh5vr6PyfJMCavm6P4ckgHl8QGaT8,26624
|
|
51
|
+
meltygui/completion/providers/oauth_popup.py,sha256=PvPl3GKl1ON9VGBVbb_D_QCcDQZFAUuuzecPUB_cvto,9419
|
|
52
|
+
meltygui/completion/providers/ollama.py,sha256=H5yHhtvQ1Ea7XtB2Lb5xZlFAqoma4wySq9GIu2krTpI,14692
|
|
53
|
+
meltygui/completion/providers/profiles.py,sha256=yzK0gtolInDfjXyZpi0u6qBvBbv5-6TBZ4LZugCfD1M,1253
|
|
54
|
+
meltygui/core/README.md,sha256=-TAFXpsbvuV9dhi1E550WU34nPcP6IkZSWpcGRM2onI,5637
|
|
55
|
+
meltygui/core/__init__.py,sha256=NQnuSYYGxJhquq6jFPaDzG0m66heXxXRbfO8Zoq5BqM,31
|
|
56
|
+
meltygui/core/core_render.py,sha256=uN8KgcNdFw8-vf6QSZN_F1idbVjaX9LYa5Afky4iaCw,369521
|
|
57
|
+
meltygui/core/definition_hotswap.py,sha256=AkYbyI6rd7rLmJz8Wimi9Egk86ct63A0leTcpl1lJkg,10561
|
|
58
|
+
meltygui/core/melty.py,sha256=PGpYDgNTmSreomhYT9LXw5ukWOri8U3EPcn9I1wiNng,325939
|
|
59
|
+
meltygui/core/module_map.json,sha256=HCOCrv2-e_lhetpL5Kaos1crx1YUN-hefawl32ExSEE,68987
|
|
60
|
+
meltygui/core/module_names.py,sha256=Y4fFyW8B9Sp68OymFQcYzFNpdDppwFV4TEBTPwOJv0Q,587
|
|
61
|
+
meltygui/core/automation/__init__.py,sha256=qLfR1a21ndcddqigc3kz2QEeefXyAxrUR2Aavgts94M,45
|
|
62
|
+
meltygui/core/automation/action_core.py,sha256=JrTWDucSZVYf3ZmQlT0D2FJYVU-TubgiaRGTDW4q5dI,6068
|
|
63
|
+
meltygui/core/automation/collection_action.py,sha256=R5auFG5EeX_M8vkqwFNd_hkKcqDVx6rwf-AZYYhTtFg,1473
|
|
64
|
+
meltygui/core/automation/mcp_eval.py,sha256=RxQe4jg8lUdYeoJzQWnjam-MF93-hnVpBuhK19gtnIM,5509
|
|
65
|
+
meltygui/core/automation/mcp_hotswap.py,sha256=6JQEOmB6fqxbqLJsdvGS8FvnDDMQBkMEm0NkDougZvQ,4573
|
|
66
|
+
meltygui/core/automation/mcp_query.py,sha256=N2h4Q8Za1Tuytcpiroqam0zsy875rFSh6V0ipE1qBj0,22796
|
|
67
|
+
meltygui/core/automation/mcp_server.py,sha256=HxLjioiVBGsK_qnF9id3Llfr8Lg8B3dkSAC_QAfN508,28482
|
|
68
|
+
meltygui/core/automation/orchestration_core.py,sha256=-CdCpNbuZ1FHVxmng_J1pi8twxb0cDJlK3hFphj5hGI,132256
|
|
69
|
+
meltygui/core/automation/query_core.py,sha256=sdsM0njD4KqpXWoYs-y63CPTRD2p7hxOQiDDJJcyc6Q,5717
|
|
70
|
+
meltygui/core/automation/search_core.py,sha256=vq3oXfx4CZKEfcAERQxhtGLffC8lI38BMPARrxieYDs,1154
|
|
71
|
+
meltygui/core/automation/selector_core.py,sha256=Iw55wLN1ZNq0djdRblgqPKG6LTqiSpsfUnAv6lmx7OU,13350
|
|
72
|
+
meltygui/core/automation/value_core.py,sha256=FOs56KHACWiTPSVhlxkaz4ah25j9znaGM05DeGksfkU,83206
|
|
73
|
+
meltygui/core/cache/__init__.py,sha256=lqIupeNqK0CgSSyX-oVxiKbl_-6oisCQfj0DJPcOCN4,40
|
|
74
|
+
meltygui/core/cache/cache_diagnostics.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
|
+
meltygui/core/cache/invalidation_decoration.py,sha256=rzfC3RoeTWUtH5Dj5pIikHTIC2_FlKs7nBYYMQNfn3U,6783
|
|
76
|
+
meltygui/core/cache/invalidation_tracker.py,sha256=Wy3YOIz1NDc1kNuypMfbXusGokG0msaaJT3KtP7_-tM,1328
|
|
77
|
+
meltygui/core/cache/tile_cache.py,sha256=snMAPFv0a4sMiWrzMFde8ibCErpTi0JLCmm4LVoJcJU,300839
|
|
78
|
+
meltygui/core/conversion/__init__.py,sha256=e2s7OoBQMD2xb-odKUzBme7QmQUYZUAmRW6VVyw0c_U,45
|
|
79
|
+
meltygui/core/conversion/bubbling.py,sha256=BmnQoru9ogOaCx5tyHahllW6V0LtAyjWXNEqEySKke8,23281
|
|
80
|
+
meltygui/core/conversion/cache_tree.py,sha256=T0wbU30ZZDsNoTal4j2jaFZVLFV6FjdRNhQ9_NgcI9I,6243
|
|
81
|
+
meltygui/core/conversion/chain.py,sha256=MBUlynJbBcs29HwtvA_2tYIiSb39M7Ir4IxHZEFwY0o,4769
|
|
82
|
+
meltygui/core/conversion/converter_register.py,sha256=xudlCyXpXKl5lJPVn4nH29vlbgDjvb3AJ2dRK3l4wL0,5820
|
|
83
|
+
meltygui/core/conversion/data_decoration.py,sha256=EOodXhlOfEvxUEad17SKFjTrPJJintw16TiozVbfj0w,2631
|
|
84
|
+
meltygui/core/conversion/dict_conversion.py,sha256=llI-SfkY7P3vU6-pL6ppqLdUwg6src8yf_zddwPi8dE,75139
|
|
85
|
+
meltygui/core/conversion/dict_conversion_util.py,sha256=8g0avgayAcXglcVIjL-AC8cAURGEtW8Y4Es8nugxiOc,6753
|
|
86
|
+
meltygui/core/conversion/dynamic_obj.py,sha256=In6_ggHYzf79VNDUvGniQxwGWX8dNAOcthNiAExYRko,3151
|
|
87
|
+
meltygui/core/conversion/graph_compare.py,sha256=8zW6G5ya8FSie1TaRAjyBUm6gXHoK_TzkmLjTH5Q_Q8,8142
|
|
88
|
+
meltygui/core/conversion/load_save_v2.py,sha256=KN-IdkjwY5EKh--BxKN-GBOwR2hKI42yKLny72ZXGgM,47166
|
|
89
|
+
meltygui/core/conversion/missing_saved_class.py,sha256=hdo0Wqe2bKyYuKunGO5s6x3VxIIc3D787kmjV5GIqBg,1622
|
|
90
|
+
meltygui/core/conversion/path_finder.py,sha256=d3cvAf36-6Z492fBYTQzvWWNbkt9m4bDNqiXNoybLxw,23053
|
|
91
|
+
meltygui/core/conversion/render_host.py,sha256=V2efN9Z6OpYDvrTxYqwDpRGsvEc4ClSl6CdCwFhagUM,58769
|
|
92
|
+
meltygui/core/diagnostics/__init__.py,sha256=T9Ahhyb2kNloH6jF_-fI8lccMCN9Zl2_qghkfF8CTKE,46
|
|
93
|
+
meltygui/core/diagnostics/attribute_churn.py,sha256=PTbSPks5aruAybO2U_nHzkbgzy24x5pj4iYqPW3dn1U,1234
|
|
94
|
+
meltygui/core/diagnostics/fps_counter.py,sha256=A2pwfqSAIVQjp6ecMKnQ5Z4MvcjzVPnBiigvPx4khRs,1510
|
|
95
|
+
meltygui/core/diagnostics/gpu_frame_timer.py,sha256=RH18fNelZNQIXPtlG3EIXt1WZazQxzHG4f45WsDGP6c,4230
|
|
96
|
+
meltygui/core/diagnostics/inspection_core.py,sha256=OSke2LVAhoz2_Kk0Tik7mh_kDWvzFz1vYOsyZoooEEQ,6260
|
|
97
|
+
meltygui/core/diagnostics/monitor_core.py,sha256=-K6XEwDu5DPZlDcxqhy8NmIA2HGop8CsJhcHZ_ylAS4,3077
|
|
98
|
+
meltygui/core/diagnostics/notifications.py,sha256=A1OTbXSGnpwh3NpwDh_UJjshW75QuBWASAUjHu4-nAI,31027
|
|
99
|
+
meltygui/core/diagnostics/perf_trace.py,sha256=t0eRMHD3-RPew4Wtkiee8zUKaO7Yk8tmwyWu5GyAuvE,10105
|
|
100
|
+
meltygui/core/diagnostics/profile_decoration.py,sha256=DxV3iwv6sLGvMvdrQO2kKc98K3LIpwMTcE1ccwgrCS8,3099
|
|
101
|
+
meltygui/core/diagnostics/resize_trace.py,sha256=vzNumNyJZQX_up5nhTiCG7a2Cy6niCtW9jLUiW_rmjs,3124
|
|
102
|
+
meltygui/core/diagnostics/screenshot_core.py,sha256=TJBP2qXCFKpCP3PARmMvYE3cRHBUi-X7scBzbu_iRNM,11453
|
|
103
|
+
meltygui/core/diagnostics/session_status.py,sha256=eRb6yb4lBZpXlEBJzMGHPg6LxD_MQob_Iu_-gtqVMLs,3623
|
|
104
|
+
meltygui/core/diagnostics/trace_core.py,sha256=HakGWVzSvg7FuSB967CQmj-LdQPXvqCWH3tjRMvw_vc,21281
|
|
105
|
+
meltygui/core/files/__init__.py,sha256=rxsuAS3MW4XAkxrgyOT69vX7S8n-pyubWg_LfO4eQ7A,40
|
|
106
|
+
meltygui/core/files/file_core.py,sha256=VnijF_B65i28A0Ak8Qyfk9yx2Tsdus-CiXee8iZdvXM,10176
|
|
107
|
+
meltygui/core/files/file_explorer_core.py,sha256=LCVVryXmEbJ04EnEok5vt0wpNvMxS-bRe_eOolrxW0A,4846
|
|
108
|
+
meltygui/core/files/file_tree_core.py,sha256=iIQZxw5-tYXgt7Uq_lrILEE9tSl_SBOjteMrSgyJbtw,8934
|
|
109
|
+
meltygui/core/files/file_watch_core.py,sha256=yOz_2_eqHohtpOrEC2S9rXw-FRgnpFtVrfctreAws2s,1940
|
|
110
|
+
meltygui/core/files/import_graph_core.py,sha256=HOV8o8OVTnoe6qFP5-8WIPbNhxHHVDKzTPjWuqI5uDI,2114
|
|
111
|
+
meltygui/core/files/metadata_core.py,sha256=ofPn8ERwrUXwzftD_R78nNy0H410wPM3xOX2zTFfOZ4,1753
|
|
112
|
+
meltygui/core/graphics/__init__.py,sha256=ZkBvkFfx3jZu9rnyOeeP0L7HPSbpsr0tl3wZ7bJ-xO0,43
|
|
113
|
+
meltygui/core/graphics/cuda_context_core.py,sha256=8MI2TTyMc12yLlD0W7Qe7_qxakcplDrg0kRint4L1Q8,5854
|
|
114
|
+
meltygui/core/graphics/cuda_interop_core.py,sha256=M9gmaM14NH9z2_Aw2Y4lQuat04iKvFZqUThFAlb2Uho,4953
|
|
115
|
+
meltygui/core/graphics/cuda_kernel_core.py,sha256=HmiZyDq7_5pbpa01SXO9pkTU0YbbdM3U7bSdBBxZxks,3716
|
|
116
|
+
meltygui/core/graphics/framebuffer_recorder.py,sha256=Q5GhivJHmkDlUMH9XkMoTLOmEYlNB70H6IGMxEzuuBg,10877
|
|
117
|
+
meltygui/core/graphics/gl_state.py,sha256=7V85zk2Ryoi17zQjYHSV3fmx1x4W7Il1-g3Q3s0EMcg,29184
|
|
118
|
+
meltygui/core/graphics/lut_core.py,sha256=nw1GZs3tOwcOH9WGNulCm4OJh260Bsz53GwuClZVdX4,2230
|
|
119
|
+
meltygui/core/graphics/overlay_renderer.py,sha256=CHj209kYFBsh5N_E49y-C3CaQqKyFOF-kCvg0AjWLU4,48838
|
|
120
|
+
meltygui/core/graphics/scene_target.py,sha256=YEhzvksdnnkYVXubAGsfsGYlj1bsoVG-3jxC5n8ZeHM,7918
|
|
121
|
+
meltygui/core/graphics/screenshot.py,sha256=MTqM9RDg7o3pZTBNAUOAWdnLLnq4DWl_3XyuYrJYOHk,17593
|
|
122
|
+
meltygui/core/graphics/shader_func.py,sha256=9N2HsN_pXLJAnV9Vt-J_YnwTeaEXP4y-AXNv02NZyyY,20165
|
|
123
|
+
meltygui/core/graphics/tensor_core.py,sha256=E6OCvyp34szA_5Lg7g2V7dFNDRzMZrdjmqZjFO1kOac,2216
|
|
124
|
+
meltygui/core/graphics/text_texture.py,sha256=Txmlxm606pkrN1fevTAAAmEkCoWPs49_coZJNmfiCSk,14450
|
|
125
|
+
meltygui/core/graphics/wayland_color.py,sha256=rkTHpBTaWKJrxINX_B7n8jKoTMIBFkJxGGYYQbwJ4m8,29042
|
|
126
|
+
meltygui/core/input/__init__.py,sha256=23BZqM7Me-zwul8AVeWMC0sM-o0r_A6rk3xNaP5T3Xg,40
|
|
127
|
+
meltygui/core/input/collision.py,sha256=1aklDjsT7UtDsSBUVeaoZFmCm7DzvWDB5NdY258b4AI,7058
|
|
128
|
+
meltygui/core/input/drag_drop_core.py,sha256=JhzvMGaUVI2iEK9ptzEUrr8bK6Fs-cBipSsGuWBVoxY,71651
|
|
129
|
+
meltygui/core/input/hypr_left_drag.py,sha256=jp8XncgzlLhySk9GKlDAw_ygJRwWhtuSjzmTb_HFpG0,13487
|
|
130
|
+
meltygui/core/input/input_core.py,sha256=mqC72rUSr9nVgZcBtkFR3ohLx5x_vggpPGlLNEGm21Q,11463
|
|
131
|
+
meltygui/core/input/input_handler.py,sha256=w58uA44utD2GFM3u8UJ-pEhLgl002cPOBRjZUS471pY,50010
|
|
132
|
+
meltygui/core/input/mouse_cursor.py,sha256=hJAXYp_eKoOBpV5YEgWV7EVT52WBMmpPJcHZG8jzSa4,16596
|
|
133
|
+
meltygui/core/input/pynput_backend.py,sha256=DH08H83uRodmnFQYcg7ksk-FXhfDMedObnPdpKGmLPc,39118
|
|
134
|
+
meltygui/core/input/space_mouse.py,sha256=lVYFbWPgSpjh1EHxvgo9d4tZiNuxmQozV9Ohc0nf_UU,13975
|
|
135
|
+
meltygui/core/input/touchpad_backend.py,sha256=xx6ukFUiBxr0cfSqV-TrxMrwIFkNWdgeVU4fSw1BD6k,17065
|
|
136
|
+
meltygui/core/input/view_selection.py,sha256=e0HLQKNe5fh2QSyQMkOaBbWD4ar9fr4if6AId8H3C7k,7848
|
|
137
|
+
meltygui/core/layout/__init__.py,sha256=L3t11mWz4xatd6wQ633ICQFHpbBe8K42x27DrE_ikYM,41
|
|
138
|
+
meltygui/core/layout/column_core.py,sha256=OBg5nzBp0OkREbHr1Tx_eApmQ8gT0HpnR5umXFvuafQ,107136
|
|
139
|
+
meltygui/core/layout/cursor_core.py,sha256=8URRUXukxiydVjskDDVlwGCxZd91y5N7uG3gtNOciCA,5478
|
|
140
|
+
meltygui/core/layout/dropdown_core.py,sha256=i3xBhEAKUTbXoanU6NBmEbOLd-R_Lqb1ZZwF2Ew0ueo,12550
|
|
141
|
+
meltygui/core/layout/edge_constraints.py,sha256=5ZwnaSfvG6kLKkiD6nl2dagRbSVXqbH5SrCzqvrhFKw,6916
|
|
142
|
+
meltygui/core/layout/grid_core.py,sha256=YiUy3iSudTXmY9Dih8yhXyXKGaiZj3-UdkL-cuYj3yk,4501
|
|
143
|
+
meltygui/core/layout/header_core.py,sha256=p7SZzPTYvzl3hp0nV4UX3MQ_FOk1o-Viey0bXMhW7qU,846
|
|
144
|
+
meltygui/core/layout/header_runtime.py,sha256=w3AOqtKj8LsQhtqdP4Ylc4xHE4ckF7VnmT_E85dBHc0,2253
|
|
145
|
+
meltygui/core/layout/layout_core.py,sha256=S2rXlwf0wOiAyZ3MslFz5szsMBVn0GieeIvnC3xlFEc,4688
|
|
146
|
+
meltygui/core/layout/tile_manager_core.py,sha256=Yo9Oj-pOJkRtHQ4pL6cAVY1k8JG4qBG0hhK8-0YzSOA,26932
|
|
147
|
+
meltygui/core/rendering/__init__.py,sha256=nFz6r9BP7grtkO1q8uEorwZAb5TfKuuD6UilL6p7Jq8,44
|
|
148
|
+
meltygui/core/rendering/core_decoration.py,sha256=ltj_eXmV1FuLnuwzaEOnNGh5C2Mdh3Ii8UhPg7EuFPU,15190
|
|
149
|
+
meltygui/core/rendering/core_render_helpers.py,sha256=a6vZaQyROTZc5dUcM1QlsR0vE2yMlzh1yBlCZZ6mMZo,11181
|
|
150
|
+
meltygui/core/rendering/func_metadata.py,sha256=6myC2eHx83lSmXj8t5Thz-H0lAnEHutLyUsfuOEX-4o,15980
|
|
151
|
+
meltygui/core/rendering/mode.py,sha256=j7psi1qMUDZyeD4RkBbya_-VzY7Wp4oPOVe6_3bOuiQ,38273
|
|
152
|
+
meltygui/core/rendering/mode_defaults.py,sha256=QWvNYdjT1TMQA0_eM2BHpjz9Kj6Ijh48RlkKLnYAHn8,1215
|
|
153
|
+
meltygui/core/rendering/modes.py,sha256=vHQn_a45HeNPv7pXk8ZZqkpLBm_6RJXI1t1GSBdJLV4,5956
|
|
154
|
+
meltygui/core/rendering/parameter_core.py,sha256=0TQNrH-D7fDs3sBCEIQvbjYrSIMQXCdi_pI3Doz6OSs,81455
|
|
155
|
+
meltygui/core/rendering/render_dispatch.py,sha256=6CQJz-rX6e_xmV1ucy8m3wfQTrv-cm5GoHqUL23sdaY,88627
|
|
156
|
+
meltygui/core/rendering/render_funcs.py,sha256=iRJqA-9eiRIxFfWiDec0ywzyVQ90jpy0nQrVMuEoXMQ,13616
|
|
157
|
+
meltygui/core/rendering/shaped.py,sha256=6jnm33vfb6U27RhNvXPB--ufxgVPi28FKTDkFGFkqbM,12887
|
|
158
|
+
meltygui/core/rendering/window_decoration.py,sha256=tnwgqGH1qTQ6JAtZuFEn2UbGVDOJ2vEM5CTL4HsSgyo,491
|
|
159
|
+
meltygui/core/runtime/__init__.py,sha256=aU32lxO4bl8_2zNk527p33s8IbbN-aBg-VfFeHLJQk8,42
|
|
160
|
+
meltygui/core/runtime/app.py,sha256=gb9JvGzN5VhB5fcRAl9U_2qwzmCtHhT3fyWXmvJyuvA,33596
|
|
161
|
+
meltygui/core/runtime/app_session.py,sha256=52MTDyZJAZakgtgYZV9p0Y9IiRY-RbDtKZGCpbcfWVs,6327
|
|
162
|
+
meltygui/core/runtime/background.py,sha256=uFjx3YK_jtrg4h6zggtOEdFtlFCpW6OCfCq2r-kehJQ,24549
|
|
163
|
+
meltygui/core/runtime/extensions.py,sha256=CuYKQso6Aslv_JYUJSwZLIBa263S_pCjtMJBAH79jb0,1484
|
|
164
|
+
meltygui/core/runtime/gc_manager.py,sha256=xdLDzxzY7a2AF9BmII7cn0dKfMk9wcg5JusmVqlaUyc,50246
|
|
165
|
+
meltygui/core/runtime/lifecycle.py,sha256=utXBpw_ulkwyuZcsDKoutRyqzU3kjjxbxOQ0_G_Hm3k,1047
|
|
166
|
+
meltygui/core/runtime/paths.py,sha256=NmSGjyldY1lMZJ_sHwcq4SwEkmVHi2N7-mrad1jF4to,960
|
|
167
|
+
meltygui/core/runtime/settings.py,sha256=TqxV3wraxq5d4MSGWa5GXRT1adTAq8n6vruin6-_xBo,507
|
|
168
|
+
meltygui/core/runtime/singleton.py,sha256=LxGHDp2UYapxGz9qZ5L7c4PXJRUbDcji3a63c_W4V_I,413
|
|
169
|
+
meltygui/core/runtime/thread_safe_bool.py,sha256=i5UgsKhXzlbdqCBOu4aDpH0dBYprRhfkF2bosl8CDJI,528
|
|
170
|
+
meltygui/core/runtime/thread_signal.py,sha256=sI0lySqqDRJKIV2DupuOiqsVoyJeC2BtY_dBw86oLn0,825
|
|
171
|
+
meltygui/core/runtime/toggles.py,sha256=4Zdm3xzU0CuBFbgg-SLnKRe5ffsh8wLgW13t1kAJjVI,161213
|
|
172
|
+
meltygui/core/services/__init__.py,sha256=BRdDyeLvek-RS-VygUhYck0AG7MZ440zSeEnoOKUrQQ,43
|
|
173
|
+
meltygui/core/services/account_core.py,sha256=-LP4uXEjZn6yhgAGT8oNQTm0ltBzFAGH-rC2gjfKYfQ,299
|
|
174
|
+
meltygui/core/services/chat_core.py,sha256=t9KkzqY4raq6Vi2cJau59gYNcfjKT0t2EZg9T1kr7X0,727
|
|
175
|
+
meltygui/core/services/claude_terminal_core.py,sha256=Wue2qc4IyP-Ax9V2eOoSCnQi-XC0IEbvoZYeoYWquk0,16978
|
|
176
|
+
meltygui/core/services/terminal_core.py,sha256=dGm3C5fNLeHoUXWgkeNaCUIJUbJxloJe-9ux9Z-4lBk,21752
|
|
177
|
+
meltygui/core/services/terminal_runtime.py,sha256=AadnkQGvA0ahx-FqpBe8ZNekof9HDxLLdlcvDLzfWp8,2890
|
|
178
|
+
meltygui/core/styling/__init__.py,sha256=cREBOWuRcF5jiDBSkCw8gJSmxNDl146z2BMHbxP_-JY,42
|
|
179
|
+
meltygui/core/styling/color_core.py,sha256=qCtHCkAEXpueguvsXAeMXRPKIG3HOFnlqHYN4cE8MBA,1855
|
|
180
|
+
meltygui/core/styling/fonts.py,sha256=tx6zjgzBbXTJcX6DRlJ2oH2CgcauCmnqgB2NpNGTX50,30725
|
|
181
|
+
meltygui/core/styling/global_style.py,sha256=HBvr9nwb4QEMFCE8oPZ2bYJoS7p-iAPk4--YpK3AvD8,9131
|
|
182
|
+
meltygui/core/styling/style.py,sha256=sDB5KH70lWZeRv_HHoqPvIO6Wouhy49CaFSMS6ERQXc,9071
|
|
183
|
+
meltygui/core/styling/style_core.py,sha256=5c-fFnyr34XkRfbzdH5KJkGUA5ZO88zMmzH6kUDPaI4,22639
|
|
184
|
+
meltygui/core/styling/warm_start.py,sha256=8WpuFygRF7hCIH-OAhttm6OW5OPySCdLT7DHUzoj3b8,5199
|
|
185
|
+
meltygui/core/windowing/__init__.py,sha256=sxb996QyIPT-sdBwoRORUA_zo2TK2xJ6Uh0-b6o_Qvw,44
|
|
186
|
+
meltygui/core/windowing/dock_core.py,sha256=AWX0v73mRyvacEej-rkqmRsuNpi2Tf_KqzRFcwDw8YE,8415
|
|
187
|
+
meltygui/core/windowing/frame_geometry.py,sha256=jP9OzjYXhRAAKVIcge7AnW0aPGY72DSZtJSzCYuvtMw,1605
|
|
188
|
+
meltygui/core/windowing/geometry_feed.py,sha256=K7Q3RmtFtPq3uYRn-DNY1V1GdIPSAETj_CCCOhL3GYg,35571
|
|
189
|
+
meltygui/core/windowing/glfw_utils.py,sha256=BZsZmD_SZ4sciwM8pgAiYmEsxcKraez8qQyPhdU1ZLI,51888
|
|
190
|
+
meltygui/core/windowing/os_frame.py,sha256=AJyOEXVUSMlQoMaNexaGqgEaRZ5LAVhLcTvGNBnNvMQ,74360
|
|
191
|
+
meltygui/core/windowing/surface.py,sha256=iykLSq1m0NOoKuiIWer5tOcaoYDvencLl_9r9gZlt7c,32657
|
|
192
|
+
meltygui/core/windowing/titlebar.py,sha256=kUHT8Q4-QGYByUJ0t3uvu6Ozr6CNr3k9QGiPspzVpkE,73445
|
|
193
|
+
meltygui/core/windowing/titlebar_buttons.py,sha256=sSrDcTg_c5l_ZE6WYm2rF8xg1u1lgzXvUPx7CTqKo9U,10828
|
|
194
|
+
meltygui/core/windowing/wayland_move.py,sha256=LiAndHFsePNwU2I9azBDVZPoRpv9d2s_xZSBTcktoUA,41642
|
|
195
|
+
meltygui/core/windowing/window_api.py,sha256=VcBQPVXvefp9mJhOV1C914R36J-GAz0syIC6QbGARjY,2340
|
|
196
|
+
meltygui/core/windowing/window_constants.py,sha256=zf1MpEL5kkXcB--QUDcY_jsyHahPLF-gaenbHW7V7F8,6976
|
|
197
|
+
meltygui/core/windowing/window_visibility.py,sha256=AJEblS5vjen2dogbXo0CKhLg2YNvnx3HLGsd56TdgiY,5958
|
|
198
|
+
meltygui/core/windowing/backends/PYIMGUI_LICENSE,sha256=QAKo4Hgoc8GjJF2k31xjFD8pCDsRWYErrNsCu6fXFm8,1510
|
|
199
|
+
meltygui/core/windowing/backends/__init__.py,sha256=jtUUqanSKJkw6H-iGr9t0QWI58gM_OC-oRjhjLZIc1I,71
|
|
200
|
+
meltygui/core/windowing/backends/imgui_renderer.py,sha256=pjqdUowex77h4CT_QsPc7j8Shlh-mqgGkq7Nzez0gWg,4959
|
|
201
|
+
meltygui/core/windowing/backends/native_wayland.py,sha256=bJ1CulTMaCTsePE8nf4zhF4v34OyFc6DIqwuuMuPt_0,41001
|
|
202
|
+
meltygui/core/windowing/backends/wayland_protocol.py,sha256=by0pzZV-nGfeUvmPaJdMwSoqAYIF3QeleshlHmk8yuU,5429
|
|
203
|
+
meltygui/core/windowing/backends/protocols/xdg-decoration-unstable-v1.xml,sha256=iOLWD3yo314DS4FvuKSz8LKr1vwHtO5soFinJATqaQQ,7089
|
|
204
|
+
meltygui/core/windowing/backends/protocols/xdg-shell.xml,sha256=e6f5yEc97uZ0yx8VShir0LsMwHJgT8BVsMFeRZ_Ex98,63846
|
|
205
|
+
meltygui/debug/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
206
|
+
meltygui/debug/app_view_utils.py,sha256=nmYEi5noPla6xsD3u32IO4nFQXHh7R9EOFuubcrRH5U,276
|
|
207
|
+
meltygui/editor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
|
+
meltygui/editor/bash_syntax.py,sha256=NlabhPzV9aOV6Rj3hHEerCcRMHKT85Odu6G-thdTbOE,1413
|
|
209
|
+
meltygui/editor/code_line_fast.py,sha256=097Ocob2fLz2dEqH8Q6_8mcJ0pW6dXbXpA9jTwu0b4U,6124
|
|
210
|
+
meltygui/editor/diff.py,sha256=TNtBzdIAFdY7QPTeYtBdqzd6rfnsy7kCuw664_NdPPg,6764
|
|
211
|
+
meltygui/editor/external_changes.py,sha256=Nwz9hZo0dngmse0dBP8lwqWpLihNmjwuJzi-_RUwrOM,8143
|
|
212
|
+
meltygui/editor/file_header.py,sha256=F-5xUiWRb5McVr4duckLLjPAydGFy93IWOVjlEcn5_Q,1467
|
|
213
|
+
meltygui/editor/live_usage.py,sha256=XfM9zyuqJOogKFfOZtzjTiVJjt-PPIrPA0M4Ktb2iyk,7503
|
|
214
|
+
meltygui/editor/live_view_views.py,sha256=dO1UyZZjIbpHBB6BmWtKJAVVmb4xcr2Z23CdzrHSyPA,84695
|
|
215
|
+
meltygui/editor/pending_save.py,sha256=JX8oQkT6Oezqc9-Ar5jdpLtfKB4j5A0-14S8w-FrJ6M,66968
|
|
216
|
+
meltygui/editor/roster_tints.py,sha256=H6k98yzd7czwQe1IZaY_tBm3Q8dP68brvqrnRtMhzsE,24458
|
|
217
|
+
meltygui/editor/source_preview.py,sha256=5FCDh_CHGf3x4EoF2W0Cr0Qy3NXltLF74ZR1v0Udya4,511
|
|
218
|
+
meltygui/editor/source_tools.py,sha256=31IKRBxgt9ZeHC2RrEsYg5ti9sn8PVOCempIrUfsPrM,321
|
|
219
|
+
meltygui/editor/source_ui.py,sha256=hbsbySfVigZ1mfCDxf3-ONiYksISHkoL-RF9g_eon-I,3376
|
|
220
|
+
meltygui/editor/spell_check.py,sha256=qGIB_qBK55gvBxxQUNOtqRI6TPay8OXMk6ROII7YHRo,3129
|
|
221
|
+
meltygui/editor/text_editor.py,sha256=T1PeHUOgrwaR3tyJ0roNH5Y_5huPnjRKkO7Y6WtMxMA,410827
|
|
222
|
+
meltygui/editor/usage_picker.py,sha256=DlMMejTYG0b_XZl7U1zzT5iJ9-nDNuUhswf6IJa1XKg,25821
|
|
223
|
+
meltygui/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
224
|
+
meltygui/events/example.py,sha256=6St2-VbG7WLIlNCfHtA1cUtNQ06JWUFgLZ_EwgKd9E0,3521
|
|
225
|
+
meltygui/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
226
|
+
meltygui/examples/columns_demo.py,sha256=LUalUL-Nw2JgazkWnrSu5jVCHJRyXNCyEtohHb48d7o,1471
|
|
227
|
+
meltygui/examples/columns_window_demo.py,sha256=WTBFQsNMsAnLN-BMcVaCXqSNDERCPUSvjjKSL0br9nM,2637
|
|
228
|
+
meltygui/examples/context_menu_demo.py,sha256=G7JT42H5UVAC8E0axDYDpbWURjlrdQCMbWHHmiZRclA,1199
|
|
229
|
+
meltygui/examples/context_menu_window_demo.py,sha256=TSFXIcf9ioX5YwwE6kgON5-iL2X4t5R57_0nYMOCCzs,1759
|
|
230
|
+
meltygui/examples/gui_playground.py,sha256=BUJ38H4Uac7UzQSZp9luoVhIyFBO6OMV6D_5oZHjwhg,5791
|
|
231
|
+
meltygui/examples/live_view_playground.py,sha256=Bj4OOcD5IBAsGUBp897fNoOTN4RQaB5zly0D-VGtygg,10784
|
|
232
|
+
meltygui/examples/lora.py,sha256=8Hk5Ka6NQzqeqXhOOEsIpK2lkBMVOGXopvW2WvRSfvo,1433
|
|
233
|
+
meltygui/examples/lora_data.py,sha256=1cf9nF-iZ1MtoL13IdGO47CoIstXy9H1K_vO6V9NCFM,2065
|
|
234
|
+
meltygui/examples/lora_policies.py,sha256=p-2hIqUxCzqXmN9Xmu_PmYjh5hxCMdQIGbgtujl7ieY,3065
|
|
235
|
+
meltygui/examples/mode_demo.py,sha256=rtp6sXXB9RhOH7NkoRQ5V1OIrSfiClEY8eAgJEgSTgc,2423
|
|
236
|
+
meltygui/examples/modifies_demo.py,sha256=mPopGkDD0OUAqMBvzCRRiUyofbxr55amBrSz7HDUS6Q,5486
|
|
237
|
+
meltygui/examples/scalar_policies.py,sha256=bLPfcVXmVM7mTknRTdiHsAAa5MgKBauS5wzRu1TM84k,2512
|
|
238
|
+
meltygui/examples/style_layouts.py,sha256=846CNLjHgWe6qTy0K9-jhSjuGcSTNE8NKW5UFlV0nps,6733
|
|
239
|
+
meltygui/examples/tile_manager_demo.py,sha256=TsQEv-beJTkyLKBTMdi2fiqVDp-xoN0RFb8L1gn1_Zc,3298
|
|
240
|
+
meltygui/examples/tint_demo.py,sha256=4CKnpVISWxhb1mucljqfQlQnlr0escMWYXCYEYqIE0U,6835
|
|
241
|
+
meltygui/examples/tint_functions.py,sha256=RjWUtpcI4w1ChIvGPgFL_i13oePCFguFI5VbqFlSV_0,2593
|
|
242
|
+
meltygui/examples/trace_demo.py,sha256=sESdUuW940gWnj329BFgifmDMCZMBN3Wb5vzr5ah224,3653
|
|
243
|
+
meltygui/examples/two_windows.py,sha256=zdP21beiYhHyQSJbRCn8E7BC9i7ftS09xoQytzodwh4,1129
|
|
244
|
+
meltygui/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
245
|
+
meltygui/files/fast_file_explorer.py,sha256=qb6SvRuJEygHYsyfJ6FRRKp5s8tHFo4Qdl6BKRoXKVo,20823
|
|
246
|
+
meltygui/gnome_extension/lsd-window-geometry@latent-descent/extension.js,sha256=3lr-Pbkz1dLWyyue2jVlyGoTeUJML8HpuhAdN0nbO8I,8371
|
|
247
|
+
meltygui/gnome_extension/lsd-window-geometry@latent-descent/lsd-window-geometry@latent-descent.iml,sha256=PkJBV6YVtqaRKppRDww-8gReu3eZanAYaHoh0iX-0aQ,335
|
|
248
|
+
meltygui/gnome_extension/lsd-window-geometry@latent-descent/metadata.json,sha256=tw0KiqGTX6BjHc2dISKKLiD54W8QW0M4a4otryvcxVU,511
|
|
249
|
+
meltygui/graphics/__init__.py,sha256=1p-WdWQcJ8wpzuEoWiYWHNb3tVxzE30z-f9-Sznhh4c,260
|
|
250
|
+
meltygui/graphics/base.py,sha256=8jacoskznwTtRjTptVpjIshL7L8hMxCI2ndnW3KcQWM,2723
|
|
251
|
+
meltygui/graphics/examples.py,sha256=2l9YJW-0G5tFPOtu8hmISVjm3lJAYNkIvweZHX30O18,15443
|
|
252
|
+
meltygui/graphics/executor.py,sha256=NG_pKA02XaFXJ9iWGcwpHWTiNLPuDinBfgVuh_KOfrY,21805
|
|
253
|
+
meltygui/graphics/filter.py,sha256=uuEnIkrpzmaeR-87TA14J_VKn0fyVR-jx--eHgA9UBo,24224
|
|
254
|
+
meltygui/graphics/filter.pyi,sha256=wG9CeyTsShji_W95MXA_-1PQhwwaM0rRYniBc9N6FVM,35551
|
|
255
|
+
meltygui/graphics/generate_stubs.py,sha256=-WUJanBHvIBkObgMb4HnoAm9SggStYbK1NQcX5tCd1A,599
|
|
256
|
+
meltygui/graphics/registry.py,sha256=IMnJDopE-1MqIa0Ocopa8ESnfBxEMHx5yuynBG_Aglk,6198
|
|
257
|
+
meltygui/graphics/shader_compiler.py,sha256=O9VBngR6DYv_WLuV3Rne7zq2ASbDfvB5h0bj3WyfqMQ,5356
|
|
258
|
+
meltygui/graphics/shaders.py,sha256=8lysNqIeuGLX9NPiX_VJ5l9gmZJ7zK5By2GMiaN5HQ8,46613
|
|
259
|
+
meltygui/graphics/stub_generator.py,sha256=5i3kBhD0FOCEjydqHLoKmgs7lHRnj5KN6w_HcLyZ2Go,8765
|
|
260
|
+
meltygui/graphics/texture_manager.py,sha256=nPDQPuNFKZrZ1__SnjwWuJ4UO94hbFX7mNu2GwFws98,6208
|
|
261
|
+
meltygui/graphics/texture_min_max.py,sha256=PcgSQYT3eonJbmj8I-z4Xk5EJEgXwfyF6UZdWHAAOvc,9941
|
|
262
|
+
meltygui/model/__init__.py,sha256=vMs8sNjPvtXY7GNsG3bYZv5xsSQApLmjVc3Y0Rw__RE,46
|
|
263
|
+
meltygui/model/account_model.py,sha256=DEuw5nmXesKoCckh5lUqio0xtlgsD7zNvkbeZFGgIBs,6021
|
|
264
|
+
meltygui/model/camera_model.py,sha256=KilKKw4D2wyNwpoIJ69QWLAqSpvf2aO4MA2YiHZRgG8,7554
|
|
265
|
+
meltygui/model/chat_model.py,sha256=1ZAqBdLOXjikmrIaNKlgiuokmMA0Hr8392GeRoe1n5o,3484
|
|
266
|
+
meltygui/model/code_model.py,sha256=veJ_TSkOJnJm4zHtbwVdyc4unCvDN1uFqo6vPVG5HGM,2506
|
|
267
|
+
meltygui/model/code_proxy_model.py,sha256=uJ-27qF25owYL2_4ch9t9VyUtcOq15d9rg7ZPm0zK40,32150
|
|
268
|
+
meltygui/model/collection_model.py,sha256=iY-TupbPEo_JUq5krBgt_H1M-Lsh_RJT9OhOzNYUHY0,1727
|
|
269
|
+
meltygui/model/color_model.py,sha256=mmwjjLB2H67c80wu1y26vd2pb-m3xMyNBsz2U_zELf0,5559
|
|
270
|
+
meltygui/model/cuda_tensor_model.py,sha256=OoeyqpEjP6oICIM_DIpN9EdDA8-Ts20tAODjcewQEjc,1253
|
|
271
|
+
meltygui/model/cuda_texture_model.py,sha256=IBTaatCIJiLLENBUzsnZVSIDnPkg0VhhQTxE-VB_eng,7053
|
|
272
|
+
meltygui/model/dropdown_model.py,sha256=MktvrtzZvGxvoMEcgeLZQQSbfkTzENqtCzwp-h7t9RY,5349
|
|
273
|
+
meltygui/model/file_metadata_model.py,sha256=QR-bOpwYdMrZp9IvROf4awv5HsHQdKwSN_Cax4BK_c8,2932
|
|
274
|
+
meltygui/model/file_model.py,sha256=jDIuiCyp6qrMoOnMNDTQ5iNyln-aBHes9tIR8H_VN6s,12412
|
|
275
|
+
meltygui/model/format_model.py,sha256=lPW3UlDlqEpNWA8nmJvxDQuKrX1E4QWbx6sNrhQSu_I,13702
|
|
276
|
+
meltygui/model/graph_model.py,sha256=kwfEELUVffrDbpQwDWX37TlfWRUnz2azRTp2574vikw,3810
|
|
277
|
+
meltygui/model/icon_model.py,sha256=Nk9HseqJHpUKnSVSZKM9P87jQB5-3r8PRi8kZxtdhHk,39652
|
|
278
|
+
meltygui/model/import_graph_model.py,sha256=Y3ZYDO_xOuS0xsh2Arl8TeT05ceWFRzvn5ZvmAKcVg4,17577
|
|
279
|
+
meltygui/model/layout_model.py,sha256=rCNQhVsxCWm0Tgg85gHMTRlMMGr-G7nDObnf_RBP4gM,527
|
|
280
|
+
meltygui/model/lut_model.py,sha256=YkfK9xwQ7U6b4SAYUk-RXlWUt_0Nr2vaqrH3wWVVLCo,11250
|
|
281
|
+
meltygui/model/search_model.py,sha256=jFvdgH0q12Me3s4UU6p2C7msrPie--nwO2_nqLpdgt0,5667
|
|
282
|
+
meltygui/model/tensor_model.py,sha256=Tcg3kG68GiZVkffLeuh6c4LMRd3GB0sStEYnUMbSLnI,17984
|
|
283
|
+
meltygui/model/terminal_model.py,sha256=BcoSNQlYQgnphAyVf97pyb3_X56jZ1RQaMaQZfxSDW8,15925
|
|
284
|
+
meltygui/model/texture_model.py,sha256=M77zp_cF3E1R1BbW0tRQNRbczReLvhvy9RANJh8oNis,5123
|
|
285
|
+
meltygui/model/tile_model.py,sha256=4AabqSphTSStsBk21luacsDCgjFPkv4kY8zNB9QN4TA,849
|
|
286
|
+
meltygui/model/trace_model.py,sha256=BqrneaRUTpfg5WhU08i0g2rOVSVNFFvfpPqOgu-xFyw,8238
|
|
287
|
+
meltygui/model/trace_report_model.py,sha256=_s6Epf5MDwWvsVX4iD2SnpMNopMELRNZxfyb_pAzSOI,5907
|
|
288
|
+
meltygui/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
289
|
+
meltygui/models/file_meta.py,sha256=1yqWPsmz-ewr8UT77oNe80ixtxSFaD-WIBdpecbzLqY,22261
|
|
290
|
+
meltygui/models/function_console.py,sha256=KTlFznD7wM5FbMvC-u4Ij8pxPuLAtBs9QzEnptHFKRM,5471
|
|
291
|
+
meltygui/models/orchestration.py,sha256=hKJmSUe6Iwas_OBuRgxLDAgI8qS19lIxzpnCg4_rv9Q,2246
|
|
292
|
+
meltygui/resources/JetBrainsMono-Regular.ttf,sha256=5v0NfpFVCz7StzXUMSR0NixHFu3E_AV3oPYe14LVrtE,270224
|
|
293
|
+
meltygui/resources/THIRD_PARTY_NOTICES.md,sha256=ShPt_lgvAbvdAR3m2pzF4tw9dmdPY3xUPC70Mv7T0w0,1106
|
|
294
|
+
meltygui/resources/fontawesome-LICENSE.txt,sha256=oll8PlCv686YuuiXMFUzxxEIdQVVTO2v0JOOM0pc2vo,5619
|
|
295
|
+
meltygui/resources/fontawesome-webfont.ttf,sha256=r2OXUD_O-9YTl2whrVweNymMGLvgfQltsDzNOvbgW6g,202744
|
|
296
|
+
meltygui/resources/dejavu/DejaVuSans-Bold.ttf,sha256=XBJHrO9_K4UioxdCx21q3LVWm6zAvnzqpNw53SUs6JU,708920
|
|
297
|
+
meltygui/resources/dejavu/DejaVuSans-ExtraLight.ttf,sha256=-rEM0cVoCHLE2NuAWa-T4_8rXi68YSBXTTwNQUM06Xk,355824
|
|
298
|
+
meltygui/resources/dejavu/DejaVuSans.ttf,sha256=rnt4VeEVpZZtixs_gPJUzMEX7Ib5ll4gLuKUBFODcoA,759720
|
|
299
|
+
meltygui/resources/dejavu/LICENSE.txt,sha256=Y9O6dZ0SgExbManVlA2FXBgg0fWZnmsIcuscf_BF-8k,3859
|
|
300
|
+
meltygui/resources/hdri/studio_small_09_1k.hdr,sha256=58_aX06Y5iPbEri_0BhOBISI5IVdnIPidR-0SjLoDEU,1615248
|
|
301
|
+
meltygui/resources/jetbrains-weights/JetBrainsMono-Bold.ttf,sha256=VZCZDILglzl1F_J19DCvRUbhxFz_QIveQlXa0UJHncs,277828
|
|
302
|
+
meltygui/resources/jetbrains-weights/JetBrainsMono-ExtraBold.ttf,sha256=jlAdOmqIPoPqT3hSgE-wiUzr3Wd1G7EAazekds7zTNY,279404
|
|
303
|
+
meltygui/resources/jetbrains-weights/JetBrainsMono-ExtraLight.ttf,sha256=g5Hn7BPounWMGDj1a8zZcyKMz03HSqW__pUluRR7Evg,274144
|
|
304
|
+
meltygui/resources/jetbrains-weights/JetBrainsMono-Light.ttf,sha256=YMGNfdWNgbO70S6M4ydEqHcb_itSgFdAgrDq7UbGDSQ,276452
|
|
305
|
+
meltygui/resources/jetbrains-weights/JetBrainsMono-Medium.ttf,sha256=McktAaighSi3GKQ63fCtPfCvLKS3sykKRS9w81jhTT0,273860
|
|
306
|
+
meltygui/resources/jetbrains-weights/JetBrainsMono-SemiBold.ttf,sha256=Gzv6HtVmWkzj-f62jS1OQOcL-LS32aPt1BjzIbThZqA,277092
|
|
307
|
+
meltygui/resources/jetbrains-weights/JetBrainsMono-Thin.ttf,sha256=B1bo6M8dZfp1GXdnZEebOXPvsVr09BnV1ydNwnrhtwI,270112
|
|
308
|
+
meltygui/resources/jetbrains-weights/OFL.txt,sha256=MPDBNuPIjkItB5Gs2XI4hw-QVKlym8NM8v8NTtjKxK0,4399
|
|
309
|
+
meltygui/resources/jetbrains-weights/README.md,sha256=yCq85CHMKaTRdtl5CBhEMvx_oZ_fH93eL8ygVTexjNE,192
|
|
310
|
+
meltygui/state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
311
|
+
meltygui/state/account_state.py,sha256=2qhSAKW8ZQJfXT07l5oJG9h6lwctCg9B_GKpQc7ctEI,1126
|
|
312
|
+
meltygui/state/animation_state.py,sha256=uDCeAkaSgdGcBYEtLY2r7HGeSorUDMQPLnIMb3oCA0Y,3366
|
|
313
|
+
meltygui/state/annotation_state.py,sha256=pcPhMzyStdtCZWYPlMRLQpbFP2ZMBrg5qa-seKcS5pw,847
|
|
314
|
+
meltygui/state/chat_state.py,sha256=_uEWb5Va0FDH0t316wAoMyK8GQI480CuSDLT0mh7dsE,1330
|
|
315
|
+
meltygui/state/code_state.py,sha256=uD32fTV3VkViMyAZoQyME2Qjl3L2ejzxdU391BHHFF8,276
|
|
316
|
+
meltygui/state/core_enums.py,sha256=ZpDxmgFFxY4tAJJzUu-tNeOA7hN2NX0FqPDs_ygA6_8,1616
|
|
317
|
+
meltygui/state/core_markers.py,sha256=CnljXHglgWOexS95V0vosS5KxzLCmGoBZ9sg81u65W4,4281
|
|
318
|
+
meltygui/state/core_undo.py,sha256=GRHT1DHjUrcBYqKFYFZFvde6M911byMynklL8I5Wbqs,49664
|
|
319
|
+
meltygui/state/file_state.py,sha256=MO7IXM3KfttpZnEjV3XXNdvgm736RIWvbDdyO-E8iak,2784
|
|
320
|
+
meltygui/state/graph_state.py,sha256=yOkMfOiJGSaZ_DXt7o8EXd3fuZlm1ID6LFawx-JnLZc,871
|
|
321
|
+
meltygui/state/inspection_state.py,sha256=aHH6W2f6TgWSvX7ctQnAnVcnzcES_sLqNhIMdQvAlQ0,1892
|
|
322
|
+
meltygui/state/menu_state.py,sha256=Flr_9Nj4xD2f_of_Ancc2-btti30wB5bK_ICuEUc9aY,385
|
|
323
|
+
meltygui/state/model_enums.py,sha256=WeE1GFR60IZMRQSzs__xlrEFTMz8Riq9uVUDm4AFC1U,250
|
|
324
|
+
meltygui/state/new_core_model.py,sha256=c1Dd_T2tzwE1Uh_hfChVyePZtODJvz3Tll8nGmqx-eY,109350
|
|
325
|
+
meltygui/state/orchestration_state.py,sha256=T80ABvzQGTEHci4R4fBDi5jxLniPnhsdJL3wTA0gImM,594
|
|
326
|
+
meltygui/state/query_state.py,sha256=NKR4q4Gx9BpjVvjPu8ORxr3gAA9Va36hY0ggRcYg2iI,969
|
|
327
|
+
meltygui/state/tensor_state.py,sha256=nwCLqjk1NoTRuyKAr_1ZSK1137quTlvvAKt9Z7l7QHc,339
|
|
328
|
+
meltygui/state/terminal_state.py,sha256=Sjy2HOTt8EjgJ4ncprzeG6szvxNkKvEmmA-fHRGLGHU,674
|
|
329
|
+
meltygui/state/trace_state.py,sha256=_FMjvQZdAdQqqdl616xaCRLJgSW3DpePJ4ipDdeydxY,1464
|
|
330
|
+
meltygui/state/voxel_state.py,sha256=j0gQMirYQvQAS3-z6k1yt2HdMcbk1tGHmwRpLG9CdDI,430
|
|
331
|
+
meltygui/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
332
|
+
meltygui/utils/jump_to_code.py,sha256=HXEyPPSvKpoSTzAmD6BIqbvzBp86Y-RpL4HpuZqGL5I,10633
|
|
333
|
+
meltygui/utils/pkl_inspect.py,sha256=3VRtNm3yLx2JGR_g-8SNX9c5rKXdG2jH61cPTECC7uE,3250
|
|
334
|
+
meltygui/utils/render_utils.py,sha256=GyRNjUrrtTY5gImjfJJ6saP7PCTO-rBZPM4TUl-6Xi4,51438
|
|
335
|
+
meltygui/view/__init__.py,sha256=d4jBs4fVtSt9qyVIDgizg85_ASZY-n5MD4YDjigxHMQ,41
|
|
336
|
+
meltygui/view/account_view.py,sha256=4iZPvcIGN_HIoSkB-AqBoY3cnjnnxL1xjup0R0wikW8,30360
|
|
337
|
+
meltygui/view/action_view.py,sha256=JuvePY0nO0sUnFICppRuFFCGQpJosmUw3I8KeV5_y9w,3589
|
|
338
|
+
meltygui/view/chat_decoration_view.py,sha256=wdlGD3_etPLW0XhzsFQmjzCBaRVGKT6dAV9AFFAaxFc,5622
|
|
339
|
+
meltygui/view/chat_view.py,sha256=aKrU9v6vvzkLzJqSfRqOsonin2hEGB2wfcmMkZ57qjc,105747
|
|
340
|
+
meltygui/view/code_view.py,sha256=EOXmJfHThsZhfTHj48BfeyvWsZFrCQg_A7NydhT0DFI,147098
|
|
341
|
+
meltygui/view/collection_view.py,sha256=QYrVQO1Zy93QtdF_0IWYR6-zQn67az2fEVe1CunIbaY,61826
|
|
342
|
+
meltygui/view/color_view.py,sha256=zo_38Uu7F2arjCTb9gS2JcMxNvb2PIoyn0n5GsFpeWY,38526
|
|
343
|
+
meltygui/view/control_view.py,sha256=1RZrkQ8_3tJKVy2opuIKEk2FLpf3V8VibVDV5pQbgFU,26370
|
|
344
|
+
meltygui/view/decoration_view.py,sha256=-zQzywNAsy2B5BXGijXKXV0TVyOkDVzuQRFvLdZ3ZqM,18980
|
|
345
|
+
meltygui/view/diagnostic_view.py,sha256=8-FWErestpQhQgSPFQ8AiqV98vffXXxsQ3e1srmTXbk,7798
|
|
346
|
+
meltygui/view/dropdown_view.py,sha256=9TOmn4zEEVVBwYlrttNnRxiL3CV0qdL81z937eB9j18,59624
|
|
347
|
+
meltygui/view/file_view.py,sha256=td44BQ2zcftQvSF9aZVyGAEPMbV3GTOICMuZjw6E3nA,83572
|
|
348
|
+
meltygui/view/graph_cuda_view.py,sha256=mQGCTQyWDzTkrcfhc_Re0Uv6_NdBtVAWOaEskKj1tJw,5156
|
|
349
|
+
meltygui/view/graph_view.py,sha256=zHpFMc7-EKgN9pQ8YSax3GHquNIROB0HJX4AfksRUDs,43291
|
|
350
|
+
meltygui/view/header_view.py,sha256=FhScvTDZcjRumPBWuBwCzrWUdDvv52SULRKPmzSHPEQ,45420
|
|
351
|
+
meltygui/view/input_view.py,sha256=bwtbLLuz8X2XdC4TAKgtlcWh7YKNmj6Cbv07o8Uixa0,12955
|
|
352
|
+
meltygui/view/inspection_view.py,sha256=NfKSRw0UhDZ-BzbnmYK1reDCvTl6ZXoLZpGXIDnNbOk,91977
|
|
353
|
+
meltygui/view/layout_view.py,sha256=TvcKBRZ0AaqpHK9mNJ8zNV_9apDgqrXG1vsCckKHnzY,31931
|
|
354
|
+
meltygui/view/lut_view.py,sha256=CEhXsBT4MYg2zyazYu3E_SCCuz2h-yiOArHji8gs7cs,1998
|
|
355
|
+
meltygui/view/menu_view.py,sha256=6lE1KMd5bxTPZnBaF1LxCHNuE1POJzaT42m0VlKhgMM,10566
|
|
356
|
+
meltygui/view/orchestration_view.py,sha256=ZUTw8hoodzbX-hu44GSFXCsaJT1295vY3Jl9SHM4YmI,36181
|
|
357
|
+
meltygui/view/query_view.py,sha256=aP-RzgJsQUEC5Iy7diBx_GxpjW8seh28zL_NR3Tum3E,6490
|
|
358
|
+
meltygui/view/search_view.py,sha256=d-Os_qq1f9ySG8WveJssliSFMNYzE6n5h43OmeUjx4E,18116
|
|
359
|
+
meltygui/view/tab_view.py,sha256=5IBrgmkFXNwDvDKuLThyF6IYJkbj8FpPH0p55Bxmmfs,13179
|
|
360
|
+
meltygui/view/tensor_view.py,sha256=tHPQTkVvXY43Z9KI5yJqGab4M6K78Ob5fkvNAkrZmkI,19842
|
|
361
|
+
meltygui/view/terminal_view.py,sha256=t4Fqh10ArbH-1VZJdAvrOsVT3engidSvzMEBJx-cA2E,16715
|
|
362
|
+
meltygui/view/text_view.py,sha256=3EPo8E3gy8ZU5WwD-AUL8wu_6XUSC1VBOEuTk_d8EJQ,460174
|
|
363
|
+
meltygui/view/texture_view.py,sha256=Et0vvLGDV3g9a7bM9gsW0jXuGp4d0f0Ylp2gNb4nZeU,20358
|
|
364
|
+
meltygui/view/tile_view.py,sha256=j7u6Ga2fzsWnYOrsxBH8xz0kCCYFCryEfjCaDQWjPbM,1608
|
|
365
|
+
meltygui/view/trace_view.py,sha256=WWjdnO4keyG6DIJMMFu5O-Wdr6Cm7c5j9NdrxdHk0Y0,52404
|
|
366
|
+
meltygui/view/voxel_cuda_view.py,sha256=EiPTM0VlkxULVtkRY5fATzz5NlO-ua1H7pOL01MZ4T4,43581
|
|
367
|
+
meltygui/view/voxel_view.py,sha256=AtLV0zijRMK8xS6dDoFr8Ey88JrWyH8-NPl-AgJZxIs,101093
|
|
368
|
+
meltygui/view/window_view.py,sha256=k9RNiWFtyO4jjYX51LeqnIPCt0cF8amY01KUCPkXivY,4982
|
|
369
|
+
meltygui-0.1.0.dist-info/METADATA,sha256=dlbQIW3bj_Ctkh6zj96vujrfXk4-3u5bxLXbbamkGNo,5883
|
|
370
|
+
meltygui-0.1.0.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
|
|
371
|
+
meltygui-0.1.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
372
|
+
meltygui-0.1.0.dist-info/RECORD,,
|