New branch 'webkitdfb-r100547' available with the following commits:
http://git.directfb.org/?p=libs/WebKitDFB.git;a=commit;h=c044e47d66ec7359e13fbc1301da684654a21e84
commit c044e47d66ec7359e13fbc1301da684654a21e84
Author: Denis Oliver Kropp <[email protected]>
Date:   Fri Jun 8 22:11:28 2012 +0200

    WebKitDFB checkin

 CONFIG                                             |   23 +
 GNUmakefile.am                                     |   45 +-
 README.DirectFB                                    |   23 +
 Source/JavaScriptCore/GNUmakefile.list.am          |   10 +-
 Source/JavaScriptCore/wtf/Platform.h               |   11 +-
 Source/JavaScriptCore/wtf/dfb/MainThreadDFB.cpp    |   52 +
 Source/JavaScriptCore/wtf/dfb/ThreadingDFB.cpp     |  249 ++++
 Source/WebCore/GNUmakefile.am                      |   38 +-
 Source/WebCore/GNUmakefile.list.am                 |  211 +++-
 .../accessibility/dfb/AccessibilityObjectDFB.cpp   |   34 +
 Source/WebCore/bindings/js/ScriptControllerDFB.cpp |   47 +
 Source/WebCore/dom/Document.cpp                    |    3 +-
 Source/WebCore/dom/Element.h                       |    3 +-
 Source/WebCore/page/Frame.cpp                      |    2 +-
 Source/WebCore/page/dfb/DragControllerDFB.cpp      |   76 ++
 Source/WebCore/page/dfb/EventHandlerDFB.cpp        |  155 +++
 Source/WebCore/page/dfb/FrameDFB.cpp               |   43 +
 Source/WebCore/platform/Cursor.h                   |    2 +-
 Source/WebCore/platform/DragData.h                 |    3 +
 Source/WebCore/platform/DragImage.h                |   12 +
 Source/WebCore/platform/FileSystem.h               |   12 +-
 Source/WebCore/platform/PlatformKeyboardEvent.h    |    8 +
 Source/WebCore/platform/PlatformMouseEvent.h       |   13 +
 Source/WebCore/platform/PlatformWheelEvent.h       |    9 +
 Source/WebCore/platform/Widget.h                   |    4 +
 Source/WebCore/platform/dfb/ClipboardDFB.cpp       |  237 ++++
 Source/WebCore/platform/dfb/ClipboardDFB.h         |   74 ++
 Source/WebCore/platform/dfb/ContextMenuDFB.cpp     |   99 ++
 Source/WebCore/platform/dfb/ContextMenuItemDFB.cpp |  111 ++
 Source/WebCore/platform/dfb/CookieJarDFB.cpp       |   70 ++
 Source/WebCore/platform/dfb/CursorDFB.cpp          |   68 ++
 Source/WebCore/platform/dfb/DragDataDFB.cpp        |  110 ++
 Source/WebCore/platform/dfb/DragImageDFB.cpp       |   74 ++
 Source/WebCore/platform/dfb/EventLoopDFB.cpp       |   67 +
 Source/WebCore/platform/dfb/FileChooserDFB.cpp     |   38 +
 Source/WebCore/platform/dfb/FileSystemDFB.cpp      |  320 +++++
 .../WebCore/platform/dfb/GeolocationServiceDFB.cpp |   80 ++
 .../WebCore/platform/dfb/GeolocationServiceDFB.h   |   56 +
 Source/WebCore/platform/dfb/Globals.cpp            |   74 ++
 Source/WebCore/platform/dfb/Globals.h              |   55 +
 Source/WebCore/platform/dfb/KeyboardCodes.h        |  544 +++++++++
 Source/WebCore/platform/dfb/LanguageDFB.cpp        |   51 +
 .../WebCore/platform/dfb/LocalizedStringsDFB.cpp   |  550 +++++++++
 Source/WebCore/platform/dfb/LoggingDFB.cpp         |   48 +
 .../WebCore/platform/dfb/MIMETypeRegistryDFB.cpp   |   92 ++
 Source/WebCore/platform/dfb/PasteboardDFB.cpp      |  172 +++
 .../platform/dfb/PlatformKeyboardEventDFB.cpp      |  551 +++++++++
 .../WebCore/platform/dfb/PlatformMouseEventDFB.cpp |  149 +++
 .../WebCore/platform/dfb/PlatformWheelEventDFB.cpp |   96 ++
 Source/WebCore/platform/dfb/PopupMenuDFB.cpp       |   65 +
 Source/WebCore/platform/dfb/PopupMenuDFB.h         |   53 +
 Source/WebCore/platform/dfb/RenderThemeDFB.cpp     |  210 ++++
 Source/WebCore/platform/dfb/RenderThemeDFB.h       |   72 ++
 Source/WebCore/platform/dfb/ScreenDFB.cpp          |   99 ++
 Source/WebCore/platform/dfb/ScrollbarThemeDFB.cpp  |  183 +++
 Source/WebCore/platform/dfb/ScrollbarThemeDFB.h    |   55 +
 Source/WebCore/platform/dfb/SearchPopupMenuDFB.cpp |   56 +
 Source/WebCore/platform/dfb/SearchPopupMenuDFB.h   |   44 +
 Source/WebCore/platform/dfb/SharedBufferDFB.cpp    |   53 +
 Source/WebCore/platform/dfb/SharedTimerDFB.cpp     |  106 ++
 Source/WebCore/platform/dfb/SoundDFB.cpp           |   36 +
 Source/WebCore/platform/dfb/SystemTimeDFB.cpp      |   41 +
 Source/WebCore/platform/dfb/TemporaryLinkStubs.cpp |   96 ++
 Source/WebCore/platform/dfb/WidgetDFB.cpp          |  155 +++
 Source/WebCore/platform/graphics/BitmapImage.h     |    8 +
 Source/WebCore/platform/graphics/Color.h           |    9 +
 .../WebCore/platform/graphics/FontPlatformData.h   |    6 +-
 Source/WebCore/platform/graphics/GlyphBuffer.h     |    2 +
 .../WebCore/platform/graphics/GraphicsContext.cpp  |    2 +-
 Source/WebCore/platform/graphics/GraphicsContext.h |    2 +
 Source/WebCore/platform/graphics/ImageBufferData.h |    2 +
 Source/WebCore/platform/graphics/ImageSource.h     |   10 +-
 Source/WebCore/platform/graphics/IntPoint.h        |    9 +
 Source/WebCore/platform/graphics/IntRect.h         |    9 +
 Source/WebCore/platform/graphics/IntSize.h         |    9 +
 Source/WebCore/platform/graphics/MediaPlayer.cpp   |    2 +-
 Source/WebCore/platform/graphics/Path.h            |    5 +
 Source/WebCore/platform/graphics/Pattern.h         |    2 +
 .../platform/graphics/cairodfb/FontCairoDFB.cpp    |   79 ++
 .../platform/graphics/cairodfb/ImageCairoDFB.cpp   |   61 +
 Source/WebCore/platform/graphics/dfb/ColorDFB.cpp  |   54 +
 Source/WebCore/platform/graphics/dfb/DFBPath.h     |   90 ++
 .../WebCore/platform/graphics/dfb/FontCacheDFB.cpp |   78 ++
 .../graphics/dfb/FontCustomPlatformData.cpp        |   50 +
 .../platform/graphics/dfb/FontCustomPlatformData.h |   47 +
 Source/WebCore/platform/graphics/dfb/FontDFB.cpp   |  161 +++
 .../platform/graphics/dfb/FontPlatformData.h       |  121 ++
 .../platform/graphics/dfb/FontPlatformDataDFB.cpp  |  100 ++
 .../platform/graphics/dfb/GlyphPageTreeNodeDFB.cpp |   59 +
 .../WebCore/platform/graphics/dfb/GradientDFB.cpp  |   73 ++
 .../platform/graphics/dfb/GraphicsContextDFB.cpp   |  746 ++++++++++++
 Source/WebCore/platform/graphics/dfb/IconDFB.cpp   |   69 ++
 .../platform/graphics/dfb/ImageBufferDFB.cpp       |  202 ++++
 .../platform/graphics/dfb/ImageBufferDataDFB.h     |   46 +
 Source/WebCore/platform/graphics/dfb/ImageDFB.cpp  |  173 +++
 .../WebCore/platform/graphics/dfb/IntPointDFB.cpp  |   48 +
 .../WebCore/platform/graphics/dfb/IntRectDFB.cpp   |   48 +
 .../WebCore/platform/graphics/dfb/IntSizeDFB.cpp   |   48 +
 Source/WebCore/platform/graphics/dfb/PathDFB.cpp   |  226 ++++
 .../platform/graphics/dfb/SimpleFontDataDFB.cpp    |  147 +++
 .../platform/graphics/dfb/StillImageDFB.cpp        |  125 ++
 .../WebCore/platform/graphics/dfb/StillImageDFB.h  |   63 +
 .../graphics/freetype/FontPlatformDataFreeType.cpp |    4 +-
 .../graphics/gstreamer/ImageGStreamerCairo.cpp     |    3 +
 .../image-decoders/dfb/ImageDecoderDFB.cpp         |  114 ++
 .../platform/text/dfb/TextBreakIteratorDFB.cpp     |  217 ++++
 .../text/dfb/TextBreakIteratorInternalICUDFB.cpp   |   37 +
 Source/WebCore/plugins/dfb/PluginDataDFB.cpp       |   65 +
 Source/WebCore/plugins/dfb/PluginPackageDFB.cpp    |  157 +++
 Source/WebCore/plugins/dfb/PluginViewDFB.cpp       |  197 +++
 Source/WebKit/dfb/GNUmakefile.am                   |  602 ++++++++++
 Source/WebKit/dfb/JSCore.gir.in                    |   20 +
 .../WebKit/dfb/WebCoreSupport/ChromeClientDFB.cpp  |  619 ++++++++++
 Source/WebKit/dfb/WebCoreSupport/ChromeClientDFB.h |  172 +++
 .../dfb/WebCoreSupport/ContextMenuClientDFB.cpp    |   92 ++
 .../dfb/WebCoreSupport/ContextMenuClientDFB.h      |   56 +
 .../dfb/WebCoreSupport/DeviceMotionClientDFB.cpp   |   72 ++
 .../dfb/WebCoreSupport/DeviceMotionClientDFB.h     |   45 +
 .../WebCoreSupport/DeviceOrientationClientDFB.cpp  |   72 ++
 .../WebCoreSupport/DeviceOrientationClientDFB.h    |   45 +
 Source/WebKit/dfb/WebCoreSupport/DragClientDFB.cpp |   71 ++
 Source/WebKit/dfb/WebCoreSupport/DragClientDFB.h   |   46 +
 Source/WebKit/dfb/WebCoreSupport/EditCommandDFB.h  |   54 +
 .../WebKit/dfb/WebCoreSupport/EditorClientDFB.cpp  |  607 ++++++++++
 Source/WebKit/dfb/WebCoreSupport/EditorClientDFB.h |  130 ++
 .../dfb/WebCoreSupport/FrameLoaderClientDFB.cpp    | 1268 ++++++++++++++++++++
 .../dfb/WebCoreSupport/FrameLoaderClientDFB.h      |  254 ++++
 .../dfb/WebCoreSupport/FrameNetworkingContextDFB.h |   45 +
 .../dfb/WebCoreSupport/InspectorClientDFB.cpp      |   72 ++
 .../WebKit/dfb/WebCoreSupport/InspectorClientDFB.h |   53 +
 .../dfb/WebCoreSupport/TextCheckerClientDFB.cpp    |   94 ++
 .../dfb/WebCoreSupport/TextCheckerClientDFB.h      |   59 +
 Source/WebKit/dfb/WebView.cpp                      |   76 ++
 Source/WebKit/dfb/WebView.h                        |   57 +
 Source/WebKit/dfb/docs/GNUmakefile.am              |  104 ++
 Source/WebKit/dfb/docs/GNUmakefile.in              |  792 ++++++++++++
 Source/WebKit/dfb/docs/version.xml.in              |    1 +
 Source/WebKit/dfb/docs/webkitenvironment.xml       |   98 ++
 Source/WebKit/dfb/gdom/ConvertToGCharPrivate.h     |   48 +
 Source/WebKit/dfb/javascriptcoregtk.pc.in          |   11 +
 Source/WebKit/dfb/org.webkitgtk.gschema.xml.in     |   32 +
 Source/WebKit/dfb/resources/error.html             |   60 +
 Source/WebKit/dfb/tests/testdfb.cpp                |  351 ++++++
 Source/WebKit/dfb/webkit.pc.in                     |   11 +
 Source/WebKit/dfb/webkit/webkitdefines.h           |   43 +
 Source/WebKit/dfb/webkit/webkitglobalsprivate.h    |   37 +
 Source/WebKit/dfb/webkit/webkitmarshal.h           |   48 +
 Source/WebKit/dfb/webkit/webkitprivate.h           |   33 +
 Source/WebKit/dfb/webkit/webkitrender.cpp          |   47 +
 Source/WebKit/dfb/webkit/webkitrender.h            |   32 +
 Source/WebKit/dfb/webkit/webkitversion.cpp         |   66 +
 Source/WebKit/dfb/webkit/webkitversion.h.in        |   54 +
 Source/WebKit/dfb/webkitdfb.cpp                    |   41 +
 Source/WebKit/dfb/webkitdfb.h                      |   43 +
 Source/WebKit/dfb/webkitmarshal.list               |   25 +
 Source/WebKit/dfb/webview.cpp                      |  685 +++++++++++
 Source/WebKit/dfb/webview.h                        |  144 +++
 Source/autotools/webkit.m4                         |   17 +
 Tools/GNUmakefile.am                               |   59 +
 Tools/Scripts/build-jsc                            |    2 +
 Tools/Scripts/build-webkit                         |    5 +-
 Tools/Scripts/webkitdirs.pm                        |   50 +-
 Tools/WebKitDFB/main.c                             |  311 +++++
 Tools/WebKitDFB/simple.svg                         |   15 +
 Tools/WebKitDFB/text.html                          |    9 +
 Tools/WebKitDFB/textbuttonbgnd.png                 |  Bin 0 -> 1152 bytes
 configure.ac                                       |  115 ++-
 167 files changed, 17954 insertions(+), 99 deletions(-)

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

Reply via email to