New commits:
http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=756cd707b1a548b77f1a1e9f03b46362bbf14f26
commit 756cd707b1a548b77f1a1e9f03b46362bbf14f26
Author: Denis Oliver Kropp <[email protected]>
Date:   Sun Oct 31 10:20:48 2010 +0100

    Release 1.4.8 in old manner.

 ChangeLog |  159 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 NEWS      |   63 ++++++++++++++++++++++++
 2 files changed, 222 insertions(+), 0 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=23e31b5160a6da3f5ad80bbedde303733b918847
commit 23e31b5160a6da3f5ad80bbedde303733b918847
Author: Denis Oliver Kropp <[email protected]>
Date:   Sat Oct 30 16:41:27 2010 +0200

    options: Added max-axis-rate to limit the amount of input axis events.

 src/misc/conf.c |   16 ++++++++++++++++
 src/misc/conf.h |    2 ++
 2 files changed, 18 insertions(+), 0 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=cdd0f443c23ed28acfa5b419bfa387e5c0ff1a1a
commit cdd0f443c23ed28acfa5b419bfa387e5c0ff1a1a
Author: Denis Oliver Kropp <[email protected]>
Date:   Sat Oct 30 16:38:23 2010 +0200

    windows: Add DWET_UPDATE for sending update events (upon Flip).
    
    Send DWET_UPDATE events in default window manager module when the
    application does a Flip on the window surface.
    
    This way another process can capture the output of the application.

 include/directfb.h   |    4 +++-
 wm/default/default.c |   22 ++++++++++++++++++++++
 2 files changed, 25 insertions(+), 1 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=d6bc0e52907fab783ca2de8e4f5cf29c23787089
commit d6bc0e52907fab783ca2de8e4f5cf29c23787089
Author: Denis Oliver Kropp <[email protected]>
Date:   Sat Oct 30 16:18:13 2010 +0200

    windows: Extended cursor capabilities for advanced input devices.
    
    Add DFBWindowCursorFlags (per window) with the following definitions:
      DWCF_RELATIVE   receive relative coordinates instead of absolute
      DWCF_EXPLICIT   if window has focus it's also the pointer window
      DWCF_UNCLIPPED  pointer is not clipped against stack boundaries
      DWCF_TRAPPED    pointer is clipped against the window boundaries
      DWCF_FIXED      pointer does not move at all, but still may send relative 
motion
      DWCF_INVISIBLE  cursor opacity is zero when this window is pointer window
    
    Add DWEF_RELATIVE to DFBWindowEventFlags to indicate x/y are relative 
coordinates.
    
    Add IDirectFBWindow::SetCursorFlags() to set the per window 
DFBWindowCursorFlags.
    
    Add IDirectFBWindow::SetCursorResolution() to define per window coordinate 
space,
    e.g. SetCursorResolution( 100, 300 ) will always send 50,150 in the middle 
of the
    window.
    
    Add IDirectFBWindow::SetCursorPosition() to warp the pointer relative to the
    window based on the per window coordinate space if set.
    
    --
    
    Add CWCF_CURSOR_FLAGS and CWCF_CURSOR_RESOLUTION to CoreWindowConfigFlags.
    
    Add cursor_flags and cursor_resolution to CoreWindowConfig.
    
    --
    
    Add dfb_wm_set_cursor_position() called by 
IDirectFBWindow::SetCursorPosition().
    
    --
    
    Add SetCursorPosition() to WMFuncs.
    Add wm_set_cursor_position() to wm module header and set it for 
SetCursorPosition().
    
    --
    
    Removed setting of cx and cy from dfb_window_post_event(), instead this is 
done
    in window manager modules now.
    
    --
    
    Set cx and cy of window events in default window manager module now.
    
    Add unimplemented wm_set_cursor_position() to default window manager module.

 include/directfb.h            |   46 ++++++++++++++++++++++++++-
 src/core/windows.c            |    9 -----
 src/core/windows.h            |    7 +++-
 src/core/wm.c                 |   20 +++++++++++
 src/core/wm.h                 |   10 ++++++
 src/core/wm_module.h          |    7 ++++
 src/windows/idirectfbwindow.c |   71 +++++++++++++++++++++++++++++++++++++++++
 wm/default/default.c          |   18 ++++++++++
 8 files changed, 177 insertions(+), 11 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=d30be1d2d67918b2c279529add242e45202b90bd
commit d30be1d2d67918b2c279529add242e45202b90bd
Author: Denis Oliver Kropp <[email protected]>
Date:   Sat Oct 30 16:07:31 2010 +0200

    windows: Added IDirectFBWindow::SendEvent() to send a window event via a 
window.

 include/directfb.h            |   12 ++++++++++++
 src/windows/idirectfbwindow.c |   24 ++++++++++++++++++++++++
 2 files changed, 36 insertions(+), 0 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=bc1b2b6771faadc105ade47d32c51a4ccfa664a3
