Commit Graph

8794 Commits

Author SHA1 Message Date
Iain Holmes 9e9240b2a5 2006-06-08 Iain Holmes <iain@openedhand.com>
* configure.ac:
        Add gdk-pixbuf-xlib cflags/libs to clutter libs
        Build the gtk-clutter.pc file.

        * clutter.pc.in:
        Add the gdk-pixbuf-xlib depends.

        * gtk/gtk-clutter.pc.in:
        pkg-config stuff for gtk-clutter

        * gtk/Makefile.am:
        Install gtk-clutter.pc
2006-06-08 22:19:32 +00:00
Matthew Allum 9c572ff45a 2006-06-08 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-main.c:
        * clutter/clutter-private.h:
        * clutter/clutter-stage.c:
        Rework and fix offscreen rendering, also rejig GLX
        context handling, moving mostly into stage.
        Require at least OpenGL 1.2 ( CLAMP_TO_EDGE )

        * clutter/clutter-texture.c:
        Explicity set props on _init() as to avoid nasty can_create
        bug failing miserably in certain situations.
        Switch to CLAMP_TO_EDGE for textures to avoid tile seams.
        Add some more GL error checks.

        * clutter/clutter-label.c:
        Extra debug info

        * configure.ac:
        Require gdk-pixbuf-xlib-2.0
2006-06-08 21:28:05 +00:00
Matthew Allum f00e84606c 2006-06-06 Matthew Allum <mallum@openedhand.com>
* configure.ac:
        Use pkg-config to check for X. Really Check for GL libs.
        Make gtk binding optional. Cleanup a little.

        * Makefile.am:
        * gtk/Makefile.am:
        Make gtk binding optional

        * clutter/clutter-element.c:
        Cleanup a little, notify on size change.

        * clutter/clutter-texture.c:
        Lots of cleanups. Add waste prop. Add filter quality prop.

        * clutter/clutter-clone-texture.c:
        Make object construction simpler to work better with bindings.

        * clutter/clutter-stage.c:
        * clutter/clutter-timeline.c:
        Minor reformating, cleanups.

        * examples/test-text.c: (main):
        Random experimentation
2006-06-06 20:40:40 +00:00
Matthew Allum 17fedd5997 2006-06-06 Matthew Allum <mallum@openedhand.com>
* python/clutter-base.defs:
        Add support for set/get_depth. Fix timeline declaration.
2006-06-06 20:36:19 +00:00
Iain Holmes 615d519d7a 2006-06-06 Iain Holmes <iain@openedhand.com>
* gtk/gtk-clutter.c (size_request): Take the size of the widget from
        the ClutterStage.
        (gtk_clutter_class_init): Hook up size-request
2006-06-06 18:25:55 +00:00
Iain Holmes f0efad6b79 2006-06-06 Iain Holmes <iain@openedhand.com>
* gtk/: Add a gtk widget for clutter.

        * configure.ac: Add GTK checks

        * Makefile.am: Go into gtk/
2006-06-06 18:19:11 +00:00
Matthew Allum f040e5b0da 2006-06-05 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-group.c: (clutter_group_remove):
        Fix parent check.
2006-06-05 21:49:25 +00:00
Matthew Allum 7806e409fb 2006-06-05 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-event.h:
        Remove send_event field. Clutter shouldn't need it.

        * clutter/clutter-main.c: (clutter_dispatch_x_event):
        Dont malloc a new clutter event for each xevent.

        * clutter/clutter-stage.h:
        * clutter/clutter-stage.c: (clutter_stage_class_init),
        (clutter_stage_get_default):
        Dont ref stage from clutter_stage_get_default.

        * examples/super-oh.c: (main):
        Remove some now uneeded debug g_prints
2006-06-05 21:44:13 +00:00
Emmanuele Bassi f6fe9e7412 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 13:38:31 +00:00
Matthew Allum 1d16ef11ca 2006-06-04 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-element.c:
        * clutter/clutter-group.c:
        * clutter/clutter-group.h:
        Work more on depth ( Z ) setting with sorting.

        * clutter/clutter-main.c: (clutter_redraw):
        Experiment with glXWaitVideoSyncSGI. Currently disabled.
