├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── README.md ├── archive ├── drawing │ ├── draw_images.py │ ├── draw_items.py │ └── draw_viewport.py ├── events inputs and item polling │ ├── global_handlers.py │ ├── global_handlers_and_polling.py │ ├── global_handlers_global_registries.py │ └── widget_handlers.py ├── image and texture │ ├── SpriteMapExample.png │ └── static_image_drawlist.py ├── logging and dpg standard dialogs │ ├── builtin_dev_tools.py │ ├── create_logger.py │ └── custom_logger.py ├── menus │ └── menu.py └── themes │ ├── theming_containers.py │ ├── theming_items.py │ └── theming_plots.py ├── camera_capture_with_opencv.py ├── qr_writer_and_reader.py └── requirements.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/README.md -------------------------------------------------------------------------------- /archive/drawing/draw_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/drawing/draw_images.py -------------------------------------------------------------------------------- /archive/drawing/draw_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/drawing/draw_items.py -------------------------------------------------------------------------------- /archive/drawing/draw_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/drawing/draw_viewport.py -------------------------------------------------------------------------------- /archive/events inputs and item polling/global_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/events inputs and item polling/global_handlers.py -------------------------------------------------------------------------------- /archive/events inputs and item polling/global_handlers_and_polling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/events inputs and item polling/global_handlers_and_polling.py -------------------------------------------------------------------------------- /archive/events inputs and item polling/global_handlers_global_registries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/events inputs and item polling/global_handlers_global_registries.py -------------------------------------------------------------------------------- /archive/events inputs and item polling/widget_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/events inputs and item polling/widget_handlers.py -------------------------------------------------------------------------------- /archive/image and texture/SpriteMapExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/image and texture/SpriteMapExample.png -------------------------------------------------------------------------------- /archive/image and texture/static_image_drawlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/image and texture/static_image_drawlist.py -------------------------------------------------------------------------------- /archive/logging and dpg standard dialogs/builtin_dev_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/logging and dpg standard dialogs/builtin_dev_tools.py -------------------------------------------------------------------------------- /archive/logging and dpg standard dialogs/create_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/logging and dpg standard dialogs/create_logger.py -------------------------------------------------------------------------------- /archive/logging and dpg standard dialogs/custom_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/logging and dpg standard dialogs/custom_logger.py -------------------------------------------------------------------------------- /archive/menus/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/menus/menu.py -------------------------------------------------------------------------------- /archive/themes/theming_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/themes/theming_containers.py -------------------------------------------------------------------------------- /archive/themes/theming_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/themes/theming_items.py -------------------------------------------------------------------------------- /archive/themes/theming_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/archive/themes/theming_plots.py -------------------------------------------------------------------------------- /camera_capture_with_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/camera_capture_with_opencv.py -------------------------------------------------------------------------------- /qr_writer_and_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/qr_writer_and_reader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pcothren/DearPyGui-Examples/HEAD/requirements.txt --------------------------------------------------------------------------------