summaryrefslogtreecommitdiff
path: root/content/content.c
Commit message (Collapse)AuthorAgeFilesLines
* create netsurf inttypes header to have portable integer formatting macrosVincent Sanders2017-01-211-1/+2
|
* rationalise use of utils/utils.h headerVincent Sanders2017-01-191-1/+0
|
* Update content to split public and internal APIVincent Sanders2016-06-061-13/+5
|
* move plotters header into public APIVincent Sanders2016-05-301-1/+0
|
* move desktop window header into public APIVincent Sanders2016-05-301-1/+1
|
* move bitmap API header to core include directoryVincent Sanders2016-05-261-1/+1
|
* move image content handlers to accomodate core build changesVincent Sanders2016-05-231-1/+1
|
* update content wallclock timing to use monotonic time interfaceVincent Sanders2016-04-201-4/+7
|
* stop content header dragging in so many other headersVincent Sanders2016-04-191-0/+2
|
* reduce content header interdependancyVincent Sanders2016-04-181-1/+2
|
* clean up header usage in content hnadling coreVincent Sanders2016-04-181-20/+10
|
* Stop GIF animations when they are no longer in use, instead of waiting until ↵Chris Young2016-02-111-0/+7
| | | | they are destroyed.
* Remove torrent of logging during browser window resize.Michael Drake2016-02-061-1/+1
|
* fixup all the remaining logging macro callsitesVincent Sanders2015-05-281-1/+1
| | | | | The semantic patch tool appears to have missed some difficult to reason about callsites which have now been manually cleaned up
* Change LOG() macro to be varadicVincent Sanders2015-05-281-20/+11
| | | | | | | | | | | | This changes the LOG macro to be varadic removing the need for all callsites to have double bracketing and allows for future improvement on how we use the logging macros. The callsites were changed with coccinelle and the changes checked by hand. Compile tested for several frontends but not all. A formatting annotation has also been added which allows the compiler to check the parameters and types passed to the logging.
* Add scaled content redraw interface.Vincent Sanders2015-04-231-2/+71
| | | | | | Add a new interface to the content to allow automaticaly scaled content redraws. This is intended to replace the thumbnail_redraw interface with something more generic.
* Move bitmap operations into an operation table.Vincent Sanders2015-04-131-1/+2
| | | | | | | The generic bitmap handlers provided by each frontend are called back from the core and therefore should be in an operation table. This was one of the very few remaining interfaces stopping the core code from being split into a library.
* Doxygen cleanupsVincent Sanders2014-11-091-6/+7
|
* Continue doxygen error cleanup.Vincent Sanders2014-11-081-79/+52
|
* fix up more doxygen errorsVincent Sanders2014-11-081-53/+19
|
* Improve content encoding information APIVincent Sanders2014-11-071-4/+4
| | | | | Extend the content_get_encoding() API to retrieve the source of the encoding as well as the actual encoding.
* Allow content handlers to have debug values set through APIVincent Sanders2014-11-061-0/+16
| | | | | | | | Previously content handler debugging features were accessed by global variables. This allows the setting of debugging parameters via a content API giving per content control over debugging features. Currently only used by the html content handler to toggle global redraw debugging.
* Make the fetching of a contents encoding generic.Vincent Sanders2014-11-051-0/+24
| | | | | | | The frontends previously had to use an html renderer API to get the encoding of a content. This also required the explicit checking of the contents type rather than using the existing content API to abstract this knowledge.
* Change contextual content retrieval to browser features.Vincent Sanders2014-11-021-8/+7
| | | | | | | | | | | | | Update the API which allows frontends to acquire the page features (images, link urls or form elements) present at the given coordinates within a browser window. By making this an explicit browser_window API and using the browser.h header for the associated data structure with a more appropriate API naming the usage is much more obvious and contained. Additionally the link url is now passed around as a nsurl stopping it being converted from nsurl to text and back again several times.
* fix DOM tree dump debugVincent Sanders2014-08-041-4/+7
|
* move page search gui callbacks to their own operations tableVincent Sanders2014-03-181-5/+6
|
* remove unecessary includeVincent Sanders2014-02-041-3/+1
|
* Fix Coverity #1109872.Michael Drake2013-10-231-1/+2
|
* Fix Coverity #1109867.Michael Drake2013-10-231-1/+3
|
* move options includeVincent Sanders2013-05-281-1/+1
|
* Pass fetch redirect info up to content layer as content_msg. Mark redirect ↵Michael Drake2013-05-271-0/+5
| | | | origin URLs as visited in browser window content callback. Note this doesn't mean we track redirects, it just lets us get the :visited link style on links that redirect.
* Merge branch 'master' of git://git.netsurf-browser.org/netsurf into ↵Michael Drake2013-05-071-17/+15
|\ | | | | | | tlsa/selection-search-refactor
| * ensure correct cleanup of user list sentinal in content cloneVincent Sanders2013-05-041-18/+14
| |
| * free memory on error conditionVincent Sanders2013-05-041-0/+1
| |
| * fix leak in error pathVincent Sanders2013-05-031-0/+1
| |
* | Remove search context from browser window, simplify search interface for ↵Michael Drake2013-05-071-0/+22
|/ | | | | | | | | | | | | | | | | | | | | | 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-2/+38
| | | | | | | | | | | | | 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.
* add errorcode content broadcast APIVincent Sanders2012-11-261-0/+17
|
* reduce talloc usage to box tree layout onlyVincent Sanders2012-10-031-16/+31
|
* API for content debug dump.Michael Drake2012-08-201-0/+10
|
* Don't pass struct box to content open.Michael Drake2012-08-201-4/+2
|
* Now contents types without mouse handling can set default pointer. Fixes ↵Michael Drake2012-08-171-1/+7
| | | | standalone images showing e.g. link pointer if that was the last pointer before the standalone image loaded.
* Let contents broadcast explicit status messages as well as announce that ↵Michael Drake2012-08-151-0/+2
| | | | their internal status has been updated.
* Simplify content status text setting.Michael Drake2012-08-151-29/+24
|
* fix missing check of lwc_string_caseless_isequal() return valueVincent Sanders2012-08-091-2/+2
|
* limit url debug output to 140 charactersVincent Sanders2012-07-031-4/+6
|
* content_get_url -> hlcache_handle_get_url, content__get_url -> content_get_urlJohn Mark Bell2011-12-041-6/+1
| | | | svn path=/trunk/netsurf/; revision=13236
* Currently untested (and unused) "drop file on content" handling, and HTML ↵Michael Drake2011-12-011-0/+13
| | | | | | implementation. svn path=/trunk/netsurf/; revision=13214
* Pass scroll wheel action into contents. Handle scrolling of box scrollbars ↵Michael Drake2011-11-291-0/+13
| | | | | | and iframes. svn path=/trunk/netsurf/; revision=13200
* metadata links stored in contentsVincent Sanders2011-10-071-0/+99
| | | | | | browser uses metadata links for favicons svn path=/trunk/netsurf/; revision=12977