summaryrefslogtreecommitdiffstats
path: root/src/web-view.c
Commit message (Collapse)AuthorAgeFilesLines
* MqWebView: Make uri member non-constPatrick McDermott2017-10-121-1/+1
| | | | | | mq_web_view_load_uri() and the WebKitWebView "notify::uri" callback copy strings to it, so it need not be const. We're also now freeing it when copying to it.
* MqWebView: Connect to WebKitWebView's "notify::uri" signalPatrick McDermott2017-10-121-0/+26
| | | | This causes a fun infinite loop of signal emissions.
* mq_web_view_load_uri(): Save a copy of uriPatrick McDermott2017-10-121-1/+1
|
* mq_web_view_get_uri(): New functionPatrick McDermott2017-10-121-0/+6
|
* MqWebView: Don't set "uri" property during constructionPatrick McDermott2017-10-121-1/+1
| | | | | | Setting the "uri" property now calls mq_web_view_load_uri(), which calls webkit_web_view_load_uri(). This causes a segmentation fault if the WebKitWebView's constructed method hasn't been called yet.
* mq_web_view_load_uri(): New functionPatrick McDermott2017-10-121-1/+25
|
* MqWebView: Remove unused macro definitionPatrick McDermott2017-10-111-2/+0
|
* MqWebView: Use g_signal_connect()Patrick McDermott2017-10-111-18/+18
|
* MqWebView: Warn on invalid property IDsPatrick McDermott2017-10-111-2/+10
|
* imq_web_view_new(): Initialize parent web-context propertyPatrick McDermott2017-10-111-0/+1
|
* MqWebView: Call parent class constructed method earlierPatrick McDermott2017-10-111-2/+4
|
* MqWebView: Move code from instance_init to constructed methodPatrick McDermott2017-10-111-26/+36
|
* MqWebView: Make tab property writablePatrick McDermott2017-10-111-1/+1
|
* MqWebView: New classPatrick McDermott2017-10-111-0/+653