summaryrefslogtreecommitdiff
path: root/desktop
Commit message (Collapse)AuthorAgeFilesLines
* remove reformat from browser window operation tableVincent Sanders2017-04-263-10/+32
| | | | | | the reformat callback was completely unecessary and implementations appeared potentialy buggy. This rationalises the API and reduces the number of operations a frontend must provide.
* Core hotlist: Ensure any hotlist save callback is removed on hotlist_fini.Michael Drake2017-04-251-0/+4
|
* Hotlist: Save hotlist modifications.Michael Drake2017-04-251-71/+110
| | | | | | When URLs are added, or address entries are edited or deleted, a hotlist save is scheduled to happen after 10 seconds, if there isn't already a hotlist save scheduled.
* Core hotlist API: Take save path at init, rather than fini.Michael Drake2017-04-252-8/+24
|
* replace redraw and update methods with invalidate in window table APIVincent Sanders2017-04-192-7/+4
|
* make mimesniffing use core stringsVincent Sanders2017-03-191-6/+0
|
* split out browser window drag context into separate structureVincent Sanders2017-03-033-76/+101
|
* split out browser windoe favicon context to separate structureVincent Sanders2017-03-032-42/+75
|
* split out status bar text cache into separate structVincent Sanders2017-03-032-39/+67
|
* improve documentation comments in ssl certificate viewerVincent Sanders2017-03-012-85/+136
|
* make scrollbar redraw signal errors correctlyVincent Sanders2017-03-014-194/+273
| | | | | allow scrollbar redraw to return error codes and update documentation commenst appropriately.
* Change interface to system colours to allow reporting of errorsVincent Sanders2017-03-018-124/+261
| | | | | | Allow system colour interface to report errors instead of silently failing and propogate the errors. This also fixes teh system colour documentation.
* Improve treeview documentation commentsVincent Sanders2017-02-282-544/+924
|
* fix some doxygen errorsVincent Sanders2017-02-242-4/+4
|
* fix remaining doccomment errorsVincent Sanders2017-02-222-7/+44
|
* clean up some of the doxygen generation warningsVincent Sanders2017-02-192-8/+4
|
* add local history corewindow APIVincent Sanders2017-02-173-1/+246
|
* clean up incorrect documentation comments from plotter API reworkVincent Sanders2017-02-141-4/+4
|
* fix buildChris Young2017-02-141-1/+1
|
* Remove use of global context data from Amiga frontendChris Young2017-02-132-1/+5
|
* fix plotter mergeVincent Sanders2017-02-121-2/+2
|
* Update knockout plotter to use new APIVincent Sanders2017-02-114-291/+474
|
* Update all core use of plotters to new APIVincent Sanders2017-02-115-278/+407
|
* create netsurf inttypes header to have portable integer formatting macrosVincent Sanders2017-01-211-1/+1
|
* rationalise use of utils/utils.h headerVincent Sanders2017-01-192-1/+1
|
* move plot style header to netsurf include directoryVincent Sanders2017-01-139-214/+11
| | | | | move plotter style header and adjust all callers to use only what they actually require.
* make local history use system coloursVincent Sanders2017-01-123-63/+115
|
* Clear pointer after freeChris Young2017-01-081-0/+1
|
* clear tree pointer on freeChris Young2017-01-051-0/+1
|
* move tree compatability layer to amiga frontendVincent Sanders2016-12-313-443/+2
|
* Old tree code compat layer: Update so it still builds.Michael Drake2016-12-291-2/+4
|
* Hotlist: Allow hotlist initilialisation without hotlist corewindow.Michael Drake2016-12-292-10/+65
| | | | | | Now, hotlist_init can be called without a corewindow. This allows the hotlist backend to be up and running, before any hostlist manager is opened. Calling hotlist_manager_init attaches the hotlist to a corewindow.
* Treeview: Add API for attaching and detaching from corewindows.Michael Drake2016-12-292-0/+51
|
* Treeview: Allow treeview to be created "detached".Michael Drake2016-12-291-2/+1
| | | | This allows treeviews to be constructed before their corewindow.
* Treeview: Don't call corewindow callbacks if not attached to a corewindow.Michael Drake2016-12-291-4/+12
|
* Treeview: Convert to using corewindow callback wrappers.Michael Drake2016-12-291-37/+35
|
* Treeview: Add wrappers for corewindow callbacks.Michael Drake2016-12-291-0/+58
| | | | Currently unused.
* Merge branch 'vince/ro-corewindow'Vincent Sanders2016-12-281-0/+2
|\ | | | | | | | | Conflicts: frontends/riscos/sslcert.h
| * Fix crash when treeview widget is reinitialisedVincent Sanders2016-12-281-0/+2
| | | | | | | | | | | | | | The treeview widget can be repeatedly finialised and initialised. The content ready flag was not being cleard on initialisation so content was being used in an bad state. For example this caused an assert when content_redraw() was called on non-ready resource handles.
* | Tree compat layer: Fix assertion for multiple SSL cert windows.Michael Drake2016-12-181-4/+4
| | | | | | | | Use corewindow API rather than this compat layer to avoid the assertion.
* | Ensure memory used by Messages is freed on exitChris Young2016-12-111-0/+3
|/
* fix spelling of retrivedVincent Sanders2016-11-211-6/+6
|
* Merge 3.6 release and prepare 3.7 devDaniel Silverstone2016-11-191-2/+2
|\
| * Update version.c and amiga version.cDaniel Silverstone2016-11-191-6/+1
|/
* complete transition to locale independant core operationVincent Sanders2016-09-291-2/+1
| | | | | | | | | | | | The netsurf core no longer uses any locale dependant operations excepting the mall number or cases where such operations are explicitly wanted. the netsurf_init now calls setlocale with the empty string and lets the c library setup as per its specific implementation. any core functionality that specificaly processes ascii text must use the utils/ascii.h header to do so.
* remove cookie manage display of the no_delete booleanVincent Sanders2016-09-131-26/+0
| | | | | | The no_delete flag is mislabelled as persistent. In fact it is simply never altered from its default value. It is serialised and its state kept on disc but otherwise is completely vestigial.
* if the cookie is a session cookie indicate itVincent Sanders2016-09-131-1/+7
| | | | | previously session cookies were simply displayed as having an expiry in 1970 which was unhelpful.
* change save complete to use ascii character manipulationVincent Sanders2016-09-111-7/+8
|
* improve cookie time display and document locale interactionVincent Sanders2016-09-101-39/+86
|
* move core window API into netsurf header pathVincent Sanders2016-08-183-86/+2
|