├── .gitignore ├── LICENSE ├── README.md ├── assets ├── gifs │ ├── marker_size.gif │ ├── progress_bar.gif │ └── simple_paint.gif └── pngs │ └── data_binding.png ├── buttons ├── button_border_theme.py ├── change_button_colour_when_clicked.py ├── combo_box_custom_1.py ├── combo_box_custom_2.py ├── nested_radio_buttons.py ├── slider_with_step_size.py └── tab_bar_callback.py ├── data_binding ├── data_binding_with_dict.py ├── data_binding_with_list.py └── no_data_binding.py ├── drawing ├── beach.jpg ├── erase_image.py ├── raindrops.py ├── render_loop_example.py ├── resize_image_with_viewport.py ├── simple_paint.py ├── stretch_image.py ├── update_dynamic_texture.py ├── update_fill_colour.py └── window_background_gradient.py ├── fonts ├── FiraCode-Medium.ttf ├── Inter-Bold.ttf ├── Inter-Medium.ttf ├── Inter-Regular.ttf ├── fonts_example.py ├── fonts_spacing_text.py └── license.txt ├── listbox ├── listbox_custom.py ├── listbox_custom_with_keypress.py ├── listbox_extended.py ├── listbox_key_press.py └── listbox_update_items.py ├── loggers ├── README.md ├── logger_autoscroll.py └── logger_dearpygui_ext.py ├── menubar ├── menubar_checkbox.py ├── menubar_radio_buttons.py ├── menubar_right_aligned.py └── menubar_types.py ├── misc ├── camera_capture_with_opencv.py ├── coloured_tree_node.py ├── date_picker.py ├── hex_editor.py ├── loading_indicator_on_startup.py ├── multiple_node_attributes_one_line.py ├── print_from_pdf_viewer.py └── take_screenshot.py ├── packaging ├── README.md ├── Taskfile.yml ├── app │ ├── __init__.py │ ├── constants.py │ ├── fonts.py │ ├── gui.py │ ├── textures.py │ └── utils.py ├── assets │ ├── fonts │ │ ├── Inter-Medium.ttf │ │ └── license.txt │ └── img │ │ └── beach.jpg └── main.py ├── persistence ├── persistence_of_windows.py ├── persistence_using_dataclasses.py └── persistence_using_dict.py ├── plots ├── plot_bar_series_custom_colours.py ├── plot_colormap_resizing.py ├── plot_draw_lines.py ├── plot_enforce_limits.py ├── plot_mouse_click_callback.py ├── plot_text_overlay_using_annotations.py ├── plot_text_overlay_using_drawlist.py ├── plot_update_data.py ├── plot_update_line_colour.py ├── plot_update_marker_size.py ├── plot_update_time_data.py └── plot_with_button.py ├── sizing ├── get_item_size_on_startup.py ├── resize_button_with_viewport.py └── resize_child_window.py ├── spacing ├── adjustable_separators.py ├── spacing_child_windows_using_tables.py ├── spacing_using_auto_align.py ├── spacing_using_child_window_grid.py └── spacing_using_tables.py ├── tables ├── table_cell_callback.py └── table_row_callback.py ├── threading ├── progress_bar.py ├── start_stop_button_basic.py └── start_stop_button_class.py └── window ├── child_window_clicked_handler.py ├── drag_menu_bar.py ├── drag_undecorated_viewport.py ├── pop_to_window.py ├── restrict_window_position.py ├── right_click_context_menu.py ├── status_bar.py ├── transparency ├── main.py ├── tools.py └── windoweffect │ ├── __init__.py │ ├── c_structures.py │ └── window_effect.py └── window_always_on_top.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/README.md -------------------------------------------------------------------------------- /assets/gifs/marker_size.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/assets/gifs/marker_size.gif -------------------------------------------------------------------------------- /assets/gifs/progress_bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/assets/gifs/progress_bar.gif -------------------------------------------------------------------------------- /assets/gifs/simple_paint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/assets/gifs/simple_paint.gif -------------------------------------------------------------------------------- /assets/pngs/data_binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/assets/pngs/data_binding.png -------------------------------------------------------------------------------- /buttons/button_border_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/buttons/button_border_theme.py -------------------------------------------------------------------------------- /buttons/change_button_colour_when_clicked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/buttons/change_button_colour_when_clicked.py -------------------------------------------------------------------------------- /buttons/combo_box_custom_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/buttons/combo_box_custom_1.py -------------------------------------------------------------------------------- /buttons/combo_box_custom_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/buttons/combo_box_custom_2.py -------------------------------------------------------------------------------- /buttons/nested_radio_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/buttons/nested_radio_buttons.py -------------------------------------------------------------------------------- /buttons/slider_with_step_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/buttons/slider_with_step_size.py -------------------------------------------------------------------------------- /buttons/tab_bar_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/buttons/tab_bar_callback.py -------------------------------------------------------------------------------- /data_binding/data_binding_with_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/data_binding/data_binding_with_dict.py -------------------------------------------------------------------------------- /data_binding/data_binding_with_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/data_binding/data_binding_with_list.py -------------------------------------------------------------------------------- /data_binding/no_data_binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/data_binding/no_data_binding.py -------------------------------------------------------------------------------- /drawing/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/drawing/beach.jpg -------------------------------------------------------------------------------- /drawing/erase_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/drawing/erase_image.py -------------------------------------------------------------------------------- /drawing/raindrops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/drawing/raindrops.py -------------------------------------------------------------------------------- /drawing/render_loop_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/drawing/render_loop_example.py -------------------------------------------------------------------------------- /drawing/resize_image_with_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/drawing/resize_image_with_viewport.py -------------------------------------------------------------------------------- /drawing/simple_paint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/drawing/simple_paint.py -------------------------------------------------------------------------------- /drawing/stretch_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/drawing/stretch_image.py -------------------------------------------------------------------------------- /drawing/update_dynamic_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/drawing/update_dynamic_texture.py -------------------------------------------------------------------------------- /drawing/update_fill_colour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/drawing/update_fill_colour.py -------------------------------------------------------------------------------- /drawing/window_background_gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/drawing/window_background_gradient.py -------------------------------------------------------------------------------- /fonts/FiraCode-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/fonts/FiraCode-Medium.ttf -------------------------------------------------------------------------------- /fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /fonts/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/fonts/Inter-Medium.ttf -------------------------------------------------------------------------------- /fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /fonts/fonts_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/fonts/fonts_example.py -------------------------------------------------------------------------------- /fonts/fonts_spacing_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/fonts/fonts_spacing_text.py -------------------------------------------------------------------------------- /fonts/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/fonts/license.txt -------------------------------------------------------------------------------- /listbox/listbox_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/listbox/listbox_custom.py -------------------------------------------------------------------------------- /listbox/listbox_custom_with_keypress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/listbox/listbox_custom_with_keypress.py -------------------------------------------------------------------------------- /listbox/listbox_extended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/listbox/listbox_extended.py -------------------------------------------------------------------------------- /listbox/listbox_key_press.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/listbox/listbox_key_press.py -------------------------------------------------------------------------------- /listbox/listbox_update_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/listbox/listbox_update_items.py -------------------------------------------------------------------------------- /loggers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/loggers/README.md -------------------------------------------------------------------------------- /loggers/logger_autoscroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/loggers/logger_autoscroll.py -------------------------------------------------------------------------------- /loggers/logger_dearpygui_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/loggers/logger_dearpygui_ext.py -------------------------------------------------------------------------------- /menubar/menubar_checkbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/menubar/menubar_checkbox.py -------------------------------------------------------------------------------- /menubar/menubar_radio_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/menubar/menubar_radio_buttons.py -------------------------------------------------------------------------------- /menubar/menubar_right_aligned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/menubar/menubar_right_aligned.py -------------------------------------------------------------------------------- /menubar/menubar_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/menubar/menubar_types.py -------------------------------------------------------------------------------- /misc/camera_capture_with_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/misc/camera_capture_with_opencv.py -------------------------------------------------------------------------------- /misc/coloured_tree_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/misc/coloured_tree_node.py -------------------------------------------------------------------------------- /misc/date_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/misc/date_picker.py -------------------------------------------------------------------------------- /misc/hex_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/misc/hex_editor.py -------------------------------------------------------------------------------- /misc/loading_indicator_on_startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/misc/loading_indicator_on_startup.py -------------------------------------------------------------------------------- /misc/multiple_node_attributes_one_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/misc/multiple_node_attributes_one_line.py -------------------------------------------------------------------------------- /misc/print_from_pdf_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/misc/print_from_pdf_viewer.py -------------------------------------------------------------------------------- /misc/take_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/misc/take_screenshot.py -------------------------------------------------------------------------------- /packaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/packaging/README.md -------------------------------------------------------------------------------- /packaging/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/packaging/Taskfile.yml -------------------------------------------------------------------------------- /packaging/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/packaging/app/__init__.py -------------------------------------------------------------------------------- /packaging/app/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/packaging/app/constants.py -------------------------------------------------------------------------------- /packaging/app/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/packaging/app/fonts.py -------------------------------------------------------------------------------- /packaging/app/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/packaging/app/gui.py -------------------------------------------------------------------------------- /packaging/app/textures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/packaging/app/textures.py -------------------------------------------------------------------------------- /packaging/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/packaging/app/utils.py -------------------------------------------------------------------------------- /packaging/assets/fonts/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/packaging/assets/fonts/Inter-Medium.ttf -------------------------------------------------------------------------------- /packaging/assets/fonts/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/packaging/assets/fonts/license.txt -------------------------------------------------------------------------------- /packaging/assets/img/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/packaging/assets/img/beach.jpg -------------------------------------------------------------------------------- /packaging/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/packaging/main.py -------------------------------------------------------------------------------- /persistence/persistence_of_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/persistence/persistence_of_windows.py -------------------------------------------------------------------------------- /persistence/persistence_using_dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/persistence/persistence_using_dataclasses.py -------------------------------------------------------------------------------- /persistence/persistence_using_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/persistence/persistence_using_dict.py -------------------------------------------------------------------------------- /plots/plot_bar_series_custom_colours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/plots/plot_bar_series_custom_colours.py -------------------------------------------------------------------------------- /plots/plot_colormap_resizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/plots/plot_colormap_resizing.py -------------------------------------------------------------------------------- /plots/plot_draw_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/plots/plot_draw_lines.py -------------------------------------------------------------------------------- /plots/plot_enforce_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/plots/plot_enforce_limits.py -------------------------------------------------------------------------------- /plots/plot_mouse_click_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/plots/plot_mouse_click_callback.py -------------------------------------------------------------------------------- /plots/plot_text_overlay_using_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/plots/plot_text_overlay_using_annotations.py -------------------------------------------------------------------------------- /plots/plot_text_overlay_using_drawlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/plots/plot_text_overlay_using_drawlist.py -------------------------------------------------------------------------------- /plots/plot_update_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/plots/plot_update_data.py -------------------------------------------------------------------------------- /plots/plot_update_line_colour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/plots/plot_update_line_colour.py -------------------------------------------------------------------------------- /plots/plot_update_marker_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/plots/plot_update_marker_size.py -------------------------------------------------------------------------------- /plots/plot_update_time_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/plots/plot_update_time_data.py -------------------------------------------------------------------------------- /plots/plot_with_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/plots/plot_with_button.py -------------------------------------------------------------------------------- /sizing/get_item_size_on_startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/sizing/get_item_size_on_startup.py -------------------------------------------------------------------------------- /sizing/resize_button_with_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/sizing/resize_button_with_viewport.py -------------------------------------------------------------------------------- /sizing/resize_child_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/sizing/resize_child_window.py -------------------------------------------------------------------------------- /spacing/adjustable_separators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/spacing/adjustable_separators.py -------------------------------------------------------------------------------- /spacing/spacing_child_windows_using_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/spacing/spacing_child_windows_using_tables.py -------------------------------------------------------------------------------- /spacing/spacing_using_auto_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/spacing/spacing_using_auto_align.py -------------------------------------------------------------------------------- /spacing/spacing_using_child_window_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/spacing/spacing_using_child_window_grid.py -------------------------------------------------------------------------------- /spacing/spacing_using_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/spacing/spacing_using_tables.py -------------------------------------------------------------------------------- /tables/table_cell_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/tables/table_cell_callback.py -------------------------------------------------------------------------------- /tables/table_row_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/tables/table_row_callback.py -------------------------------------------------------------------------------- /threading/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/threading/progress_bar.py -------------------------------------------------------------------------------- /threading/start_stop_button_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/threading/start_stop_button_basic.py -------------------------------------------------------------------------------- /threading/start_stop_button_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/threading/start_stop_button_class.py -------------------------------------------------------------------------------- /window/child_window_clicked_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/child_window_clicked_handler.py -------------------------------------------------------------------------------- /window/drag_menu_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/drag_menu_bar.py -------------------------------------------------------------------------------- /window/drag_undecorated_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/drag_undecorated_viewport.py -------------------------------------------------------------------------------- /window/pop_to_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/pop_to_window.py -------------------------------------------------------------------------------- /window/restrict_window_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/restrict_window_position.py -------------------------------------------------------------------------------- /window/right_click_context_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/right_click_context_menu.py -------------------------------------------------------------------------------- /window/status_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/status_bar.py -------------------------------------------------------------------------------- /window/transparency/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/transparency/main.py -------------------------------------------------------------------------------- /window/transparency/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/transparency/tools.py -------------------------------------------------------------------------------- /window/transparency/windoweffect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/transparency/windoweffect/__init__.py -------------------------------------------------------------------------------- /window/transparency/windoweffect/c_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/transparency/windoweffect/c_structures.py -------------------------------------------------------------------------------- /window/transparency/windoweffect/window_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/transparency/windoweffect/window_effect.py -------------------------------------------------------------------------------- /window/window_always_on_top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my1e5/dpg-examples/HEAD/window/window_always_on_top.py --------------------------------------------------------------------------------