## objectspace-to-object.pkg
#
# For the big picture see the imp dataflow diagrams in
#
#
src/lib/x-kit/xclient/src/window/xclient-ximps.pkg#
# Here we define the management interface which all objectspace look-imps export to
#
#
src/lib/x-kit/widget/space/object/objectspace-imp.pkg# Compiled by:
#
src/lib/x-kit/widget/xkit-widget.sublibstipulate
include package threadkit; # threadkit is from
src/lib/src/lib/thread-kit/src/core-thread-kit/threadkit.pkg #
package g2d = geometry2d; # geometry2d is from
src/lib/std/2d/geometry2d.pkgherein
# This port is implemented in:
#
#
src/lib/x-kit/widget/xkit/theme/widget/default/look/object-imp.pkg #
package objectspace_to_object {
#
Objectspace_To_Object
=
{ id: Id, # Unique id to facilitate storing objectspace_to_object instances in indexed datastructures like red-black trees.
#
pass_draw_done_flag: Replyqueue -> (Void -> Void) -> Void,
pass_something: Replyqueue -> (Int -> Void) -> Void,
do_something: Int -> Void
};
}; # package objectspace_to_object;
end;