2006-06-04 22:09:18 +00:00
Matthew Allum ba09979db0 2006-06-02 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-element.h:
        Add missing _depth() declarations

        * clutter/clutter-main.c:
        * clutter/clutter-main.h:
        * clutter/clutter-private.h:
        * clutter/clutter-stage.c:
        * clutter/clutter-stage.h:
        Rejig GL setup as for stage to support an offscreen property.
        Offscreen support is however a little borked.
2006-06-02 20:24:55 +00:00
Matthew Allum 6c471cb7e1 2006-06-01 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-element.c:
        Fix a snafu in clutter_element_raise ()

        * clutter/clutter-timeline.c:
        * clutter/clutter-timeline.h:
        Add new clutter_timeline_is_playing() method
2006-06-01 21:37:28 +00:00
Matthew Allum 70ed2f4233 2006-05-29 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-color.c: (clutter_color_set):
        Fix bit shifts in clutter color setters.
2006-05-29 20:01:49 +00:00
Matthew Allum 342ea125f1 Merge gobject-branch into trunk 2006-05-29 08:59:36 +00:00
Matthew Allum c936f265b0 more select hacking 2005-05-27 14:02:39 +00:00
Matthew Allum 8f30e4e0c1 much select hacking 2005-05-23 21:21:50 +00:00
Matthew Allum 956008e6c3 playback fixes 2005-05-17 10:12:10 +00:00
Matthew Allum 55fdb9bc79 much 2005-05-16 22:38:57 +00:00
Matthew Allum 9c9dad903c Add initial animator zoom code 2005-05-15 23:16:19 +00:00
Matthew Allum 3838ffe065 Much, see ChangeLog 2005-05-14 10:19:39 +00:00
Matthew Allum 24cefa8d2a gl crash fixes 2005-05-11 12:52:01 +00:00
Matthew Allum f085407d41 Video widget updates 2005-05-06 17:41:15 +00:00
Matthew Allum 246e6bdd5d hack buttons some more 2005-04-29 16:44:17 +00:00
Matthew Allum 64355c0e48 video improvements + other tweaks 2005-04-27 22:17:45 +00:00
Matthew Allum 26decbdb97 Add broken gst video widget 2005-04-26 08:56:53 +00:00
Matthew Allum 298f878086 Lots, see ChangeLog 2005-04-22 18:03:55 +00:00
Matthew Allum 3b342b81b7 autotool rejig 2005-04-13 19:49:56 +00:00
Matthew Allum d95ce956ee another random rejig commit 2005-04-13 17:39:40 +00:00
Matthew Allum 214935cba7 another random commit 2005-04-13 17:36:43 +00:00
Matthew Allum 69e830eea4 random commit to help rejig stuff around 2005-04-13 17:36:17 +00:00
Matthew Allum f016f09792 Add list widget + cleanups 2005-04-07 22:46:43 +00:00
Matthew Allum 668890821f Add basic toolkit infrastructure 2005-04-03 16:13:08 +00:00
Matthew Allum a4ce71bb79 Implemented scrolling 2005-03-31 18:19:25 +00:00
Matthew Allum 251eacc592 More renaming 2005-03-30 16:55:06 +00:00
Matthew Allum c5a9ee7914 rename CltrImage 2005-03-30 16:52:02 +00:00
Matthew Allum 99bb51a5be Added texture tiling code 2005-03-29 23:26:36 +00:00
Matthew Allum bc2e4f9b70 Add threaded loader 2005-03-27 20:12:19 +00:00
Matthew Allum a731e612b6 See ChangeLog 2005-03-25 17:22:10 +00:00
Matthew Allum 22acd39f0f refactoring 2005-03-24 16:46:49 +00:00
Matthew Allum 1ec99cb5e1 tweakage 2005-03-23 21:09:57 +00:00
Matthew Allum 2a24ed964a more fixes 2005-03-23 18:48:27 +00:00
Matthew Allum 0e19d99457 make grid work 2005-03-23 17:33:37 +00:00
Matthew Allum 0809a5eb5c Add glib event loop 2005-03-22 17:25:52 +00:00
Matthew Allum aa2146acd3 Initial Import 2005-03-22 14:53:51 +00:00