dearpypixl


Namedearpypixl JSON
Version 1.2.6 PyPI version JSON
download
home_page
SummaryAn object-oriented, lightweight, modular framework and toolkit for Dear PyGui.
upload_time2023-11-19 06:01:48
maintainer
docs_urlNone
author
requires_python>=3.10
license
keywords dearpygui gui ui user-interface
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Dear PyPixl
Dear PyPixl is an object-oriented, lightweight, modular framework and toolkit for [Dear PyGui](https://github.com/hoffstadt/DearPyGui) with minimal dependencies and zero use restrictions (MIT license).

- [Features](#features)
- [Requirements](#requirements)
- [Installation](#installation)
- [Overview](#overview)
  - [Item Interfaces](#item-interfaces)
      - [Creating Interfaces](#creating-interfaces)
      - [Methods & Properties](#methods--properties)
      - [Behaviors](#behaviors)
  - [Item Types](#item-types)
  - [Global State & Setup](#global-state--setup)
  - [Modules](#modules)
  - [Limitations, Bugs, & Gachas](#limitations-bugs--gachas)
      - [Interfaces are Integers, For Better or Worse](#interfaces-are-integers-for-better-or-worse)
      - [Passing Explicit UUID's and Aliases](#passing-explicit-uuids-and-aliases)
      - [Typestubs and Dear PyGui Versions](#typestubs-and-dear-pygui-versions)
- [FAQ](#faq)

<br>


#### Features

At its' core, Dear PyPixl provides object-oriented interfaces for Dear PyGui items. In addition, it ships with a wide arrangement of extensions and tools that remedy hurdles and inconveniences commonly encountered when using Dear PyGui.

 - Extensible high-level and object-oriented API for creating and/or interfacing with Dear PyGui items
 - Low-level API that fills a plethora of holes within Dear PyGui's API
 - Strongly typed
 - "Use what you want" - code from Dear PyPixl and Dear PyGui can be used together with minimal conflict
 - Provides functions for creating specific theme element items within the `color` and `style` modules - no more passing enum values to `add_theme_color/style`!
 - Typing for Dear PyGui's `mvBuffer`, `mvVec4`, and `mvMat4` objects
 - Improved docstrings and errors
 - Contains numerous extensions and other helpful tools

<br>

#### Requirements
 - Operating System; Windows 8.1+, MacOS, Linux*
 - Python: 3.10 x64 (or newer)
 - `pip` dependencies:
    * `dearpygui` 1.9 (or newer)
    * `typing-extensions` (Python < 3.12 only)

*Dear PyPixl is available on all platforms already supported by Dear PyGui. Availability for 32-bit systems and Raspberry Pi OS is *loosely* supported, but requires building Dear PyGui from the source. Please visit their [wiki](https://github.com/hoffstadt/DearPyGui/wiki) for more information.
<br>

#### Installation

Using `pip`;
```python
python3 -m pip install dearpypixl
```
<br>
Alternatively, build the wheel and install locally. Download/clone the source;

```
git clone https://github.com/Atlamillias/DearPyPixl
```
Then, from the project directory;
```
python3 -m pip install build
```
```
python3 -m build <path_to_dearpypixl_dir>
```
```
python3 -m pip install <path_to_generated_whl>
```

# Overview
Dear PyPixl is not undocumented. The information below supplements the detailed information available via docstrings. However, I highly suggest visiting Dear PyGui's [documentation](https://dearpygui.readthedocs.io/en/latest/index.html) if you are unfamiliar with the project. Basic usage of Dear PyPixl is very similar (identical) to that of Dear PyGui, and you may feel lost without some background.

## Item Interfaces
#### Creating Interfaces
An item type is, functionally, a drop-in replacement for any Dear PyGui function that would create item an item;
```python
from dearpypixl import *


window = Window(label="A window")
button = Button(
    label="A button",
    callback=lambda: print("stuff is happening...!",
    parent=window
)
```

For container items, Dear PyGui offers two functions; a "normal" one, and a context manager. The class replaces *both*;
```python
from dearpypixl import *


with Window(label="A window") as window:
    button = Button(label="A button", callback=lambda: print("stuff is happening...!"))
```


While calling `dearpygui.add_window` or `dearpygui.window` returns a **tag**, or a unique integer or string identifier, for the created window, the above results in an **item interface** object. Interfaces *are* item identifiers - integers specifically - and can be used wherever an item tag is appropriate. For the lifetime of the interface, instance-bound methods will operate exclusively on the interfaced item. In the case above, the "interfaced item" was created along with the interface. However, there are ways to create interfaces for existing items, too;
```python
from dearpypixl import *
import dearpygui.dearpygui as dpg


with Window() as window:
    button_id = dpg.add_button(tag="a button")

# Method 1A: Call the interface class and include an existing `tag`
button_if1 = Button(tag=button_id)   # -> `mvButton(tag=..., alias='a button', ...)`
# Method 1B: Call the `.new` classmethod
button_if2 = Button.new(button_id)   # -> `mvButton(tag=..., alias='a button', ...)`

# Method 2: Use the `interface` function
button_if = interface(button_id)     # -> `mvButton(tag=..., alias='a button', ...)`

# Method 3: Use the `mvAll` interface class
generic_if = mvAll(button_id)        # -> `mvAll(tag=..., alias='a button', ...)`
```

The first is pretty intuitive; include the `tag` keyword argument when creating an interface. If the `tag` value is an existing item identifier, a new interface object will be created but won't (rather, *can't*) create a new item. This is useful when using primitive interfaces and when you are aware of the type of item you're interfacing with. However, this isn't without caveats. User-defined interfaces often implement a custom `__init__` method -- you likely won't appreciate another initialization. Additionally, an exception is raised (and suppressed) when the interface fails to create a new item with the in-use `tag`, so this approach isn't recommended if you're doing it *thousands* of times within a short window. In either case, all interface types have a class-bound `.new` method. Accepting a sole positional `tag` argument, the `.new` method creates and returns an interface of that type while skipping instance initialization.

There may be times when you'll feel the need to query an item's type to find the correct interface. The `interface` function accepts a sole positional `tag` argument and a few other optional keywords. Its' default behavior is to query Dear PyGui for the item's type, find the appropriate class for that type, and return the result of calling the class' `.new` method. This procedure is faster than calling the class directly when the "item already exists" exception would be caught and discarded, even when you know the correct class beforehand.

Lastly, when just want an interface and you don't know and/or don't care to know the item and interface type, or the interface is just a "stepping stone" to another one (like a parent or child), consider creating a generic item interface with `mvAll`. These interfaces have a *very* broad API, supporting items of any type to some degree. Their creation process is greatly simplified from that of other interfaces, so they're fast to make. The downside is their benefits -- they're *generic*. Some methods only work when interfacing with items of specific types. Additionally, their lack of type identity and simplified creation procedure means that they do not create items or generate identifiers. They also lack behaviors unique to more "narrow" interface types; as a convenience, however, they can be used as context managers when interfacing with container items.


> **Note:** *No attempts are made to stop you from trying to bind an interface to an existing item of a different or unsupported type. Don't expect things to go well.*

<br>

#### Methods & Properties
The members available to interface can vary based on the type of item they support. However, all interfaces share a collection of core methods and properties. While member names are not 1-to-1, they are similar to that of the Dear PyGui hook used for each; the table below outlines many of them;

| Bound Interface Method   | Dear PyGui Function                     |
| :----------------------: | :-------------------------------------: |
| `item.configure(...)`    | `configure_item(item, ...)`             |
| `item.configuration()`   | `get_item_configuration(item)`          |
| `item.information()`     | `get_item_info(item)`                   |
| `item.state()`           | `get_item_state(item)`                  |
| `item.delete(...)`       | `delete_item(item, ...)`                |
| `item.set_font(...)`     | `bind_item_font(item, ...)`             |
| `item.set_theme(...)`    | `bind_item_theme(item, ...)`            |
| `item.set_handlers(...)` | `bind_item_handler_registry(item, ...)` |

In addition, interfaces also define a few other methods for accessing item-related information;

| Bound Interface Method   | Dear PyGui Function                                                |
| :----------------------: | :----------------------------------------------------------------: |
| `item.children(...)`     | `get_item_info(item)['children']`<br>`get_item_children(item, ...)`|
| `item.get_font()`        | `get_item_info(item)['font']`<br>`get_item_font(item)`             |
| `item.get_theme()`       | `get_item_info(item)['theme']`<br>`get_item_theme(item)`           |
| `item.get_handlers()`    | `get_item_info(item)['handlers']`<br>`get_item_handlers(item)`     |

<br>

> *The `.configuration` and `.state` methods are not functionally equivelent to Dear PyGui's `get_item_configuration` and `get_item_state` functions. The `.configuration` method of each dedicated interface type is unique and filters out options not applicable to the supported item type. This allows for the usage of the `type(item)(**item.configuration())` idiom which, in most cases, creates a "reproduction" of the item and interface. The behavior of the `.state` method isn't as interesting; unlike `get_item_state`, the dictionary returned by the `.state` method includes keys for every state an item could possibly have. When a state is not applicable for the supported item, the value of that key in the returned dictionary will be `None`.*

<br>
<br>

For convenience, interfaces expose several item-related settings and states as instance properties. Available "configuration" properties vary per interface, but expect one for each of the supported item's writable settings. In contrast, "information" properties are consistent between all item interface types, but only the most commonly-used are exposed. While the related methods return the result as returned by Dear PyGui, the on-access behavior of each property will always return an item interface when applicable. However, "state" properties will always return the result as-is;

| Interface Property               | Interface Method Hook                             |
| :----------------:               | :-----------------------------------------------: |
| `item.parent`                    | `item.information()['parent']`                    |
| `item.theme`                     | `item.get_theme()`<br>`item.set_theme(...)`       |
| `item.font`                      | `item.get_font()`<br>`item.set_font(...)`         |
| `item.handlers`                  | `item.get_handlers()`<br>`item.set_handlers(...)` |
| `item.is_ok`                     | `item.state()["ok"]`                              |
| `item.is_hovered`                | `item.state()["hovered"]`                         |
| `item.is_active`                 | `item.state()["active"]`                          |
| `item.is_focused`                | `item.state()["focused"]`                         |
| `item.is_clicked`                | `item.state()["clicked"]`                         |
| `item.is_left_clicked`           | `item.state()["left_clicked"]`                    |
| `item.is_right_clicked`          | `item.state()["right_clicked"]`                   |
| `item.is_middle_clicked`         | `item.state()["middle_clicked"]`                  |
| `item.is_visible`                | `item.state()["visible"]`                         |
| `item.is_edited`                 | `item.state()["edited"]`                          |
| `item.is_activated`              | `item.state()["activated"]`                       |
| `item.is_deactivated`            | `item.state()["deactivated"]`                     |
| `item.is_deactivated_after_edit` | `item.state()["deactivated_after_edit"]`          |
| `item.is_resized`                | `item.state()["resized"]`                         |
| `item.rect_min`                  | `item.state()["rect_min"]`                        |
| `item.rect_max`                  | `item.state()["rect_max"]`                        |
| `item.rect_size`                 | `item.state()["rect_size"]`                       |
| `item.content_region_avail`      | `item.state()["content_region_avail"]`            |

 <br>

> *Every possible item state is available as an instance property regardless of the interface type...almost. Many items support explicit positioning via the `pos` configuration option. However, queries regarding an item's position are made only by checking its' state, making `pos` a bit of an odd-ball. Because of this behavior, interfaces only have the `.pos` property when the supported item type can be positioned. In this case, assigning a value to `.pos` is equivelent to `item.configure(pos=value)`.*

<br>

#### Behaviors
Some interface types implement unique behavors or inherit them from a parenting proto-type(s). Previous examples demonstrate using **interfaces as context managers** -- a behavior unique to **container-type** and `mvAll` interfaces;

```python
with Window() as window:
    button = Button(tag=40000)

with window:
    text = Text("Some text", tag=50000)
```
You'll get yelled at when trying that kind of thing with a primitive button interface;
```python
with button:  # -> `TypeError: 'mvButton' object does not support the context manager protocol`
    ...
```

<br>
<br>

**All interfaces** support some kind of **indexing and slicing** behavior. By default, this operates on the item's child slots; specifically the result of `.information()["children"]` (not the `.children` method). Although only useful for containers, even basic items like buttons have child slots;
```python
# This is equivelent to `window.children(1)`, returning the
# contents of child slot 1.
window[1]   # -> [40000, 50000]
# We can do this  with non-containers, too. Every slot will
# be empty, though.
button[1]   # -> []

# Slice to include several slots;
window[0:]  # -> [[], [40000, 50000], [], []]
```
Meanwhile, theme element and "series"-type interfaces override the above behavior. Indexing, slicing, and rich comparisons operate on the item's value. In particular, they behave like lists of a fixed size;
```python
from dearpypixl import *
from dearpypixl import color, style

with Theme() as theme:
    with ThemeComponent():
        # `dearpygui.add_theme_color(
        #     dearpygui.mvThemeCol_WindowBg,
        #     (200, 50, 50, 250),
        #     category=dearpygui.mvThemeCat_Core,
        # )`
        window_bg = color.WindowBg(200, 50, 50, 250)

# theme elements are semi-mutable lists (values can change, but not shape)
window_bg == window_bg.get_value() == list(window_bg) == [*window_bg] == [200, 50, 50, 250]  # -> `True`

# update the alpha channel
window_bg[-1] = 200
window_bg.get_value()  # -> `[200.0, 50.0, 50.0, 200.0]`

# update color channels
window_bg[:-1] = [50, 200, 50]
window_bg.get_value()  # -> `[50.0, 200.0, 50.0, 200.0]`
```

<br>
<br>

Additionally, primitive interfaces can be **pickled**;
```python
import pickle
from dearpypixl import *


with Window(label="a window") as window:
    Text("some text")
    with ChildWindow(label="a child window"):
        InputText(default_value="more text")

pickled = pickle.dumps(window)

# If we were to load the pickled tree now, it would
# only copy the interface state. The tree would not
# be reproduced.
window.delete()

# Reload the pickled hierarchy. Since the item tree
# no longer exists, this will recreate the interface
# state and the item tree.
window = pickled.loads(pickled)
```

The pickling process is fairly comprehensive. It creates a save state of the target's alias, configuration (including `pos` and `source`), bindings (theme, etc), children, and value. This procedure is repeated on the target's children recursively, ensuring that the *entire* item tree from the target is included. Item `source`s are uniquely handled so that they can be properly set even if the actual source item is created further down the hierarchy. The process also pickles interfaces found on user-defined interfaces (again, recursively). When an item hierarchy is about to be pickled, all items/interfaces found are ensured to have assigned **aliases** at the time of serialization. If an item does not have an alias, one is generated automatically using its' current integer id and a universally-unique id created using the `uuid` module's `uuid4` function<b>*</b>.

Below is a more complex, working example. Note that both `window` and `theme` are destroyed before reloading the pickled hierarchy. The `mvHandlerRegistry` interface object on `window.events`, however, is not. The loading process still creates a `mvHandlerRegistry` interface and sets it on the reconstructed `window.events` interface, but the handler registry itself is not recreated since it exists already.

```python
import pickle
from dearpypixl import *


class UserWindow(Window):
    def __init__(self, **kwargs):
        super().__init__(**kwargs)
        # covered through interface association
        self.events = HandlerRegistry()


with Theme() as theme:
    with ThemeComponent() as tc:
        window_bg = color.WindowBg(200, 50, 50, 250)

with UserWindow(label="a window") as window:
    # covered through item association (binding)
    window.theme = theme

    # covered through item association (children)
    text = Text("some text")
    with ChildWindow(label="a child window") as child_window:
        input_text = InputText(default_value="more text")
        with Plot(label="and an empty plot"):
            ...
    text.source = input_text  # `source` will be properly reflected


window_pkl = pickle.dumps(window)

window.delete()
theme.delete()

window = pickle.loads(window_pkl)
```

Items/interfaces are pickled from the top-down and does not traverse upward. This is important because parent references of serialized items are *not* tracked. Instead, a loaded "parent" explicitly passes itself down to its' children during the loading process. This is a non-issue when pickling an entire item tree since root items don't require parents. Things are different when pickling item *branches*; the top-level pickled item/interface needs a parent! Simply load the branch while a suitable parent is atop the container stack;
```python
with Window(label="a window") as window:
    Text("some text")
    with ChildWindow(label="a child window") as child_window:
        InputText(default_value="more text")

child_wndw_pkl = pickle.dumps(child_window)
child_window.delete()

# load the saved branch within a completely different parent
with Window():
    with Table():
        TableColumn()
        with TableRow():
            child_window = pickle.loads(child_wndw_pkl)


```
Avoid "reference tangles" when making pickle-able trees. An interface of a user-defined type should not keep a reference of a non-root item of a completely different branch. Similarly, don't set item `source`s to items in other branches. The pickling procedure will assign aliases to such items, but will not attempt to pickle the item or reference. The below example results in a `RuntimeError` while trying to load reload `window2`;
```python
with Window() as window1:
    w1_text1 = Text()
    w1_text2 = Text(source=w_text1)


with Window() as window2:
    w2_text = Text(source=w1_text1)  # "reference tangle"


# create a snapshot while `w2_text` is still "outsourcing"
window2_pkl = pickle.dumps(window1)
window1.delete()
window2.delete()

pickle.loads(window2_pkl)  # -> `RuntimeError()`
```
A good solution for the above is using value registries, ensuring they are loaded first before anything else. Interfaces of user-defined types have an advantage here, as different interfaces can hold different (or same, doesn't matter) interfaces that operate on the same item (like a value registry). In that case, the value registry would always be loaded regardless of the load order of those that reference it.

<br>

> ***Pickling** is an **experimental feature**, and not all primitive interfaces are guaranteed to serialize at this time.*

<br>

## Item Types

In Dear PyPixl, each of Dear PyGui's item types are represented by a subclass of `AppItemType`. Easily identifiable by their "mv" prefixes, class names mirror the name of the internal type it represents and *not* necessarily the name of the Dear PyGui function used to create items of that type (although, they usually go hand-in-hand). The adherence to a specific naming nomenclature means that some names can be a bit...verbose. As a convenience, classes are aliased (some more than once) to be less-so, or to make them easier to identify from other types;
```python

# most are straight-forward;
ChildWindow == mvChildWindow
DrawNode == mvDrawNode
# some are obvious...
Window == mvWindowAppItem
# some aren't...
HistogramSeries2D == mv2dHistogramSeries
PlotAnnotation == mvAnnotation
```
<br>

The classes themselves would be poor representations if you couldn't gleam some useful information from them. Casting an item class as an `int` or `str` yields a bit of information regarding the represented type; `str(mvWindowAppItem)` will always compare equal to `dearpygui.get_item_type(item)` when `item` is a window item identifier, wheras casting to an integer returns the enumeration value of the internal type -- the latter compares equal to a similarly-named constant found in the `dearpygui` namespace. Classes also have a `.command` attribute; the (non-context manager) function that is typically called to create items of that type. In addition, several class-level properties regarding the item type's "category" and/or identity are exposed;

```python
import dearpypixl as *


# ItemType       | String Repr                      | Int Repr       | Function
# ------------------------------------------------------------------------------------
mvButton         # "mvAppItemType::mvButton"        | 2              | `add_button`
mvText           # "mvAppItemType::mvText"          | 28             | `add_text`
mvInputText      # "mvAppItemType::mvInputText"     | 1              | `add_input_text`
mvWindowAppItem  # "mvAppItemType::mvWindowAppItem" | 33             | `window`, `add_window`
mvLabelSeries    # "mvAppItemType::mvLabelSeries    |                | `add_text_point`


...


str(mvWindowAppItem) == dpg.get_item_type(dpg.add_window())  # True
int(mvWindowAppItem) == dpg.mvWindowAppItem                  # True
mvWindowAppItem.command == dpg.add_window                    # True

# some class-level properties
mvWindowAppItem.is_root_item  # True
mvWindowAppItem.is_container  # True
mvWindowAppItem.is_node_item  # False
```

<br>

## Global State & Setup

All examples in previous sections omitted any of Dear PyGui's usual setup code, so here's one of the first few examples with all of the code needed to start the user interface;

```python
from dearpypixl import *


with Window(label="A window") as window:
    button = Button(label="A button", callback=lambda: print("stuff is happening...!"))

Runtime.start()
```

Dear PyPixl automatically executes any and all setup steps, freeing users of the obligation. Setup is typically broken out as users make API calls to Dear PyPixl without asking, but only on an as-needed basis. For example, `create_context` is not called until Dear PyPixl makes its' first call to Dear PyGui, while `create_viewport` is only called when an existing viewport is necessary for the procedure. Don't like the automated stuff? Users can perform any and/or all setup manually using Dear PyGui or Dear PyPixl; regardless, the framework keeps an accurate record of all of it, and will only run what's needed. Whether it be setup or configuration, Dear PyGui's global state can be managed using the `Application`, `Viewport`, and `Runtime` classes.

<br>

The `Application`, `Viewport`, and `Runtime` classes are not too far removed from Dear PyPixl's interface types. They each define the `.configure`, `.configuration`, `.information` and `.state` methods, and expose a full suite of properties to complement them. However, they are also the most unique objects in Dear PyPixl. In contrast to interfaces types whose instances operate on a specific item, the API for `Application` and `Viewport` is entirely *static*.

```python
from dearpypixl import *
import dearpygui.dearpygui as dpg



# manually perform app setup (optional)
Application.create_context()  # `dearpygui.create_context()`
Application.prepare()         # `dearpygui.setup_dearpygui()`

Application.state()['ok']     # | -> True (False if the above is not done yet)
Application.is_ok             # |

# update application settings, just like item interfaces
# NOTE: If we did not manually run setup, DPX would do it
# at `Application.docking = True` below, since it requires
# DPG initialization.
Application.docking = True
Application.docking           # -> True
Application.configure(docking=False)
Application.docking           # -> False

app_theme = Theme(label="Application Theme")
# set the application theme
Application.theme = app_theme
# unlike Dear PyGui's API, you can always fetch it later...
Application.theme.label      # -> "Application Theme"
# REGARDLESS of how you set it...
dpg.bind_theme(None)
Application.theme            # -> None
Application().theme = app_theme
Application.theme.label      # -> "Application Theme"

# the returned mapping mirrors `Item.information(...)`, so
# it includes `font` and `theme`
Application.information()    # -> {'type': 'Application', ..., 'font': None, ...}

# Even though the class and instances operate on the
# same state(s), they are NOT the same object
Application is Application()    # -> False
Application == Application()    # -> False
# again, different objects
Application() is Application()  # -> False



# manually setup the viewport (again, optional)
Viewport.state()['ok']          # | -> False (True once created)
Viewport.is_ok                  # |
Viewport.create()
Viewport.is_ok                  # -> True

Viewport.state()['visible']     # | -> False (not shown yet)
Viewport.is_visible             # |
# `Viewport.show()`, but using DPG's API because, again, DPX
# knows. It knows, and it will always know.
dpg.show_viewport()
Viewport.is_visible             # -> True

# NOTE: If application setup has not been done up until now,
# DPX will do so before creating the `window` interface/item.
with Window(label="A window", tag=50000) as window:
    button = Button(label="A button", callback=lambda: print("stuff is happening...!"))

# second verse, same as the first
Viewport.width = 700
dpg.configure_viewport(
    "DPG NOT USED YET",  # `Viewport.tag`
    label="IT ALWAYS KNOWS",
)
# Unique to DPX, 'primary_window', 'callback', and 'user_data'
# are "configuration". All three of these cannot be fetched
# using DPG's API, while 'callback', and 'user_data' cannot be
# set separately. DPX sets things right.
Viewport.configure(
    height=550,
    primary_window=window,
    callback=lambda sender, app_data, user_data: print(user_data),
    user_data="the cake is delicious",
)
Viewport.user_data = "the cake is a lie"
Viewport.configuration() # -> {
#    'label'         : 'IT ALWAYS KNOWS',
#    'width'         : 700,
#    'height'        : 550,
#    ...,
#    'primary_window': 50000,
#    'callback'      : <function <lambda> at ...>,
#    'user_data      : 'the cake is a lie',
# }


# DPX will run any app or viewport setup we missed (we
# didn't miss any) before starting the runtime.
Runtime.start()
```

> *Although static-bound, `Application` and `Viewport` can still be instantiated. Doing so will execute any setup procedures required to fully utilize their API. Additionally, keyword arguments passed to the constructor are forwarded to the class' `.configure` method. `Runtime` can also be instantiated, but does not share the mentioned behavior upon instantiation.*

 <br>
 <br>

`Application` and `Viewport` interact solely with the already-existing global state provided by Dear PyGui. Unique to Dear PyPixl, the `Runtime` class manages the "runtime" state. It represents the status of the main event loop, and allows users to interact with aspects of the loop (framerate clamping, task queuing, etc.) without needing to implement it themselves. Unlike `Application` and `Viewport` whose API is completely unbound, `Runtime` is partially class-bound, allowing users a level of control through overrides.

The `.start` method is used to start the main event loop in Dear PyPixl. It implements a general-purpose event loop using a synchronized fixed time step to decouple task execution from rendering. Tasks can be pushed to the event loop by adding them to `.queue` (an instance of `queue.Queue`), and are de-queued upon execution. When necessary, tasks can re-queue themselves, making them reoccuring tasks. Task execution is limited to a number of real-time milliseconds, set on the `.update_interval` property.

```python
from dearpypixl import *


def printer():
    print('the cake is a lie')

# this is ran once
Runtime.queue.put(printer)


with Window() as window:
    ...

def print_window_state():
    print(window.state())
    Runtime.queue.put(print_window_state)

# this is re-occuring
Runtime.queue.put(print_window_state)

# Since task execution is fairly isolated, the
# re-occuring task will not block rendering frames.
# A LONG running task may result in dropped frames,
# though.
Runtime.start()
```

<br>

Frame rate can be managed by setting values on `.target_frame_rate` and `.clamp_frame_rate`. When `clamp_frame_rate` is True, the number of frames rendered per second is limited to the value of `target_frame_rate`, as long as it isn't zero or `None`. These values can be updated at any time, even after the event loop has started.
```python
from dearpypixl import *


def print_frame_rate():
    print(Runtime.frame_rate())
    Runtime.queue.put(print_frame_rate)

Runtime.queue.put(print_frame_rate)


# limit to 30 fps
Runtime.target_frame_rate = 30
Runtime.clamp_frame_rate  = True

Runtime.start()
```

 <br>

Additionally, the `.start` method features a "debug mode". In this mode, Dear PyGui's callback queue is automatically processed without any additional input from the user. This is set to run when the application-level `manual_callback_management` is `True`, or when the `.start` method is called with `debug_aware=True` when using a debugger.

<br>

## Modules

Only interface types are exposed directly within the `dearpypixl` namespace. Other useful tools and extensions are housed within their respective modules;
* `api`: Contains the lower-level API used by the framework.
* `typing`: Exposes type aliases and protocols used by the library. In addition to the `AppItemType` base class, primitive interface bases, abstract bases, and typed implementations of Dear PyGui's `mvBuffer`, `mvVec4`, and `mvMat4` objects.
* `constants`: Stores static Dear PyGui and Dear PyPixl values/variables as enumerations.
* `events`: Extensions of callback-related interface types and related utilities.
* `theming`: Extensions of theme and font-related interface types.
* `color`, `style`: Contains helper functions for creating specific theme color and style elements.
* `console`: Homebrew stream and console-related item interfaces.
* `grid`: Contains the `Grid` item layout manager, which leverages the ability to explicitly position items to emulate a table-like layout without creating any items.
<br>

## Limitations, Bugs, & Gachas

Dear PyPixl tries to maintain the same semantics and feel that Dear PyGui has so that it's intuitive coming from Dear PyGui, while being different in ways that only benefit the user. However, there are some situations and use-cases where Dear PyGui and Dear PyPixl and aren't exactly 1-to-1 due to implementation details of the framework, bugs within Dear PyGui, etc. Below explains some of Dear PyPixl's behavior and some consequences that stem as a result.
<br>


#### Interfaces are Integers, For Better or Worse

Interface types are derived from Python's built-in `int` type. This allows interfaces to be used as arguments where item identifiers are expected. In addition, it simplifies the public and internal API's alike in regards to interface and item creation. This unfortunately has a few side effects;
* interface subclasses **cannot declare non-empty `__slots__`**
* interfaces cannot include a `__weakref__` attribute, meaning they **cannot have proxies**
* **`__bool__` cannot be implemented**

The last limitation has less to do with `int` and more to do with how Dear PyGui is inspecting identifier values. `__bool__` must operate on the integer value of the interface; hard-to-diagnose bugs *will* occur otherwise. For this reason, Dear PyPixl will throw a `TypeError` when defining an interface class that does not point to `int.__bool__`.

<br>

#### Passing Explicit UUID's and Aliases

Item-creating functions in Dear PyGui all accept a `tag` keyword argument in the form of an item's integer identifier (*uuid*) or string *alias*. While Dear PyPixl does its' best to accomodate, **the basic interface constructor cannot properly manage aliases when the alias is new**. This is in part due to Dear PyPixl's internal design, along with the fact that Dear PyGui's item registry API was never finished. Since the interface's creation logic (`.__new__`) is isolated from the item creation logic (`.__init__`), Dear PyPixl would need to register the new alias to a new uuid in advance. This can be done, however, Dear PyGui does not behave as expected in any scenario.

As a workaround, interfaces have the `.aliased` class method, an alternative constructor, which will set the alias onto the item once it is created. Note that this is only necessary when creating the interface would also cause the interfaced item to be created, while aliases of existing items can be passed as normal.

As is recommended when using Dear PyGui, users should *not* generate their own integer identifiers for Dear PyPixl interfaces.

<br>

#### Typestubs and Dear PyGui Versions

Most of the objects found in Dear PyPixl are dynamically generated on-import to support the installed Dear PyGui version. In contrast, newer versions of Dear PyPixl will always ship with stubs generated against the most recent (and compatible) version of Dear PyGui available on PyPi at the time of development; unlike code, type stub files cannot be reliably written at runtime. This means that the typing information may not reflect the version of Dear PyGui installed.

There are two options to remedy this. The first is to simply use the most up-to-date versions of Dear PyPixl and Dear PyGui. Dear PyGui has been put into "maintenance mode" as of version 1.9 - breaking changes are not expected for newer versions. Dear PyPixl will automatically install the newest version of Dear PyGui available on PyPi, provided a compatible version isn't already installed. Alternatively, a new set of stub files can be generated within Dear PyPixl's installation directory by running the library as a top-level script via `python -m dearpypixl`, provided that the user or client has the proper permissions to do so.

 <br>

# FAQ

---

**Q**: **Are there performance implications from Dear PyPixl?**

**A**: The framework keeps a very low profile where possible, optimizing high-traffic areas of the API to keep overhead to a minimum. For example, creating one million window items via `mvWindowAppItem()` on a low-end machine took ~15.7 seconds (worst-case); only ~1.2 seconds of which contributed to executing Dear PyPixl's code.

---

**Q**: **Can I use both Dear PyPixl and Dear PyGui code in my project?**

**A**: **Yes**.

---

**Q**: **I need to conform to an older version (<1.9) of Dear PyGui- will Dear PyPixl still work?**

**A**: Dear PyPixl is designed to work with most with most Dear PyGui versions. In fact, key components of the core framework were implemented using Dear PyGui v1.8. However, using some of Dear PyPixl's extension modules may throw errors when using older versions of Dear PyGui (in the future, these areas may issue a warning when using such versions). Regardless, you are welcome to try.


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "dearpypixl",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "dearpygui,gui,ui,user-interface",
    "author": "",
    "author_email": "Anthony Doupe <atlamillias@outlook.com>",
    "download_url": "https://files.pythonhosted.org/packages/ca/e2/97ecae3a72f6772f6c963233d32c23df31190dd8c98572ec00b8fe2db961/dearpypixl-1.2.6.tar.gz",
    "platform": null,
    "description": "# Dear PyPixl\r\nDear PyPixl is an object-oriented, lightweight, modular framework and toolkit for [Dear PyGui](https://github.com/hoffstadt/DearPyGui) with minimal dependencies and zero use restrictions (MIT license).\r\n\r\n- [Features](#features)\r\n- [Requirements](#requirements)\r\n- [Installation](#installation)\r\n- [Overview](#overview)\r\n  - [Item Interfaces](#item-interfaces)\r\n      - [Creating Interfaces](#creating-interfaces)\r\n      - [Methods & Properties](#methods--properties)\r\n      - [Behaviors](#behaviors)\r\n  - [Item Types](#item-types)\r\n  - [Global State & Setup](#global-state--setup)\r\n  - [Modules](#modules)\r\n  - [Limitations, Bugs, & Gachas](#limitations-bugs--gachas)\r\n      - [Interfaces are Integers, For Better or Worse](#interfaces-are-integers-for-better-or-worse)\r\n      - [Passing Explicit UUID's and Aliases](#passing-explicit-uuids-and-aliases)\r\n      - [Typestubs and Dear PyGui Versions](#typestubs-and-dear-pygui-versions)\r\n- [FAQ](#faq)\r\n\r\n<br>\r\n\r\n\r\n#### Features\r\n\r\nAt its' core, Dear PyPixl provides object-oriented interfaces for Dear PyGui items. In addition, it ships with a wide arrangement of extensions and tools that remedy hurdles and inconveniences commonly encountered when using Dear PyGui.\r\n\r\n - Extensible high-level and object-oriented API for creating and/or interfacing with Dear PyGui items\r\n - Low-level API that fills a plethora of holes within Dear PyGui's API\r\n - Strongly typed\r\n - \"Use what you want\" - code from Dear PyPixl and Dear PyGui can be used together with minimal conflict\r\n - Provides functions for creating specific theme element items within the `color` and `style` modules - no more passing enum values to `add_theme_color/style`!\r\n - Typing for Dear PyGui's `mvBuffer`, `mvVec4`, and `mvMat4` objects\r\n - Improved docstrings and errors\r\n - Contains numerous extensions and other helpful tools\r\n\r\n<br>\r\n\r\n#### Requirements\r\n - Operating System; Windows 8.1+, MacOS, Linux*\r\n - Python: 3.10 x64 (or newer)\r\n - `pip` dependencies:\r\n    * `dearpygui` 1.9 (or newer)\r\n    * `typing-extensions` (Python < 3.12 only)\r\n\r\n*Dear PyPixl is available on all platforms already supported by Dear PyGui. Availability for 32-bit systems and Raspberry Pi OS is *loosely* supported, but requires building Dear PyGui from the source. Please visit their [wiki](https://github.com/hoffstadt/DearPyGui/wiki) for more information.\r\n<br>\r\n\r\n#### Installation\r\n\r\nUsing `pip`;\r\n```python\r\npython3 -m pip install dearpypixl\r\n```\r\n<br>\r\nAlternatively, build the wheel and install locally. Download/clone the source;\r\n\r\n```\r\ngit clone https://github.com/Atlamillias/DearPyPixl\r\n```\r\nThen, from the project directory;\r\n```\r\npython3 -m pip install build\r\n```\r\n```\r\npython3 -m build <path_to_dearpypixl_dir>\r\n```\r\n```\r\npython3 -m pip install <path_to_generated_whl>\r\n```\r\n\r\n# Overview\r\nDear PyPixl is not undocumented. The information below supplements the detailed information available via docstrings. However, I highly suggest visiting Dear PyGui's [documentation](https://dearpygui.readthedocs.io/en/latest/index.html) if you are unfamiliar with the project. Basic usage of Dear PyPixl is very similar (identical) to that of Dear PyGui, and you may feel lost without some background.\r\n\r\n## Item Interfaces\r\n#### Creating Interfaces\r\nAn item type is, functionally, a drop-in replacement for any Dear PyGui function that would create item an item;\r\n```python\r\nfrom dearpypixl import *\r\n\r\n\r\nwindow = Window(label=\"A window\")\r\nbutton = Button(\r\n    label=\"A button\",\r\n    callback=lambda: print(\"stuff is happening...!\",\r\n    parent=window\r\n)\r\n```\r\n\r\nFor container items, Dear PyGui offers two functions; a \"normal\" one, and a context manager. The class replaces *both*;\r\n```python\r\nfrom dearpypixl import *\r\n\r\n\r\nwith Window(label=\"A window\") as window:\r\n    button = Button(label=\"A button\", callback=lambda: print(\"stuff is happening...!\"))\r\n```\r\n\r\n\r\nWhile calling `dearpygui.add_window` or `dearpygui.window` returns a **tag**, or a unique integer or string identifier, for the created window, the above results in an **item interface** object. Interfaces *are* item identifiers - integers specifically - and can be used wherever an item tag is appropriate. For the lifetime of the interface, instance-bound methods will operate exclusively on the interfaced item. In the case above, the \"interfaced item\" was created along with the interface. However, there are ways to create interfaces for existing items, too;\r\n```python\r\nfrom dearpypixl import *\r\nimport dearpygui.dearpygui as dpg\r\n\r\n\r\nwith Window() as window:\r\n    button_id = dpg.add_button(tag=\"a button\")\r\n\r\n# Method 1A: Call the interface class and include an existing `tag`\r\nbutton_if1 = Button(tag=button_id)   # -> `mvButton(tag=..., alias='a button', ...)`\r\n# Method 1B: Call the `.new` classmethod\r\nbutton_if2 = Button.new(button_id)   # -> `mvButton(tag=..., alias='a button', ...)`\r\n\r\n# Method 2: Use the `interface` function\r\nbutton_if = interface(button_id)     # -> `mvButton(tag=..., alias='a button', ...)`\r\n\r\n# Method 3: Use the `mvAll` interface class\r\ngeneric_if = mvAll(button_id)        # -> `mvAll(tag=..., alias='a button', ...)`\r\n```\r\n\r\nThe first is pretty intuitive; include the `tag` keyword argument when creating an interface. If the `tag` value is an existing item identifier, a new interface object will be created but won't (rather, *can't*) create a new item. This is useful when using primitive interfaces and when you are aware of the type of item you're interfacing with. However, this isn't without caveats. User-defined interfaces often implement a custom `__init__` method -- you likely won't appreciate another initialization. Additionally, an exception is raised (and suppressed) when the interface fails to create a new item with the in-use `tag`, so this approach isn't recommended if you're doing it *thousands* of times within a short window. In either case, all interface types have a class-bound `.new` method. Accepting a sole positional `tag` argument, the `.new` method creates and returns an interface of that type while skipping instance initialization.\r\n\r\nThere may be times when you'll feel the need to query an item's type to find the correct interface. The `interface` function accepts a sole positional `tag` argument and a few other optional keywords. Its' default behavior is to query Dear PyGui for the item's type, find the appropriate class for that type, and return the result of calling the class' `.new` method. This procedure is faster than calling the class directly when the \"item already exists\" exception would be caught and discarded, even when you know the correct class beforehand.\r\n\r\nLastly, when just want an interface and you don't know and/or don't care to know the item and interface type, or the interface is just a \"stepping stone\" to another one (like a parent or child), consider creating a generic item interface with `mvAll`. These interfaces have a *very* broad API, supporting items of any type to some degree. Their creation process is greatly simplified from that of other interfaces, so they're fast to make. The downside is their benefits -- they're *generic*. Some methods only work when interfacing with items of specific types. Additionally, their lack of type identity and simplified creation procedure means that they do not create items or generate identifiers. They also lack behaviors unique to more \"narrow\" interface types; as a convenience, however, they can be used as context managers when interfacing with container items.\r\n\r\n\r\n> **Note:** *No attempts are made to stop you from trying to bind an interface to an existing item of a different or unsupported type. Don't expect things to go well.*\r\n\r\n<br>\r\n\r\n#### Methods & Properties\r\nThe members available to interface can vary based on the type of item they support. However, all interfaces share a collection of core methods and properties. While member names are not 1-to-1, they are similar to that of the Dear PyGui hook used for each; the table below outlines many of them;\r\n\r\n| Bound Interface Method   | Dear PyGui Function                     |\r\n| :----------------------: | :-------------------------------------: |\r\n| `item.configure(...)`    | `configure_item(item, ...)`             |\r\n| `item.configuration()`   | `get_item_configuration(item)`          |\r\n| `item.information()`     | `get_item_info(item)`                   |\r\n| `item.state()`           | `get_item_state(item)`                  |\r\n| `item.delete(...)`       | `delete_item(item, ...)`                |\r\n| `item.set_font(...)`     | `bind_item_font(item, ...)`             |\r\n| `item.set_theme(...)`    | `bind_item_theme(item, ...)`            |\r\n| `item.set_handlers(...)` | `bind_item_handler_registry(item, ...)` |\r\n\r\nIn addition, interfaces also define a few other methods for accessing item-related information;\r\n\r\n| Bound Interface Method   | Dear PyGui Function                                                |\r\n| :----------------------: | :----------------------------------------------------------------: |\r\n| `item.children(...)`     | `get_item_info(item)['children']`<br>`get_item_children(item, ...)`|\r\n| `item.get_font()`        | `get_item_info(item)['font']`<br>`get_item_font(item)`             |\r\n| `item.get_theme()`       | `get_item_info(item)['theme']`<br>`get_item_theme(item)`           |\r\n| `item.get_handlers()`    | `get_item_info(item)['handlers']`<br>`get_item_handlers(item)`     |\r\n\r\n<br>\r\n\r\n> *The `.configuration` and `.state` methods are not functionally equivelent to Dear PyGui's `get_item_configuration` and `get_item_state` functions. The `.configuration` method of each dedicated interface type is unique and filters out options not applicable to the supported item type. This allows for the usage of the `type(item)(**item.configuration())` idiom which, in most cases, creates a \"reproduction\" of the item and interface. The behavior of the `.state` method isn't as interesting; unlike `get_item_state`, the dictionary returned by the `.state` method includes keys for every state an item could possibly have. When a state is not applicable for the supported item, the value of that key in the returned dictionary will be `None`.*\r\n\r\n<br>\r\n<br>\r\n\r\nFor convenience, interfaces expose several item-related settings and states as instance properties. Available \"configuration\" properties vary per interface, but expect one for each of the supported item's writable settings. In contrast, \"information\" properties are consistent between all item interface types, but only the most commonly-used are exposed. While the related methods return the result as returned by Dear PyGui, the on-access behavior of each property will always return an item interface when applicable. However, \"state\" properties will always return the result as-is;\r\n\r\n| Interface Property               | Interface Method Hook                             |\r\n| :----------------:               | :-----------------------------------------------: |\r\n| `item.parent`                    | `item.information()['parent']`                    |\r\n| `item.theme`                     | `item.get_theme()`<br>`item.set_theme(...)`       |\r\n| `item.font`                      | `item.get_font()`<br>`item.set_font(...)`         |\r\n| `item.handlers`                  | `item.get_handlers()`<br>`item.set_handlers(...)` |\r\n| `item.is_ok`                     | `item.state()[\"ok\"]`                              |\r\n| `item.is_hovered`                | `item.state()[\"hovered\"]`                         |\r\n| `item.is_active`                 | `item.state()[\"active\"]`                          |\r\n| `item.is_focused`                | `item.state()[\"focused\"]`                         |\r\n| `item.is_clicked`                | `item.state()[\"clicked\"]`                         |\r\n| `item.is_left_clicked`           | `item.state()[\"left_clicked\"]`                    |\r\n| `item.is_right_clicked`          | `item.state()[\"right_clicked\"]`                   |\r\n| `item.is_middle_clicked`         | `item.state()[\"middle_clicked\"]`                  |\r\n| `item.is_visible`                | `item.state()[\"visible\"]`                         |\r\n| `item.is_edited`                 | `item.state()[\"edited\"]`                          |\r\n| `item.is_activated`              | `item.state()[\"activated\"]`                       |\r\n| `item.is_deactivated`            | `item.state()[\"deactivated\"]`                     |\r\n| `item.is_deactivated_after_edit` | `item.state()[\"deactivated_after_edit\"]`          |\r\n| `item.is_resized`                | `item.state()[\"resized\"]`                         |\r\n| `item.rect_min`                  | `item.state()[\"rect_min\"]`                        |\r\n| `item.rect_max`                  | `item.state()[\"rect_max\"]`                        |\r\n| `item.rect_size`                 | `item.state()[\"rect_size\"]`                       |\r\n| `item.content_region_avail`      | `item.state()[\"content_region_avail\"]`            |\r\n\r\n <br>\r\n\r\n> *Every possible item state is available as an instance property regardless of the interface type...almost. Many items support explicit positioning via the `pos` configuration option. However, queries regarding an item's position are made only by checking its' state, making `pos` a bit of an odd-ball. Because of this behavior, interfaces only have the `.pos` property when the supported item type can be positioned. In this case, assigning a value to `.pos` is equivelent to `item.configure(pos=value)`.*\r\n\r\n<br>\r\n\r\n#### Behaviors\r\nSome interface types implement unique behavors or inherit them from a parenting proto-type(s). Previous examples demonstrate using **interfaces as context managers** -- a behavior unique to **container-type** and `mvAll` interfaces;\r\n\r\n```python\r\nwith Window() as window:\r\n    button = Button(tag=40000)\r\n\r\nwith window:\r\n    text = Text(\"Some text\", tag=50000)\r\n```\r\nYou'll get yelled at when trying that kind of thing with a primitive button interface;\r\n```python\r\nwith button:  # -> `TypeError: 'mvButton' object does not support the context manager protocol`\r\n    ...\r\n```\r\n\r\n<br>\r\n<br>\r\n\r\n**All interfaces** support some kind of **indexing and slicing** behavior. By default, this operates on the item's child slots; specifically the result of `.information()[\"children\"]` (not the `.children` method). Although only useful for containers, even basic items like buttons have child slots;\r\n```python\r\n# This is equivelent to `window.children(1)`, returning the\r\n# contents of child slot 1.\r\nwindow[1]   # -> [40000, 50000]\r\n# We can do this  with non-containers, too. Every slot will\r\n# be empty, though.\r\nbutton[1]   # -> []\r\n\r\n# Slice to include several slots;\r\nwindow[0:]  # -> [[], [40000, 50000], [], []]\r\n```\r\nMeanwhile, theme element and \"series\"-type interfaces override the above behavior. Indexing, slicing, and rich comparisons operate on the item's value. In particular, they behave like lists of a fixed size;\r\n```python\r\nfrom dearpypixl import *\r\nfrom dearpypixl import color, style\r\n\r\nwith Theme() as theme:\r\n    with ThemeComponent():\r\n        # `dearpygui.add_theme_color(\r\n        #     dearpygui.mvThemeCol_WindowBg,\r\n        #     (200, 50, 50, 250),\r\n        #     category=dearpygui.mvThemeCat_Core,\r\n        # )`\r\n        window_bg = color.WindowBg(200, 50, 50, 250)\r\n\r\n# theme elements are semi-mutable lists (values can change, but not shape)\r\nwindow_bg == window_bg.get_value() == list(window_bg) == [*window_bg] == [200, 50, 50, 250]  # -> `True`\r\n\r\n# update the alpha channel\r\nwindow_bg[-1] = 200\r\nwindow_bg.get_value()  # -> `[200.0, 50.0, 50.0, 200.0]`\r\n\r\n# update color channels\r\nwindow_bg[:-1] = [50, 200, 50]\r\nwindow_bg.get_value()  # -> `[50.0, 200.0, 50.0, 200.0]`\r\n```\r\n\r\n<br>\r\n<br>\r\n\r\nAdditionally, primitive interfaces can be **pickled**;\r\n```python\r\nimport pickle\r\nfrom dearpypixl import *\r\n\r\n\r\nwith Window(label=\"a window\") as window:\r\n    Text(\"some text\")\r\n    with ChildWindow(label=\"a child window\"):\r\n        InputText(default_value=\"more text\")\r\n\r\npickled = pickle.dumps(window)\r\n\r\n# If we were to load the pickled tree now, it would\r\n# only copy the interface state. The tree would not\r\n# be reproduced.\r\nwindow.delete()\r\n\r\n# Reload the pickled hierarchy. Since the item tree\r\n# no longer exists, this will recreate the interface\r\n# state and the item tree.\r\nwindow = pickled.loads(pickled)\r\n```\r\n\r\nThe pickling process is fairly comprehensive. It creates a save state of the target's alias, configuration (including `pos` and `source`), bindings (theme, etc), children, and value. This procedure is repeated on the target's children recursively, ensuring that the *entire* item tree from the target is included. Item `source`s are uniquely handled so that they can be properly set even if the actual source item is created further down the hierarchy. The process also pickles interfaces found on user-defined interfaces (again, recursively). When an item hierarchy is about to be pickled, all items/interfaces found are ensured to have assigned **aliases** at the time of serialization. If an item does not have an alias, one is generated automatically using its' current integer id and a universally-unique id created using the `uuid` module's `uuid4` function<b>*</b>.\r\n\r\nBelow is a more complex, working example. Note that both `window` and `theme` are destroyed before reloading the pickled hierarchy. The `mvHandlerRegistry` interface object on `window.events`, however, is not. The loading process still creates a `mvHandlerRegistry` interface and sets it on the reconstructed `window.events` interface, but the handler registry itself is not recreated since it exists already.\r\n\r\n```python\r\nimport pickle\r\nfrom dearpypixl import *\r\n\r\n\r\nclass UserWindow(Window):\r\n    def __init__(self, **kwargs):\r\n        super().__init__(**kwargs)\r\n        # covered through interface association\r\n        self.events = HandlerRegistry()\r\n\r\n\r\nwith Theme() as theme:\r\n    with ThemeComponent() as tc:\r\n        window_bg = color.WindowBg(200, 50, 50, 250)\r\n\r\nwith UserWindow(label=\"a window\") as window:\r\n    # covered through item association (binding)\r\n    window.theme = theme\r\n\r\n    # covered through item association (children)\r\n    text = Text(\"some text\")\r\n    with ChildWindow(label=\"a child window\") as child_window:\r\n        input_text = InputText(default_value=\"more text\")\r\n        with Plot(label=\"and an empty plot\"):\r\n            ...\r\n    text.source = input_text  # `source` will be properly reflected\r\n\r\n\r\nwindow_pkl = pickle.dumps(window)\r\n\r\nwindow.delete()\r\ntheme.delete()\r\n\r\nwindow = pickle.loads(window_pkl)\r\n```\r\n\r\nItems/interfaces are pickled from the top-down and does not traverse upward. This is important because parent references of serialized items are *not* tracked. Instead, a loaded \"parent\" explicitly passes itself down to its' children during the loading process. This is a non-issue when pickling an entire item tree since root items don't require parents. Things are different when pickling item *branches*; the top-level pickled item/interface needs a parent! Simply load the branch while a suitable parent is atop the container stack;\r\n```python\r\nwith Window(label=\"a window\") as window:\r\n    Text(\"some text\")\r\n    with ChildWindow(label=\"a child window\") as child_window:\r\n        InputText(default_value=\"more text\")\r\n\r\nchild_wndw_pkl = pickle.dumps(child_window)\r\nchild_window.delete()\r\n\r\n# load the saved branch within a completely different parent\r\nwith Window():\r\n    with Table():\r\n        TableColumn()\r\n        with TableRow():\r\n            child_window = pickle.loads(child_wndw_pkl)\r\n\r\n\r\n```\r\nAvoid \"reference tangles\" when making pickle-able trees. An interface of a user-defined type should not keep a reference of a non-root item of a completely different branch. Similarly, don't set item `source`s to items in other branches. The pickling procedure will assign aliases to such items, but will not attempt to pickle the item or reference. The below example results in a `RuntimeError` while trying to load reload `window2`;\r\n```python\r\nwith Window() as window1:\r\n    w1_text1 = Text()\r\n    w1_text2 = Text(source=w_text1)\r\n\r\n\r\nwith Window() as window2:\r\n    w2_text = Text(source=w1_text1)  # \"reference tangle\"\r\n\r\n\r\n# create a snapshot while `w2_text` is still \"outsourcing\"\r\nwindow2_pkl = pickle.dumps(window1)\r\nwindow1.delete()\r\nwindow2.delete()\r\n\r\npickle.loads(window2_pkl)  # -> `RuntimeError()`\r\n```\r\nA good solution for the above is using value registries, ensuring they are loaded first before anything else. Interfaces of user-defined types have an advantage here, as different interfaces can hold different (or same, doesn't matter) interfaces that operate on the same item (like a value registry). In that case, the value registry would always be loaded regardless of the load order of those that reference it.\r\n\r\n<br>\r\n\r\n> ***Pickling** is an **experimental feature**, and not all primitive interfaces are guaranteed to serialize at this time.*\r\n\r\n<br>\r\n\r\n## Item Types\r\n\r\nIn Dear PyPixl, each of Dear PyGui's item types are represented by a subclass of `AppItemType`. Easily identifiable by their \"mv\" prefixes, class names mirror the name of the internal type it represents and *not* necessarily the name of the Dear PyGui function used to create items of that type (although, they usually go hand-in-hand). The adherence to a specific naming nomenclature means that some names can be a bit...verbose. As a convenience, classes are aliased (some more than once) to be less-so, or to make them easier to identify from other types;\r\n```python\r\n\r\n# most are straight-forward;\r\nChildWindow == mvChildWindow\r\nDrawNode == mvDrawNode\r\n# some are obvious...\r\nWindow == mvWindowAppItem\r\n# some aren't...\r\nHistogramSeries2D == mv2dHistogramSeries\r\nPlotAnnotation == mvAnnotation\r\n```\r\n<br>\r\n\r\nThe classes themselves would be poor representations if you couldn't gleam some useful information from them. Casting an item class as an `int` or `str` yields a bit of information regarding the represented type; `str(mvWindowAppItem)` will always compare equal to `dearpygui.get_item_type(item)` when `item` is a window item identifier, wheras casting to an integer returns the enumeration value of the internal type -- the latter compares equal to a similarly-named constant found in the `dearpygui` namespace. Classes also have a `.command` attribute; the (non-context manager) function that is typically called to create items of that type. In addition, several class-level properties regarding the item type's \"category\" and/or identity are exposed;\r\n\r\n```python\r\nimport dearpypixl as *\r\n\r\n\r\n# ItemType       | String Repr                      | Int Repr       | Function\r\n# ------------------------------------------------------------------------------------\r\nmvButton         # \"mvAppItemType::mvButton\"        | 2              | `add_button`\r\nmvText           # \"mvAppItemType::mvText\"          | 28             | `add_text`\r\nmvInputText      # \"mvAppItemType::mvInputText\"     | 1              | `add_input_text`\r\nmvWindowAppItem  # \"mvAppItemType::mvWindowAppItem\" | 33             | `window`, `add_window`\r\nmvLabelSeries    # \"mvAppItemType::mvLabelSeries    |                | `add_text_point`\r\n\r\n\r\n...\r\n\r\n\r\nstr(mvWindowAppItem) == dpg.get_item_type(dpg.add_window())  # True\r\nint(mvWindowAppItem) == dpg.mvWindowAppItem                  # True\r\nmvWindowAppItem.command == dpg.add_window                    # True\r\n\r\n# some class-level properties\r\nmvWindowAppItem.is_root_item  # True\r\nmvWindowAppItem.is_container  # True\r\nmvWindowAppItem.is_node_item  # False\r\n```\r\n\r\n<br>\r\n\r\n## Global State & Setup\r\n\r\nAll examples in previous sections omitted any of Dear PyGui's usual setup code, so here's one of the first few examples with all of the code needed to start the user interface;\r\n\r\n```python\r\nfrom dearpypixl import *\r\n\r\n\r\nwith Window(label=\"A window\") as window:\r\n    button = Button(label=\"A button\", callback=lambda: print(\"stuff is happening...!\"))\r\n\r\nRuntime.start()\r\n```\r\n\r\nDear PyPixl automatically executes any and all setup steps, freeing users of the obligation. Setup is typically broken out as users make API calls to Dear PyPixl without asking, but only on an as-needed basis. For example, `create_context` is not called until Dear PyPixl makes its' first call to Dear PyGui, while `create_viewport` is only called when an existing viewport is necessary for the procedure. Don't like the automated stuff? Users can perform any and/or all setup manually using Dear PyGui or Dear PyPixl; regardless, the framework keeps an accurate record of all of it, and will only run what's needed. Whether it be setup or configuration, Dear PyGui's global state can be managed using the `Application`, `Viewport`, and `Runtime` classes.\r\n\r\n<br>\r\n\r\nThe `Application`, `Viewport`, and `Runtime` classes are not too far removed from Dear PyPixl's interface types. They each define the `.configure`, `.configuration`, `.information` and `.state` methods, and expose a full suite of properties to complement them. However, they are also the most unique objects in Dear PyPixl. In contrast to interfaces types whose instances operate on a specific item, the API for `Application` and `Viewport` is entirely *static*.\r\n\r\n```python\r\nfrom dearpypixl import *\r\nimport dearpygui.dearpygui as dpg\r\n\r\n\r\n\r\n# manually perform app setup (optional)\r\nApplication.create_context()  # `dearpygui.create_context()`\r\nApplication.prepare()         # `dearpygui.setup_dearpygui()`\r\n\r\nApplication.state()['ok']     # | -> True (False if the above is not done yet)\r\nApplication.is_ok             # |\r\n\r\n# update application settings, just like item interfaces\r\n# NOTE: If we did not manually run setup, DPX would do it\r\n# at `Application.docking = True` below, since it requires\r\n# DPG initialization.\r\nApplication.docking = True\r\nApplication.docking           # -> True\r\nApplication.configure(docking=False)\r\nApplication.docking           # -> False\r\n\r\napp_theme = Theme(label=\"Application Theme\")\r\n# set the application theme\r\nApplication.theme = app_theme\r\n# unlike Dear PyGui's API, you can always fetch it later...\r\nApplication.theme.label      # -> \"Application Theme\"\r\n# REGARDLESS of how you set it...\r\ndpg.bind_theme(None)\r\nApplication.theme            # -> None\r\nApplication().theme = app_theme\r\nApplication.theme.label      # -> \"Application Theme\"\r\n\r\n# the returned mapping mirrors `Item.information(...)`, so\r\n# it includes `font` and `theme`\r\nApplication.information()    # -> {'type': 'Application', ..., 'font': None, ...}\r\n\r\n# Even though the class and instances operate on the\r\n# same state(s), they are NOT the same object\r\nApplication is Application()    # -> False\r\nApplication == Application()    # -> False\r\n# again, different objects\r\nApplication() is Application()  # -> False\r\n\r\n\r\n\r\n# manually setup the viewport (again, optional)\r\nViewport.state()['ok']          # | -> False (True once created)\r\nViewport.is_ok                  # |\r\nViewport.create()\r\nViewport.is_ok                  # -> True\r\n\r\nViewport.state()['visible']     # | -> False (not shown yet)\r\nViewport.is_visible             # |\r\n# `Viewport.show()`, but using DPG's API because, again, DPX\r\n# knows. It knows, and it will always know.\r\ndpg.show_viewport()\r\nViewport.is_visible             # -> True\r\n\r\n# NOTE: If application setup has not been done up until now,\r\n# DPX will do so before creating the `window` interface/item.\r\nwith Window(label=\"A window\", tag=50000) as window:\r\n    button = Button(label=\"A button\", callback=lambda: print(\"stuff is happening...!\"))\r\n\r\n# second verse, same as the first\r\nViewport.width = 700\r\ndpg.configure_viewport(\r\n    \"DPG NOT USED YET\",  # `Viewport.tag`\r\n    label=\"IT ALWAYS KNOWS\",\r\n)\r\n# Unique to DPX, 'primary_window', 'callback', and 'user_data'\r\n# are \"configuration\". All three of these cannot be fetched\r\n# using DPG's API, while 'callback', and 'user_data' cannot be\r\n# set separately. DPX sets things right.\r\nViewport.configure(\r\n    height=550,\r\n    primary_window=window,\r\n    callback=lambda sender, app_data, user_data: print(user_data),\r\n    user_data=\"the cake is delicious\",\r\n)\r\nViewport.user_data = \"the cake is a lie\"\r\nViewport.configuration() # -> {\r\n#    'label'         : 'IT ALWAYS KNOWS',\r\n#    'width'         : 700,\r\n#    'height'        : 550,\r\n#    ...,\r\n#    'primary_window': 50000,\r\n#    'callback'      : <function <lambda> at ...>,\r\n#    'user_data      : 'the cake is a lie',\r\n# }\r\n\r\n\r\n# DPX will run any app or viewport setup we missed (we\r\n# didn't miss any) before starting the runtime.\r\nRuntime.start()\r\n```\r\n\r\n> *Although static-bound, `Application` and `Viewport` can still be instantiated. Doing so will execute any setup procedures required to fully utilize their API. Additionally, keyword arguments passed to the constructor are forwarded to the class' `.configure` method. `Runtime` can also be instantiated, but does not share the mentioned behavior upon instantiation.*\r\n\r\n <br>\r\n <br>\r\n\r\n`Application` and `Viewport` interact solely with the already-existing global state provided by Dear PyGui. Unique to Dear PyPixl, the `Runtime` class manages the \"runtime\" state. It represents the status of the main event loop, and allows users to interact with aspects of the loop (framerate clamping, task queuing, etc.) without needing to implement it themselves. Unlike `Application` and `Viewport` whose API is completely unbound, `Runtime` is partially class-bound, allowing users a level of control through overrides.\r\n\r\nThe `.start` method is used to start the main event loop in Dear PyPixl. It implements a general-purpose event loop using a synchronized fixed time step to decouple task execution from rendering. Tasks can be pushed to the event loop by adding them to `.queue` (an instance of `queue.Queue`), and are de-queued upon execution. When necessary, tasks can re-queue themselves, making them reoccuring tasks. Task execution is limited to a number of real-time milliseconds, set on the `.update_interval` property.\r\n\r\n```python\r\nfrom dearpypixl import *\r\n\r\n\r\ndef printer():\r\n    print('the cake is a lie')\r\n\r\n# this is ran once\r\nRuntime.queue.put(printer)\r\n\r\n\r\nwith Window() as window:\r\n    ...\r\n\r\ndef print_window_state():\r\n    print(window.state())\r\n    Runtime.queue.put(print_window_state)\r\n\r\n# this is re-occuring\r\nRuntime.queue.put(print_window_state)\r\n\r\n# Since task execution is fairly isolated, the\r\n# re-occuring task will not block rendering frames.\r\n# A LONG running task may result in dropped frames,\r\n# though.\r\nRuntime.start()\r\n```\r\n\r\n<br>\r\n\r\nFrame rate can be managed by setting values on `.target_frame_rate` and `.clamp_frame_rate`. When `clamp_frame_rate` is True, the number of frames rendered per second is limited to the value of `target_frame_rate`, as long as it isn't zero or `None`. These values can be updated at any time, even after the event loop has started.\r\n```python\r\nfrom dearpypixl import *\r\n\r\n\r\ndef print_frame_rate():\r\n    print(Runtime.frame_rate())\r\n    Runtime.queue.put(print_frame_rate)\r\n\r\nRuntime.queue.put(print_frame_rate)\r\n\r\n\r\n# limit to 30 fps\r\nRuntime.target_frame_rate = 30\r\nRuntime.clamp_frame_rate  = True\r\n\r\nRuntime.start()\r\n```\r\n\r\n <br>\r\n\r\nAdditionally, the `.start` method features a \"debug mode\". In this mode, Dear PyGui's callback queue is automatically processed without any additional input from the user. This is set to run when the application-level `manual_callback_management` is `True`, or when the `.start` method is called with `debug_aware=True` when using a debugger.\r\n\r\n<br>\r\n\r\n## Modules\r\n\r\nOnly interface types are exposed directly within the `dearpypixl` namespace. Other useful tools and extensions are housed within their respective modules;\r\n* `api`: Contains the lower-level API used by the framework.\r\n* `typing`: Exposes type aliases and protocols used by the library. In addition to the `AppItemType` base class, primitive interface bases, abstract bases, and typed implementations of Dear PyGui's `mvBuffer`, `mvVec4`, and `mvMat4` objects.\r\n* `constants`: Stores static Dear PyGui and Dear PyPixl values/variables as enumerations.\r\n* `events`: Extensions of callback-related interface types and related utilities.\r\n* `theming`: Extensions of theme and font-related interface types.\r\n* `color`, `style`: Contains helper functions for creating specific theme color and style elements.\r\n* `console`: Homebrew stream and console-related item interfaces.\r\n* `grid`: Contains the `Grid` item layout manager, which leverages the ability to explicitly position items to emulate a table-like layout without creating any items.\r\n<br>\r\n\r\n## Limitations, Bugs, & Gachas\r\n\r\nDear PyPixl tries to maintain the same semantics and feel that Dear PyGui has so that it's intuitive coming from Dear PyGui, while being different in ways that only benefit the user. However, there are some situations and use-cases where Dear PyGui and Dear PyPixl and aren't exactly 1-to-1 due to implementation details of the framework, bugs within Dear PyGui, etc. Below explains some of Dear PyPixl's behavior and some consequences that stem as a result.\r\n<br>\r\n\r\n\r\n#### Interfaces are Integers, For Better or Worse\r\n\r\nInterface types are derived from Python's built-in `int` type. This allows interfaces to be used as arguments where item identifiers are expected. In addition, it simplifies the public and internal API's alike in regards to interface and item creation. This unfortunately has a few side effects;\r\n* interface subclasses **cannot declare non-empty `__slots__`**\r\n* interfaces cannot include a `__weakref__` attribute, meaning they **cannot have proxies**\r\n* **`__bool__` cannot be implemented**\r\n\r\nThe last limitation has less to do with `int` and more to do with how Dear PyGui is inspecting identifier values. `__bool__` must operate on the integer value of the interface; hard-to-diagnose bugs *will* occur otherwise. For this reason, Dear PyPixl will throw a `TypeError` when defining an interface class that does not point to `int.__bool__`.\r\n\r\n<br>\r\n\r\n#### Passing Explicit UUID's and Aliases\r\n\r\nItem-creating functions in Dear PyGui all accept a `tag` keyword argument in the form of an item's integer identifier (*uuid*) or string *alias*. While Dear PyPixl does its' best to accomodate, **the basic interface constructor cannot properly manage aliases when the alias is new**. This is in part due to Dear PyPixl's internal design, along with the fact that Dear PyGui's item registry API was never finished. Since the interface's creation logic (`.__new__`) is isolated from the item creation logic (`.__init__`), Dear PyPixl would need to register the new alias to a new uuid in advance. This can be done, however, Dear PyGui does not behave as expected in any scenario.\r\n\r\nAs a workaround, interfaces have the `.aliased` class method, an alternative constructor, which will set the alias onto the item once it is created. Note that this is only necessary when creating the interface would also cause the interfaced item to be created, while aliases of existing items can be passed as normal.\r\n\r\nAs is recommended when using Dear PyGui, users should *not* generate their own integer identifiers for Dear PyPixl interfaces.\r\n\r\n<br>\r\n\r\n#### Typestubs and Dear PyGui Versions\r\n\r\nMost of the objects found in Dear PyPixl are dynamically generated on-import to support the installed Dear PyGui version. In contrast, newer versions of Dear PyPixl will always ship with stubs generated against the most recent (and compatible) version of Dear PyGui available on PyPi at the time of development; unlike code, type stub files cannot be reliably written at runtime. This means that the typing information may not reflect the version of Dear PyGui installed.\r\n\r\nThere are two options to remedy this. The first is to simply use the most up-to-date versions of Dear PyPixl and Dear PyGui. Dear PyGui has been put into \"maintenance mode\" as of version 1.9 - breaking changes are not expected for newer versions. Dear PyPixl will automatically install the newest version of Dear PyGui available on PyPi, provided a compatible version isn't already installed. Alternatively, a new set of stub files can be generated within Dear PyPixl's installation directory by running the library as a top-level script via `python -m dearpypixl`, provided that the user or client has the proper permissions to do so.\r\n\r\n <br>\r\n\r\n# FAQ\r\n\r\n---\r\n\r\n**Q**: **Are there performance implications from Dear PyPixl?**\r\n\r\n**A**: The framework keeps a very low profile where possible, optimizing high-traffic areas of the API to keep overhead to a minimum. For example, creating one million window items via `mvWindowAppItem()` on a low-end machine took ~15.7 seconds (worst-case); only ~1.2 seconds of which contributed to executing Dear PyPixl's code.\r\n\r\n---\r\n\r\n**Q**: **Can I use both Dear PyPixl and Dear PyGui code in my project?**\r\n\r\n**A**: **Yes**.\r\n\r\n---\r\n\r\n**Q**: **I need to conform to an older version (<1.9) of Dear PyGui- will Dear PyPixl still work?**\r\n\r\n**A**: Dear PyPixl is designed to work with most with most Dear PyGui versions. In fact, key components of the core framework were implemented using Dear PyGui v1.8. However, using some of Dear PyPixl's extension modules may throw errors when using older versions of Dear PyGui (in the future, these areas may issue a warning when using such versions). Regardless, you are welcome to try.\r\n\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "An object-oriented, lightweight, modular framework and toolkit for Dear PyGui.",
    "version": "1.2.6",
    "project_urls": {
        "Homepage": "https://github.com/Atlamillias/DearPyPixl"
    },
    "split_keywords": [
        "dearpygui",
        "gui",
        "ui",
        "user-interface"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f290823cf14276548cef1bf0e526b8f1a9d851a8fd5c77a63cd4ba0f985f468",
                "md5": "b5ff1c865f737e84dcc6d77b0e642756",
                "sha256": "d074884424de4ef1478922da17b27d8ec18bded94c3ba5cba648213d8c69e802"
            },
            "downloads": -1,
            "filename": "dearpypixl-1.2.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b5ff1c865f737e84dcc6d77b0e642756",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 188146,
            "upload_time": "2023-11-19T06:01:46",
            "upload_time_iso_8601": "2023-11-19T06:01:46.442027Z",
            "url": "https://files.pythonhosted.org/packages/2f/29/0823cf14276548cef1bf0e526b8f1a9d851a8fd5c77a63cd4ba0f985f468/dearpypixl-1.2.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cae297ecae3a72f6772f6c963233d32c23df31190dd8c98572ec00b8fe2db961",
                "md5": "1bf3d4674480e456e7190e4cfad1175d",
                "sha256": "3aab3758a07031d390d67f36c46e27b0e81ab9a0fce8b56000be8a807a73e82c"
            },
            "downloads": -1,
            "filename": "dearpypixl-1.2.6.tar.gz",
            "has_sig": false,
            "md5_digest": "1bf3d4674480e456e7190e4cfad1175d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 203682,
            "upload_time": "2023-11-19T06:01:48",
            "upload_time_iso_8601": "2023-11-19T06:01:48.601785Z",
            "url": "https://files.pythonhosted.org/packages/ca/e2/97ecae3a72f6772f6c963233d32c23df31190dd8c98572ec00b8fe2db961/dearpypixl-1.2.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-19 06:01:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Atlamillias",
    "github_project": "DearPyPixl",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "dearpypixl"
}
        
Elapsed time: 0.14149s