summaryrefslogtreecommitdiff
path: root/desktop
Commit message (Collapse)AuthorAgeFilesLines
* Make the fetching of a contents encoding generic.Vincent Sanders2014-11-051-1/+1
| | | | | | | 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.
* Remove April 1st layout shuffling.Michael Drake2014-11-051-21/+4
|
* reference nsurl as a struct properlyVincent Sanders2014-11-031-1/+1
|
* replace save_link operation table entry usage of textural url with nsurlVincent Sanders2014-11-032-3/+4
|
* fix errors in change url setting api to take an nsurl instead of a text stringVincent Sanders2014-11-021-0/+2
|
* change url setting api to take an nsurl instead of a text stringVincent Sanders2014-11-023-3/+3
|
* remove unecessary utils/types.hVincent Sanders2014-11-0211-36/+52
| | | | | | This cleans up this header and moves the functionality into more useful places while reducing the include complexity but only pulling in whats required.
* Change contextual content retrieval to browser features.Vincent Sanders2014-11-023-29/+69
| | | | | | | | | | | | | 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.
* Remove old URL header includes.Michael Drake2014-10-312-2/+0
|
* remove unused url_init functionVincent Sanders2014-10-311-2/+0
|
* use nsurl_nice and remove url_niceVincent Sanders2014-10-311-1/+2
| | | | | change all callers over to using new API for generating nice filenames from a url and remove the old API.
* remove more user warning calls and replace with error returnsVincent Sanders2014-10-301-37/+35
|
* make global history treeview callback return errorVincent Sanders2014-10-302-12/+11
| | | | returns an error instead of directly waning the user.
* make local history navigation return errorsVincent Sanders2014-10-302-123/+145
| | | | | | | The local history interface now reports errors to its callers isntead of inconsistantly waning the user occasionally on error. The documentation comemhts were also updated to match reality
* make history update return error code.Vincent Sanders2014-10-292-15/+19
| | | | | This now returns errors instead of failing and inconsistantly calling user warnings for some error paths.
* make adding a history entry return an error code.Vincent Sanders2014-10-293-24/+23
| | | | | This returns the error code to the caller instead of (sometimes) warning the user directly.
* Ensure browser window creation returns errors from common initialisation.Vincent Sanders2014-10-292-6/+10
| | | | | | The browser window common initialisation code returns error codes which were being ignored. The errors were additionally being reported via warn_user in inappropriate places within browser history construction.
* Update url setting API to return nserror code instead of calling warn_userVincent Sanders2014-10-294-31/+33
|
* Clean up saving as PDFVincent Sanders2014-10-269-109/+130
| | | | | | | | | | | | This removes the global PDF_Password interface that had completely bitrotted and moves it into the standard misc operation table with a sensible defualt implementation. This also cleans up and fixes the gtk frontend implementation of the pdf password callback so it compiles. Finally this moves the implementation to a sensible place alongside the other exporters reducing target makefile complexity futher.
* Fix and improve comment for browser_window_get_scrollbar_type().Michael Drake2014-10-251-1/+8
|
* Add bw function to get scrollbar type.Michael Drake2014-10-255-10/+30
|
* Add function to find if a bw is a frameset.Michael Drake2014-10-252-0/+15
|
* Move browser_window_get_root to private header.Michael Drake2014-10-252-8/+8
|
* Move browser_window_set_status to private header.Michael Drake2014-10-252-8/+8
|
* Move create_form_select_menu to window gui table.Michael Drake2014-10-244-14/+15
|
* Ensure we pass valid gw to gadget click gui call.Michael Drake2014-10-241-1/+3
| | | | | Only root bw has a gw, so this would have been broken when it happened in a frameset.
* Open select menu via content msg, instead of breaking encapsulation.Michael Drake2014-10-241-0/+10
| | | | Fixes bw deref and browser_private.h #include in render/
* improve documentation and whitespace cleanup.Vincent Sanders2014-10-192-68/+76
|
* improve documentation in headersVincent Sanders2014-10-195-217/+252
|
* Add is_selectable to browser window API surface.Michael Drake2014-10-182-0/+24
|
* Add call to test whether a browser window may be searched.Michael Drake2014-10-182-0/+24
|
* Don't try to draw NULL history.Michael Drake2014-10-181-0/+5
|
* Move up_available fn to core.Michael Drake2014-10-182-0/+29
|
* remove unecessary browser.h include from core headersVincent Sanders2014-10-178-13/+11
|
* Add core function to navigate to URL parent.Michael Drake2014-10-172-0/+43
|
* Update the core to use the split operations table headersVincent Sanders2014-10-1610-46/+57
| | | | Second in the series to decouple the core API usage from the frontends.
* Split up graphical user interface operations table headersVincent Sanders2014-10-1611-610/+831
| | | | | | This is the initial part of a series which splits up the API interface definitions for the frontends removing a great deal of unnecessary file inclusion and further isolates the fronted API usage from the core
* Fix core create_form_select_menu API to pass gw, rather than bw out to front ↵Michael Drake2014-10-162-2/+6
| | | | ends.
* Remove trailing whitespace.Michael Drake2014-10-151-1/+1
|
* split version info into its own header and remove unnecessary nesurf.h includesVincent Sanders2014-10-134-21/+77
| | | | | | | | | The netsurf.h header should *only* contain the registration, core initialisation and finalisation methods. Version information is best placed in its own header. Also remove any unneeded inclusion of this header limiting it to solely the places the relevant API is required.
* Put the font operations table alongside all the other core APIVincent Sanders2014-10-139-41/+142
| | | | | | | | | | | | The netsurf core is driven from numerous operation tables most of which are now set through a common netsurf_register() interface. The font and plotting interfaces are currently separate and unlike all the other operation tables are modified for differing contexts. This change moves the font operations alongside all the other operations table and remove unnecessary interaction with the renderers font internals. Further this also removes the need for css internals to be visible in frontends.
* add API to set DPIVincent Sanders2014-10-132-0/+29
|
* remove netsurf_poll callback and netsurf main loopVincent Sanders2014-10-133-27/+3
|
* Some minor documentation cleanups to reduce doxygen warningsVincent Sanders2014-10-121-5/+15
|
* Trivial sepelling, documentation and whitespace cleanupsVincent Sanders2014-10-102-8/+10
|
* Fix textarea wrap bug.Michael Drake2014-09-271-2/+12
| | | | | | Was comparing against the current start line length, to decide if it needed redrawing, without taking into account that old start line might have been longer.
* stop poll callback entry being mandantory in preparation for its removalVincent Sanders2014-09-221-4/+0
|
* Optimise case where scrollbar_set_extents call changes nothing.Michael Drake2014-09-191-0/+6
|
* Setting extents can move scroll pos, so send message.Michael Drake2014-09-191-1/+7
|
* Make code more readable.Michael Drake2014-09-191-3/+5
|