2006-06-05 Emmanuele Bassi <ebassi@openedhand.com>
* clutter-color.h:
* clutter-color.c: Reimplement ClutterColor as a boxed type;
add convenience API for color handling, like: add, subtract,
shade, HSL color-space conversion, packing and unpacking.
* clutter-private.h: Update ClutterMainContext, and export the
main context pointer here.
* clutter-rectangle.h:
* clutter-rectangle.c: Update the color-related code; make
clutter_rectangle_new() and empty constructor and provide
clutter_rectangle_new_with_color(); provide color setter
and getter API.
* clutter-label.h:
* clutter-label.c: Rename the "font" property to "font-name";
update the color-related code to the new ClutterColor object;
rename clutter_label_new() to clutter_label_new_with_text(),
and add setters and getters for the properties.
* clutter-marshal.list: Add VOID:OBJECT and VOID:BOXED marshallers
generators.
* clutter-stage.h:
* clutter-stage.c: Rework the API: provide a default constructor
for a singleton object, named clutter_stage_get_default(), which
supercedes the clutter_stage() function in clutter-main; provide
new events: button-press-event, button-release-event,
key-press-event and key-release-event; update the color-related
code;
(clutter_stage_snapshot): Allow negative width and height when
taking a snapshot (meaning: use full width/height).
(clutter_stage_get_element_at_pos): Rename clutter_stage_pick().
* clutter-element.c (clutter_element_paint): Clean up the
stage and color related code.
* clutter-event.h:
* clutter-event.c: Add generic ClutterAnyEvent type; add
clutter_event_new(), clutter_event_copy() and clutter_event_free();
make ClutterEvent a boxed type.
* clutter-main.h:
* clutter-main.c: Remove clutter_stage(); add clutter_main_quit(),
for cleanly quitting from clutter_main(); add multiple mainloops
support; allocate the ClutterCntx instead of adding it to the
stack; re-work the ClutterEvent dispatching.
* clutter-group.c (clutter_group_add), (clutter_group_remove): Keep
a reference on the element when added to a ClutterGroup.
* examples/rects.py
* examples/test.c:
* examples/test-text.c:
* examples/video-cube.c:
* examples/super-oh.c:
* examples/test-video.c: Update.
2006-06-05 09:38:31 -04:00
|
|
|
2006-06-05 Emmanuele Bassi <ebassi@openedhand.com>
|
|
|
|
|
|
|
|
* python/clutter-base-types.defs:
|
|
|
|
* python/clutter-base.defs:
|
|
|
|
* python/clutter.override: Wrap new API and objects.
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
2006-05-27 Emmanuele Bassi <ebassi@openedhand.com>
|
|
|
|
|
|
|
|
* python/clutter-base.defs: Make static functions appear like
|
|
|
|
package methods, e.g.: clutter_main() is clutter.main() and
|
|
|
|
not clutter.clutter_main(). Changed functions are:
|
|
|
|
C name Python name
|
|
|
|
- clutter_main - clutter.main
|
|
|
|
- clutter_stage - clutter.stage
|
|
|
|
- clutter_want_debug - clutter.want_debug
|
|
|
|
- clutter_redraw - clutter.redraw
|
|
|
|
- clutter_threads_enter - clutter.threads_enter
|
|
|
|
- clutter_threads_leave - clutter.threads_leave
|
|
|
|
|
|
|
|
* python/clutter.override: Ignore all X11 and GL related
|
|
|
|
functions, as we don't have type definitions for them; fix typos
|
|
|
|
and cut-and-paste errors; make the threads_enter and main static
|
|
|
|
function use the pygobject threading facilities.
|
|
|
|
|
|
|
|
* Makefile.am: Rework the build system. The defs files have been
|
|
|
|
split in two: clutter-base-types.def for the type declarations
|
|
|
|
and clutter-base.defs for the methods and functions. The python
|
|
|
|
glue code depends on two auto-generated files: clutter.defs and
|
|
|
|
clutter-types.defs; these two files includes the clutter-base
|
|
|
|
files. If the API changes, run "make update-defs": it will
|
|
|
|
create a "clutter-api.defs" which should be hand-edited and
|
|
|
|
the new sections added to the clutter-base files. This is needed
|
|
|
|
because we do some mangling of the namespace and static functions
|
|
|
|
names, so we can't rely on the h2defs generator.
|
|
|
|
|
|
|
|
2006-05-27 Emmanuele Bassi <ebassi@openedhand.com>
|
|
|
|
|
|
|
|
API coverage:
|
|
|
|
- global functions: 71.43% (10/14)
|
|
|
|
- methods: 95.40% (83/87)
|
|
|
|
|
|
|
|
* python/clutter.override: Implement bindings for the missing
|
|
|
|
ClutterTexture methods:
|
|
|
|
- get_base_size
|
|
|
|
- get_n_tiles
|
|
|
|
- get_x_tile_detail
|
|
|
|
- get_y_tile_detail
|
|
|
|
|
|
|
|
* python/clutter.override: Implement the ClutterGroup.add_many
|
|
|
|
method.
|
|
|
|
|
|
|
|
2006-05-26 Emmanuele Bassi <ebassi@openedhand.com>
|
|
|
|
|
|
|
|
* python/clutter-base.defs:
|
|
|
|
* python/clutter-base-types.defs:
|
|
|
|
* python/clutter.override: Fix ClutterGeometry bindings;
|
|
|
|
implement ClutterElementBox bindings.
|
|
|
|
|
|
|
|
* python/Makefile.am: Use variables instead of hard-coded
|
|
|
|
file names.
|
|
|
|
|