summaryrefslogtreecommitdiff
path: root/gtk/scaffolding.c
Commit message (Collapse)AuthorAgeFilesLines
* split gui operations into core and window and move more operations into tablesVincent Sanders2014-01-121-3/+2
|
* fix leak in error path (coverity 1109889)Vincent Sanders2013-11-061-1/+2
|
* fix memory leak in error path (coverity 1109889)Vincent Sanders2013-11-031-12/+7
|
* fix gtk title setting to cope with null titles coverity 1109897Vincent Sanders2013-10-251-10/+30
|
* fix coverity 1109906 uninitialised pointer readVincent Sanders2013-10-251-1/+1
|
* Remove old hotlist, cookies, and history_global_core modules.Michael Drake2013-09-021-2/+2
| | | | New versions of expand/collapse node functions for these modules aren't yet implemented.
* Move old hotlist out of the way.Michael Drake2013-08-131-2/+2
|
* s/history_core/local_history/Michael Drake2013-07-101-1/+1
|
* completely rework scaffolding window destruction using gtkwidget destroy signalsVincent Sanders2013-06-281-62/+65
|
* add new tab tabVincent Sanders2013-06-271-23/+19
|
* fix status/toolbar bottom split position and setting user option in gtkVincent Sanders2013-06-251-35/+28
|
* move gtk frontend to use new options APIVincent Sanders2013-05-281-1/+1
|
* fix mismatched option name and variable namesVincent Sanders2013-05-281-1/+1
| | | | | block_ads should be block_advertisments to match option name toolbar_status_width should be toolbar_status_size to match option name
* move options includeVincent Sanders2013-05-281-1/+1
|
* Front ends have no reason to include desktop/selection.h now.Michael Drake2013-05-101-1/+0
|
* Remove search context from browser window, simplify search interface for ↵Michael Drake2013-05-071-5/+5
| | | | | | | | | | | | | | | | | | | | | | front ends. Added content interface for search. Removed bw->cur_search search context. Desktop layer now does nothing except pass search requests from front end onto the bw's current_content via the content interface. Search API reduced to a pair of functions at each level: {desktop|content|html|textplain}_search and {desktop|content|html|textplain}_search_clear Updated front ends to use simplified search API. Only tested GTK and RO builds. These confine the search stuff to render/. However search still uses struct selection. The handling for which is still spread over desktop/ and render/. Also the render/search code itself still fiddles inside html and textplain privates.
* A load of refactoring of how content selection and input work.Michael Drake2013-02-221-6/+8
| | | | | | | | | | | | | Keypresses now go via content interface. Contents don't shove the selection object into browser windows any more. Contents report selection existence by sending message. HTML content keeps track of where selections in it exist. Contents report whether they have input focus via caret setting msg. Caret can be hidden (can still input/paste) or removed. Consolidate textarea selection handling. Make textarea report its selection status changes to client. Various textarea fixes. Changed how we decide when to clear selections, and give focus.
* rename flags for browser_window routines to be shorterVincent Sanders2013-02-181-22/+22
|
* change browser_window_create and refactor all callsitesVincent Sanders2013-02-181-24/+84
|
* browser_window_navigate refactorVincent Sanders2013-02-181-25/+132
|
* Update GTK front end to implement new clipboard API.Michael Drake2013-01-081-3/+3
|
* implement the GTK preferances dialog with signalsVincent Sanders2013-01-011-8/+7
|
* Port save complete to libdom.John-Mark Bell2012-11-031-2/+1
|
* Remove unnecessary libxml includes from GTK includesDaniel Silverstone2012-10-111-1/+0
|
* Move browser_window struct to private header. Places that shouldn't include ↵Michael Drake2012-08-221-1/+1
| | | | | | | | | | | | | | | | | it do, such as front end code. Frontends that have been updated to build: framebuffer gtk monkey riscos TODO: amiga atari beos cocoa windows
* Don't need to set everything to zero since it's staticMichael Drake2012-08-201-2/+1
|
* Allow the presence of form inputs to be obtained without knowledge of html ↵Michael Drake2012-08-201-1/+2
| | | | content internals.
* Remove unused includes.Michael Drake2012-08-201-1/+0
|
* Use proper function for dumping box tree.Michael Drake2012-08-201-7/+1
|
* fix build on gtk 2.12Vincent Sanders2012-05-171-5/+5
| | | | svn path=/trunk/netsurf/; revision=13927
* allow netsurf to build with gtk3Vincent Sanders2012-05-161-23/+75
| | | | svn path=/trunk/netsurf/; revision=13926
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-221-34/+49
| | | | svn path=/trunk/netsurf/; revision=13548
* fix favicon displayVincent Sanders2012-02-211-41/+50
| | | | svn path=/trunk/netsurf/; revision=13460
* fix the popup menu entry signal attaching to attach the correct handler ↵Vincent Sanders2012-02-081-21/+21
| | | | | | functions. as the prototype changes depending on signal type and we were using the non menu function prototype for menu entries. svn path=/trunk/netsurf/; revision=13437
* ensure favicon is correctly setVincent Sanders2011-12-311-2/+4
| | | | svn path=/trunk/netsurf/; revision=13358
* load default favicon once Vincent Sanders2011-12-311-4/+2
| | | | svn path=/trunk/netsurf/; revision=13357
* only use libsexy entry widget prior to gtk 2.16Vincent Sanders2011-12-301-60/+32
| | | | svn path=/trunk/netsurf/; revision=13356
* Change GTK plotting to use cairo surfaces throughoutVincent Sanders2011-12-301-27/+36
| | | | svn path=/trunk/netsurf/; revision=13354
* Pass whether background images are wanted in redraw_context.Michael Drake2011-12-231-0/+1
| | | | svn path=/trunk/netsurf/; revision=13335
* content_get_url -> hlcache_handle_get_url, content__get_url -> content_get_urlJohn Mark Bell2011-12-041-7/+7
| | | | svn path=/trunk/netsurf/; revision=13236
* Ensure the GTK UI closes all its scaffoldings before exiting.Daniel Silverstone2011-10-091-0/+2
| | | | svn path=/trunk/netsurf/; revision=13019
* fix ico handler to actually decode to bitmap when called via get_internalVincent Sanders2011-10-071-2/+4
| | | | svn path=/trunk/netsurf/; revision=12980
* initial favicon supportVincent Sanders2011-10-061-7/+2
| | | | svn path=/trunk/netsurf/; revision=12975
* Port more internals to nsurl. Front ends may need updating.Michael Drake2011-10-031-6/+7
| | | | svn path=/trunk/netsurf/; revision=12926
* clean up gtk tabs argument types to avoid uncessary castingVincent Sanders2011-09-261-1/+1
| | | | svn path=/trunk/netsurf/; revision=12888
* reduce to a single global structure for glade file locationsVincent Sanders2011-09-241-1/+1
| | | | svn path=/trunk/netsurf/; revision=12872
* remove deprecated GDK usage except for in libsexyVincent Sanders2011-09-171-6/+3
| | | | svn path=/trunk/netsurf/; revision=12803
* Port GTK front end's context menu handling to ↵Michael Drake2011-09-061-16/+16
| | | | | | browser_window_get_contextual_content. (Can handle various things the old code couldn't (imagemaps, (i)frames).) Fix "Save Link" menu option to save the target of the link rather than the current content. svn path=/trunk/netsurf/; revision=12756
* Remove gui_window_get_browser_window from core. Remove unused ↵Michael Drake2011-09-051-43/+43
| | | | | | implementations from front ends. Rename the GTK front end implementation to nsgtk_get_browser_window and change the GTK front end to use that. svn path=/trunk/netsurf/; revision=12737
* GTK changes for core search update (r12646).Michael Drake2011-08-241-10/+9
| | | | svn path=/trunk/netsurf/; revision=12647