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
19
votes
1 answer

Installing webkitgtk3 for GHCJS on osx

I'm trying to install the ghcjs-dom package on Mac OSX. It's been bumpy as there are a lot of dependencies. Webkitgtk3 is my current nemesis cabal install ghcjs-dom Resolving dependencies... Configuring webkitgtk3-0.14.1.1... Failed to install…
Mark Karavan
  • 2,654
  • 1
  • 18
  • 38
10
votes
3 answers

WebKitGTK+, GTK2, GTK3

I have some difficulty to understand what WebKit, WebKitGTK, GTK are with the different versions. Here is what I have so far : WebKit is a library which contains both WebKit1 and WebKit2. Which one is called with this include #include…
Gradient
  • 2,253
  • 6
  • 25
  • 36
8
votes
1 answer

How can I safely use WebKitGTK from a forked thread?

I'm trying to make a simple app in Haskell using GTK3 and WebKit. This code creates and shows a window containing a WebView inside, which displays a random number each time a key gets pressed. import Control.Monad.Trans (lift) import …
Emily
  • 2,577
  • 18
  • 38
6
votes
2 answers

How to handle clicks on Links in Python with Gtk 3.0 and WebKit2 4.0?

I have created my view (wrapped in a window) and loaded an URL like this: self.web_view = WebKit2.WebView() self.web_view.load_uri("https://en.wikipedia.org") My "Mini-Browser" starts and I can click on local links (links which are bound to…
Witek
  • 6,160
  • 7
  • 43
  • 63
6
votes
2 answers

Scrolling a WebKit2.Webkit window in GTK+3

How does one scroll a webkit2gtk widget? In webkitgtk (aka. webkit1) you wrap your WebView in a ScrolledWindow, so can use its vadjustment property. For wekit2gtk, this call on the WebView just returns None, and I see no other method to call. As an…
Veedrac
  • 58,273
  • 15
  • 112
  • 169
5
votes
0 answers

Accessing a web server from a webkit client written in haskell reflex-dom

This is a follow up question to Acess a servant server with a reflex-dom client: If I run the client code in a web browser everything works fine. However if I run the client code in webkit under gtk3 (and Debian), I can see the request in the…
Jogger
  • 1,617
  • 2
  • 12
  • 22
5
votes
2 answers

Example of using webkitgtk with gtkmm 3.0

I've searched a lot, but I wasn't able to find a good example explaining how to use webkitgtk with gtkmm 3.0. Anyone knows about it? Is there some good tutorial, or sample code? Thanks in advance!
Mithenks
  • 333
  • 1
  • 3
  • 11
4
votes
2 answers

How to install WebkitGTK in MacOS?

brew install webkitgtk Not finding package, when installing from macports it doesn't finding by gtk-rs when compiling my project on rust with gtk-rs and webkit2gtk-rs
4
votes
1 answer

Webkit GTK: Determine when a document is finished loading

There are other questions on StackOverflow which are close to what I want to know, like Webkit GTK :: How to detect when a download has finished?, but I think I'm asking something a bit different: In general, in the event-driven C Webkit-GTK API…
Channel72
  • 24,139
  • 32
  • 108
  • 180
3
votes
0 answers

Accessing the WebKit API from Haskell via something other than WebKitGTK

I'm trying to understand if there is any other way to access the WebKit API directly from from a Haskell (ghc-7.10.2 currently) program without having to go through something like webkitgtk3, which is a Haskell wrapper around WebKitGTK. It appears…
Erik Kaplun
  • 37,128
  • 15
  • 99
  • 111
3
votes
1 answer

How can i make a js function interact with c# using webkit?

I have a webbrowser made using webkit running in mono c#. I would like to allow pages to call a function in the browser and then the browser perform actions based on the parameters passed. I cant seem to be able to do it. The html page is the next…
BrixSat
  • 43
  • 5
3
votes
0 answers

webkitgtk, navigation-requested signal, retrieving posted data

When inspecting the data supplied when handling the signal "resource-request-starting", I can see that post request come through on the signal too: static gboolean resourceRequestStartingWebViewCb( WebKitWebView *web_view, WebKitWebFrame…
erik
  • 31
  • 1
  • 4
2
votes
1 answer

C++ Webkit GTK , How to disable cross origin policy?

I'm trying to load http://google.com in iframe with "file://" domained page. Ofcourse i got "Google.com did not allow" error. I already tried reverse proxy but i think reverse proxy does it not make sense. After then, i'm researched over a few…
2
votes
1 answer

How to fix refused to display url in a frame because it set x frame options to deny in webkitgtk python

Im building a simple web browser with Python, Gtk, and WebKitGtk. When trying to load youtube, i receive this error message: console message: about:blank @0: Refused to display…
HasanQ
  • 75
  • 1
  • 3
  • 9
2
votes
1 answer

Reduce g++ RAM usage

I haven't really found a solid answer to this question other than "get more ram". Is there a way to reduce the memory used by g++ during the compile process? I am (for reasons) trying to compile webkitgtk on a g4 mac mini with 1GB ram. It can't be…
Raven King
  • 155
  • 1
  • 12
1
2 3 4 5 6 7