libui/docs/lifetimes.md

65 lines
3.8 KiB
Markdown
Raw Normal View History

2015-04-19 00:29:22 -05:00
# Object lifetimes
Know them.
One of the more annoying parts of libui is that it has to juggle an OS control handle and at least one C data structure for a single uiControl, uiParent, uiWindow, etc. To that end, this document exists to lay the ground rules for object lifetimes.
## To end programmers
2015-04-19 00:37:59 -05:00
TODO complain loudly if rules broken
TODO complain loudly if Destroying a control with a parent
2015-04-19 16:08:03 -05:00
The rules for lifetimes are simple:
- Removing a control from a container (for instance, with `uiBoxDelete()` or `uiTabDeletePage()`) does NOT destroy the control.
- Destroying a container (`uiWindowDestroy()`, `uiControlDestroy()` on a uiBox or uiTab, et.c) WILL destroy children.
- Otherwise, a control stays alive.
- It is an error to destroy a control while it is part of a container.
- It is an error to add a control to more than one container at once.
Currently, breaking these rules results in undefined behavior. Error checks will be added soon.
2015-04-19 00:29:22 -05:00
## Implementation
Note that control implementations generally don't need to worry about backend-specific information; these are handled by the backends's convenience functions. If you bypass those, however, you *will* need to worry.
### Backend-Agnostic (uiBox, uiGrid)
### Windows
2015-04-19 16:08:03 -05:00
Windows has no reference counting for window handles. The only situations where a window handle can be destroyed are
- with a call to `DestroyWindow()`, or
- by `DefWindowProc()` if it receives a `WM_CLOSE` message
The destruction process is simple:
1. Any owned windows are destroyed. ([Source](http://stackoverflow.com/questions/29419291/is-my-subclassing-common-controls-tooltip-destroying-itself-in-wm-destroy-before))
2. The window receives `WM_DESTROY`.
3. Any child windows are destroyed.
4. The window receives `WM_NCDESTROY`.
2015-04-19 00:29:22 -05:00
### Unix
2015-04-19 16:08:03 -05:00
All GtkWidgets are initially created "floating" (referenceless but unowned). When adding to a GtkContainer, the reference count is increased. When removing from a GtkContainer, the reference count is decreased. When the reference count drops back to zero, the widget is destroyed. Since containers are also widgets, when a container is destroyed, its children are removed (TODO verify this).
An explicit call to `gtk_widget_destroy()` will immediately destroy the widget regardless of any refcounts. Container removal uses the refcounting functions `g_object_unref()`, not `gtk_widget_destroy()`.
What these rules mean is that in the general case, you create widgets, add them to containers (which are themselves widgets, including GtkWindow), then destroy the uppermost container in the widget tree (usually a GtkWindow) to trigger the destruction of all the widgets.
TODO describe what we need to do
TODO remove lifetimes.c?
2015-04-19 00:29:22 -05:00
### Mac OS X
2015-04-19 16:08:03 -05:00
While Cocoa is a reference-counted object environment, simple reference counting of AppKit objects does not really work, and monitoring reference counts for lifetimes is dicouraged. Why? Strong references that we may not know about (think internal bookkeeping or third-party tools). However, if we pretend these additional references don't exist, the lifetime view beccomes similar to the GTK+ one above.
When a view is created, it is created in a state where it is initially unowned; the documentation says we have to add it to the view hierarchy before we can use it. When a view is added to a superview, its reference count goes up (*retained*). When a view is removed from its superview, its reference count goes down (*released*). Once this virtual reference count goes to zero, the view is no longer safe to use.
In other words, when we create a view, add it to a superview, then remove it again, we should consider the view destroyed.
In the case of NSWindow, there's a property `releasedWhenClosed` that determines if a NSWindow is released when it is closed. (TODO before or after `windowWillClose`?)
2015-04-19 00:29:22 -05:00
do the whole "keep a reference around" thing
TODO drop the deleted controls view