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
1
vote
0 answers

WebKit GTK fails to compile on Apple Silicon

I tried to build WebKit GTK on my ARM Mac, but the linking process fails: Undefined symbols for architecture arm64: "_u_charDirection_67", referenced from: WTF::StringImpl::stripWhiteSpace() in libWTFGTK.a(StringImpl.cpp.o) …
techrisdev
  • 606
  • 4
  • 10
1
vote
0 answers

Cross-Compilling Webkit2gtk from linux to windows

Hello Good morning / afternoon / night, I have started the development of an Application which needs an WebView, I discovered webkitgtk a while ago and I believe it's the best way to go since It already has a long support for linux and MacOS, but…
lmtr0
  • 136
  • 2
  • 5
1
vote
0 answers

WebKitWebFrame not found

I'm working on a web application using WebKitGtk2 and I need to use the “window-object-cleared” signal with WebKitWebFrame. When I compile it I got an error: main.cc:11:1: error: ‘WebKitFrame’ does not name a type Compiled with: c++ main.cc -w…
shahril772
  • 53
  • 6
1
vote
1 answer

how to get response body in webkitgtk?

I tried to handle the webview resource_load_started and webresource finished signals to get the response body, but I ran into trouble. Here are my python codes: import gi gi.require_version('WebKit2', '4.0') gi.require_version("Gtk", "3.0") from…
1
vote
0 answers

Debug Webkitgtk on Linux

I build a Webkitgtk by Tools/Scripts/build-webkit --gtk --debug Is there a way I can debug it in GDB on linux with an HTML file? I don't know how to run a WebKitWebProcess that opens an HTML file. I've found some information in Debugging…
Clover Ye
  • 253
  • 3
  • 8
1
vote
0 answers

Cannot build WebKitGTK: missing ICU libraries but cannot install them

I'm trying to build the last release of WebKitGTK (2.28.0) following the instructions they suggest here https://trac.webkit.org/wiki/BuildingGtk#BuildingWebKitGTKfromareleasetarball. After extracting the downloaded tar.xz, I open that folder in a…
PWhite
  • 141
  • 1
  • 12
1
vote
1 answer

How to access a JSCValue Object's properties

With the following code: #include /* Skipping through a lot of code */ { JSCValue* result = jsc_context_evalutate(jsCtx, "document.getElementsByTagName('body')", -1); std::cout <<…
A student
  • 170
  • 11
1
vote
0 answers

How to invoke an "external" action based on a javascript call

on a golang/webview application, I need to be able to call an external application when a certain javascript call is rendered on the web application. I have been using https://github.com/zserge/webview and window.external.invoke for a while now, but…
Armin
  • 113
  • 4
1
vote
0 answers

Make IFRAME search order inline with other content

I have a webpage with several IFRAMEs. When searching this page using the browser the matches in the IFRAME are cycled through after all the other matches in the main page has been cycled through. This causes the page to jump up again, and the…
gauteh
  • 16,435
  • 4
  • 30
  • 34
1
vote
1 answer

How to get selected text on webkit2gtk

What method is available to select text on webkit2gtk. I could not find anything on the API for Vala webkit2. The requirement is to get the selected text on a webpage after the user releases the mouse after text selection.
Siddhartha Das
  • 251
  • 1
  • 8
1
vote
0 answers

Access DOMDocument in Python3

So I'm creating a small program using Oython / GTK+, at it's core is a WebView which displays some HTML-page. I now want to allow the user to manipulate the view by highlighting text, underline text etc. Later I want my program to store this markup…
vonAlenberg
  • 552
  • 1
  • 3
  • 11
1
vote
0 answers

How do i get the url of a page when the webkit browser redirects to it?

I need to extract a string from a redirect page's url upon loading it after an authentication process. How do make my program do this when it loads this specific redirect url? I'm using Webkit and GTk3
kealrey
  • 11
  • 2
1
vote
1 answer

WebKitGTK about webkit_web_view_load_uri

I have a question about WebktGTK. These days I am making a program which is can analysis web page if has suspicious web content. When "load-failed" "load-changed" signal is emitted with WEBKIT_LOAD_FINISHED, The program anlaysis the next page…
guest
  • 25
  • 1
  • 6
1
vote
1 answer

webkitgtk custom scheme and XMLHttpRequest

I have a custom scheme ("embed") which serves data from an sqlite db while I can do (inside a embed scheme page) if I try to do XMLHttpRequests I can only do relative paths, and only ones without double…
Chris Camacho
  • 1,164
  • 1
  • 9
  • 31
1
vote
1 answer

C Web Browser Download File

WebkitGTK+ API Reference What I'm trying to do is run my HTML5 app on Linux that way I and my users can still use my app without relying on an internet connection. My problem is when I go to download say a zip file. The download doesn't execute…
Michael Schwartz
  • 8,153
  • 14
  • 81
  • 144