Questions tagged [webkitgtk]

WebKit/GTK+ is the new GTK+ port of the WebKit, an open-source web content engine that powers numerous applications such as web browsers, email clients, feed readers, web and text editors.

WebKitGTK+ is the version of the WebKit open-source web engine that uses GTK+ as its user-facing front-end. It's a powerful system with a rich array of functionality.

103 questions
0
votes
1 answer

python webkit : hack and custom

I have done a python webkit navigator, with GTK. And, as I better know html/css for rendering than others ways, I have done a software using python, wekbit and GTK. I got some questions. I have read documentation that I found, and did a lot of…
vekah
  • 980
  • 3
  • 13
  • 31
0
votes
1 answer

webkit_dom_element_get_elements_by_tag_name doesn't work properly

I am trying to print name of nodes from DOM with WebKitGTK with the following code: WebKitDOMDocument *dom = webkit_web_view_get_dom_document(WEBKIT_WEB_VIEW(webView)); WebKitDOMNodeList* video = webkit_dom_element_get_elements_by_tag_name(dom,…
RdlP
  • 1,366
  • 5
  • 25
  • 45
0
votes
1 answer

Play html5 video with WebKitGTK

I am trying to play html5 video in a program that use webkitgtk and written in C. In order to test the html5 video I set up a server with a webpage:
0
votes
1 answer

How can I get the source code which has been rendered by webkitgtk?

I need to get the DOM tree of HTML page through webkitgtk, but I'm not familiar with it. Do you know the key functions or any other useful information? Since the source code may contain JS code, the struct of such pages will change when page…
Vector
  • 11
  • 1
  • 5
0
votes
1 answer

gtkfilechooser - how to replace all titles with a custom one

I have a requirement to replace ALL instance of GtkWidget* dialog = gtk_file_chooser_dialog_new(_("Upload File"), blah... in /gtk/WebCoreSupport/ChromeClientGtk.cpp with: GtkWidget* dialog =…
twobob
  • 354
  • 8
  • 22
0
votes
1 answer

webkitgtk webkit_web_view_get_dom_document doesn't return

I'm importing the method in C# mono (since dom_document isn't implemented in webkit-sharp), like this: class ExtendedWebView : WebKit.WebView { [DllImport ("webkit-1.0")] private static extern IntPtr webkit_web_view_get_dom_document (IntPtr…
David Mulder
  • 7,595
  • 11
  • 45
  • 61
0
votes
2 answers

Can't find DOMEventTarget.add_event_listener in Python

I'm converting a WebKitGTK+ project from C++ to Python (using PyGI). I need to detect any time an element on the page gains or loses focus. In the C++ project I did it using this code (based on this example): WebKitDOMDocument* document =…
Michael Mrozek
  • 169,610
  • 28
  • 168
  • 175
0
votes
1 answer

Why mozilla plugins and xulrunner being used by WebKitGTK?

I've got a simple application using WebKitGTK 1.6.0 that simply displays a webpage in a window. When I browse a page using it that contains an Ogg/Theora video and HTML5 video element it appears this simple application is using some mozilla plugins…
Chimera
  • 5,884
  • 7
  • 49
  • 81
0
votes
1 answer

WebView title is sometimes null when it shouldn't be

I'm writing a simple browser in Vala and WebKitGTK+. One of the things I need to do is set the window's title to that of the webpage title, so I monitor title changes with web_view.notify["title"].connect. However, sometimes the value of title is…
Arturo Torres Sánchez
  • 2,751
  • 4
  • 20
  • 33
0
votes
1 answer

Method(s) used to pass data to and from WebKit based browser

I'm using WebKitGTK+ ( WebKit ) application that will be a very simple web browser running in a Linux environment as a separate executable that will need to exchange data between another application. The system is described in the following…
Chimera
  • 5,884
  • 7
  • 49
  • 81
0
votes
1 answer

Why my webkit could't find libflashplayer.so under the directory of /usr/lib/mozilla/plugins

I am developing an application for GTk+3.0 and webkitGTK+ of linux, that's supposed to play swf files inside a WebView. First I tried to open the swf file from the device, than through the internet, with no luck. The WebView shows up, but inside the…
user1288145
  • 91
  • 1
  • 11
0
votes
1 answer

Webkit GTK: Using the DOM Tree Walker

So, I'm experimenting with Webkit GTK DOM functions. It's pretty straightforward, except for one thing: there's a useful part of the API called the WebKitDOMTreeWalker which, I assume, lets you walk over each node in the DOM, just like the…
Channel72
  • 24,139
  • 32
  • 108
  • 180
0
votes
2 answers

How to download with GTK Webkit and WebkitWebView

I have a WebKitWebView. On a website there is a download requested. I don't know how to write the signal download-requested that the download starts and saves to a given directory. I use Ubuntu 12.04 LTS with Anjuta. I'm programming in C.
user1464420
  • 89
  • 1
  • 4
1 2 3 4 5 6
7