commit bc1b2b6771faadc105ade47d32c51a4ccfa664a3
Author: Denis Oliver Kropp <[email protected]>
Date:   Sat Oct 30 14:05:14 2010 +0200

    layer: Added IDirectFBDisplayLayer::GetWindowByResourceID().
    
    It returns the first window with a surface matching that resource id.

 include/directfb.h                  |   14 ++++++
 src/display/idirectfbdisplaylayer.c |   76 +++++++++++++++++++++++++++++++++++
 2 files changed, 90 insertions(+), 0 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=3e14efced02e4fc5301d00589ea6136ff1e14a41
commit 3e14efced02e4fc5301d00589ea6136ff1e14a41
Author: Denis Oliver Kropp <[email protected]>
Date:   Sat Oct 30 13:18:45 2010 +0200

    fusion: Don't assert that msg_size is greater than zero.
    
    msg_size may be zero which means the actual message size is passed
    with each dispatch call.

 lib/fusion/reactor.c |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=d4b82fcc5a6395b8a506ebd712b0bfd050588260
commit d4b82fcc5a6395b8a506ebd712b0bfd050588260
Author: Denis Oliver Kropp <[email protected]>
Date:   Sat Oct 30 13:11:01 2010 +0200

    LinoType: Added new font module using LinoType library.

 configure.in                                  |   15 +
 interfaces/IDirectFBFont/Makefile.am          |   19 +-
 interfaces/IDirectFBFont/idirectfbfont_lino.c | 1311 +++++++++++++++++++++++++
 3 files changed, 1344 insertions(+), 1 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=04eb85c1b93b151ac566897f88e8207302ec21fe
commit 04eb85c1b93b151ac566897f88e8207302ec21fe
Author: Denis Oliver Kropp <[email protected]>
Date:   Sat Oct 30 13:05:57 2010 +0200

    fonts: Added font rotation based on initial patch from Phil Endecott.
    
    Add DFDESC_ROTATION to DFBFontDescriptionFlags.
    Add rotation to DFBFontDescription.
    Add DFB_DEGREES and DFB_RADIANS convenience macros.
    Add IDirectFBFont::GetLineSpacingVector() and GetGlyphExtentsXY().

 include/directfb.h                             |   48 ++++++-
 interfaces/IDirectFBFont/idirectfbfont_dgiff.c |   20 ++-
 interfaces/IDirectFBFont/idirectfbfont_ft2.c   |   83 +++++++++--
 src/core/fonts.h                               |   27 ++--
 src/core/gfxcard.c                             |    3 +-
 src/display/idirectfbsurface.c                 |   56 +++++---
 src/media/idirectfbfont.c                      |  185 +++++++++++++++++++++---
 7 files changed, 347 insertions(+), 75 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=291ce79f30e46978101661d33e24819e48be1e02
commit 291ce79f30e46978101661d33e24819e48be1e02
Author: Denis Oliver Kropp <[email protected]>
Date:   Sat Oct 30 12:56:21 2010 +0200

    keyboard: Extend custom key definitions from 100 to 255.

 include/directfb_keyboard.h |  158 ++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 157 insertions(+), 1 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=b3aa46bbf436f14d3dde7ee13ca40dda9a4a9630
commit b3aa46bbf436f14d3dde7ee13ca40dda9a4a9630
Author: Sven Neumann <[email protected]>
Date:   Thu Oct 28 22:56:25 2010 +0200

    fbdev: fix issues with fbdevMuckOut()
    
    Fix debug macros so the code compiles and works when compiled
    with debug enabled.

 systems/fbdev/fbdev_surface_pool.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=f8a5f871f0d54f0552590b41275f5656514c98d1
commit f8a5f871f0d54f0552590b41275f5656514c98d1
Author: Denis Oliver Kropp <[email protected]>
Date:   Thu Oct 28 00:51:25 2010 +0200

    fbdev: Add MuckOut implementation for surfaces in fbdev pool using surface 
manager displace.

 systems/fbdev/fbdev_surface_pool.c |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=5c44f6a81c32880b3d92474ac98dd15a542d4149
commit 5c44f6a81c32880b3d92474ac98dd15a542d4149
Author: Denis Oliver Kropp <[email protected]>
Date:   Wed Oct 27 21:46:52 2010 +0200

    font: Try to mmap the font file before loading all of its contents via data 
buffer.

 src/media/idirectfbfont.c |  139 ++++++++++++++++++++++++++++++++-------------
 src/media/idirectfbfont.h |    3 +
 2 files changed, 103 insertions(+), 39 deletions(-)

http://git.directfb.org/?p=core/DirectFB.git;a=commit;h=268ef9eafa3b02340ddecd6a06e4dd8bd79b21ff
commit 268ef9eafa3b02340ddecd6a06e4dd8bd79b21ff
Author: Denis Oliver Kropp <[email protected]>
Date:   Tue Oct 26 22:59:48 2010 +0200

    default-wm: fixed wm_window_lookup to return DFB_IDNOTFOUND when window 
with specified ID wasn't found

 wm/default/default.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

_______________________________________________
directfb-cvs mailing list
[email protected]
http://mail.directfb.org/cgi-bin/mailman/listinfo/directfb-cvs

Reply via email to