[[PageOutline]] = Building the Gtk port = The Gtk port of WebKit is intended to provide a browser component primarily for users of the portable [http://www.gtk.org/ Gtk+] UI toolkit on platforms like Linux. == Status of the port == The port is actively maintained, and its build state is continuously tested by the [http://build.webkit.org/ WebKit build-bot]. Developers interested in using or contributing to the Gtk port should be willing to get their hands dirty at this stage. Patches are welcomed on the bug tracker and help is readily available on the IRC channel and mailing list for developers who want to learn the ropes. It is worth noting that this project is being developed directly in WebKit SVN and is entirely unrelated to the classic [http://gtk-webcore.sourceforge.net/ Gtk+ WebCore]. == Dependencies == The code should be easily built on any Linux distribution which has development packages for Gtk+ installed. Packages you might need to install (in addition to an "ordinary build environment"): * libicu-dev * libxslt-dev * libcurl-dev * libsqlite3-dev * libjpeg62-dev * libpng12-dev * gperf * bison * flex version 2.5.33 or later If you forgot to install one of the build dependencies, your build tree might be in a bad state and might fail to compile even after you've installed the missing dependency. In this case, you should ensure your SVN checkout is entirely clean with eg. make -C WebKitBuild/Release/WebCore clean == Using Qmake4 == The Gtk port has made a compromise on its build system by incurring a dependency on qmake 4, the Qt toolkit build system. This is only a build-time dependency -- the compiled executables will of course continue to have no requirement of Qt. The decision was made to share resources with the Qt porting team and has been largely successful -- the Gtk port is more likely now than ever to be in a building state straight out of SVN while the port developers have more free time to write code instead of maintaining the old Bakefile build system. To start the build, ensure that you have qmake4 installed and run: WebKit/WebKitTools/Scripts$ ./build-webkit --gtk The above command will try to execute "qmake". If your qmake4 binary is named differently, e.g. on Debian, use the --qmake= option. WebKit/WebKitTools/Scripts$ ./build-webkit --gtk --qmake=qmake-qt4 This will build both the library and the GtkLauncher demo in WebKit/WebKitBuild === Building qmake if your distribution doesn't ship it in a package === {{{ wget ftp://ftp.trolltech.com/qt/source/qtopia-core-opensource-src-4.3.2.tar.gz tar -xvzf qtopia-core-opensource-src-4.3.2.tar.gz cd qtopia-core-opensource-src-4.3.2 echo yes | ./configure -fast }}} Et voila the bin/ directory holds a qmake binary you can use for the Gtk+ port. You might want to set the QMAKESPEC to $PWD/mkspecs/ANY-SPEC-YOU-WANT but the default should just work. == Installation == To install the library and the header files: $ cd WebKitBuild/Release # make install = Hacking = == Code layout == The main components of the port: === Gtk+-specific modules === * Gtk+/Gtk UI platform: [http://trac.webkit.org/projects/webkit/browser/trunk/WebCore/platform/gtk WebCore/platform/gtk] * "Page/Gtk": [http://trac.webkit.org/projects/webkit/browser/trunk/WebCore/page/gtk WebCore/page/gtk] * "Loader/Gtk": [http://trac.webkit.org/projects/webkit/browser/trunk/WebCore/loader/gtk WebCore/loader/gtk] There may be other gtk-port related directories which have yet to be listed here. === Shared code modules === While the Gtk+ port is the primary consumer of these backends, we aim to keep them portable, avoiding even ifdef'd sections specific to the Gtk+ port: * curl http backend: [http://trac.webkit.org/projects/webkit/browser/trunk/WebCore/platform/network/curl WebCore/platform/network/curl] * cairo graphics backend: [http://trac.webkit.org/projects/webkit/browser/trunk/WebCore/platform/graphics/cairo WebCore/platform/graphics/cairo] * cairo graphics SVG backend: [http://trac.webkit.org/projects/webkit/browser/trunk/WebCore/platform/graphics/svg/cairo WebCore/platform/graphics/svg/cairo] == Current tasks (July '07) == * Make things work with debugging enabled (when NDEBUG is removed, assertions are triggered right now) * Fix animated GIF images -- consider using GdkPixbuf? * Continue to fix the curl backend * Start to consider consolidating the widget into a single place as the Qt port has done, and look into implementing eg. createFrame() * Look into supporting the canvas * Attempt to merge the Cairo code in the Win32 port -- the equivalent code is copy-and-pasted into the "Gdk" port in some places. This will help reduce code duplication but also help towards getting WebKit/Gdk/Gtk+ working on Windows == Issues known == === CURL === * Review and possibly integrate the [http://www.sand-labs.org/svn/trunk/BAL/Implementations/Network/CURL/ sand-labs CURL backend] code. It has a slightly different API, so needs to be back-ported, but looks like it may be more feature-complete, able to handle redirects properly etc. * The non zero select timeout feels bad. Make it possible to write a GSourceFunc to not poll the sockets and have a timeout: This can probably be done by integrating code from MIT/X11 licensed [http://atterer.net/glibcurl/ glibcurl]. * Cookie handling is completely lacking as pointed out on the mailing list * Errors of curl need to be properly populated === Gtk === * A lot of classes are not yet implemented * For painting we have some issues in regard to Expose Events and when WebKit will call paint. === Theming === * Consider taking code directly from Mozilla's LGPL licensed Gtk+ theming backend. They deal with a lot of corner cases which don't look fun to re-implement. * Focus ring drawing * Scrollbars for PlatformScrollbar will be terrible as we need to implement a HitTest but don't know where the elements of the scrollbar hide * Native theming for text entries * Find a way to draw a GtkComboBox, at least the button part. This is needed to implement theming of the