summaryrefslogtreecommitdiff
path: root/windows
Commit message (Collapse)AuthorAgeFilesLines
* doxygen cleanups in utilsVincent Sanders2014-11-122-1/+4
|
* Doxygen cleanups in frontendsVincent Sanders2014-11-112-11/+19
|
* add missing content header to windows guiVincent Sanders2014-11-061-0/+1
|
* Allow content handlers to have debug values set through APIVincent Sanders2014-11-061-2/+1
| | | | | | | | 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.
* change url setting api to take an nsurl instead of a text stringVincent Sanders2014-11-021-2/+2
|
* remove unecessary utils/types.hVincent Sanders2014-11-021-0/+1
| | | | | | This cleans up this header and moves the functionality into more useful places while reducing the include complexity but only pulling in whats required.
* 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.
* Update url setting API to return nserror code instead of calling warn_userVincent Sanders2014-10-291-4/+9
|
* remove the die API from the core.Vincent Sanders2014-10-262-4/+12
| | | | | | | | The die() API for abnormal termination does not belong within the core of netsurf and instead errors are propogated back to the callers. This is the final part of this change and the API is now only used within some parts of the frontends
* Update windows frontend to cope with split operations table headersVincent Sanders2014-10-1610-46/+40
|
* remove unecessary css includes from fronetendsVincent Sanders2014-10-132-8/+5
|
* split version info into its own header and remove unnecessary nesurf.h includesVincent Sanders2014-10-132-2/+1
| | | | | | | | | 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-131-1/+1
| | | | | | | | | | | | 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-131-1/+1
|
* remove use of deprecated netsurf_quit variable in win32Vincent Sanders2014-10-123-25/+35
| | | | | | The core no longer needs to run the event polling loop as fetches are now scheduler driven. This is part of a series which will ultimately remove netsurf_poll callback altogether.
* Pull warning flags out into variables that can be overriden seperately for C ↵Vincent Sanders2014-09-051-1/+1
| | | | and C++
* fixup missing includesVincent Sanders2014-07-061-0/+1
|
* Merge branch 'vince/reformatpending'Vincent Sanders2014-07-061-1/+11
|\ | | | | | | | | Conflicts: amiga/gui.c
| * change reformat to be driven from the scheduler like redrawVincent Sanders2014-07-011-1/+11
| |
* | documentation fixes and cleanupsVincent Sanders2014-07-021-1/+1
|/
* convert all frontends to scheduled fetch operationVincent Sanders2014-06-261-5/+0
|
* extend file table with mkdir all and make fs backing store use it.Vincent Sanders2014-06-051-0/+64
| | | | enable fs backing store for RISC OS.
* fix errors with path_to_url conversionVincent Sanders2014-05-272-0/+4
|
* rework path to url mapping functions to convert from and to nsurlVincent Sanders2014-05-264-76/+134
|
* Shouldn't need desktop/browser_private.h any more.Michael Drake2014-05-151-1/+1
|
* Use clean interface to get bw extents.Michael Drake2014-05-151-8/+10
| | | | Avoids dereffing bw, and using the content_* api.
* Use front end cached scale.Michael Drake2014-05-151-16/+16
| | | | Avoids dereffing struct browser_window all over the place.
* Shouldn't need desktop/browser_private.h any more.Michael Drake2014-05-151-1/+1
|
* Cache scale in gui window.Michael Drake2014-05-151-12/+25
| | | | | | + Uses previously unused scale param of struct gui_window. + Avoids needing to get the scale from the core. + Simplifies code and avoids dereffing bw.
* Clean up gui_window_get_scroll() to use core interface correctly.Michael Drake2014-05-151-10/+12
| | | | Avoids trampling through internal core data structures.
* Use browser_window_has_content() instead of dereffing bw.Michael Drake2014-05-151-1/+1
|
* add backing store storage path to browser initialisationVincent Sanders2014-05-131-1/+1
|
* ensure operations tables are registered as early as possible.Vincent Sanders2014-05-101-8/+12
|
* undo some overzellous include removalVincent Sanders2014-05-091-0/+1
|
* remove unecessary utils/url.h includesVincent Sanders2014-05-093-3/+0
|
* make download_context_get_url() return an nsurl and adapt callers to copeVincent Sanders2014-05-081-3/+8
|
* refactor url utility functions to use standard nserror codes and have ↵Vincent Sanders2014-05-081-2/+2
| | | | appropriate documentation.
* add file operations table and make all frontends use it.Vincent Sanders2014-05-073-25/+59
| | | | | | | | | | | | | This rationalises the path construction and basename file operations. The default implementation is POSIX which works for all frontends except windows, riscos and amiga which have differeing path separators and rules. These implementations are significantly more robust than the previous nine implementations and also do not use unsafe strncpy or buffers with arbitrary length limits. These implementations also carry full documentation comments.
* Improve documentation on mimetype fetcher tableVincent Sanders2014-05-073-9/+0
|
* improve iconv library handlingVincent Sanders2014-04-301-2/+1
|
* fix formatting of defaults makefilesVincent Sanders2014-03-201-13/+13
|
* fixup missing includes from schedule changesVincent Sanders2014-03-091-3/+4
|
* move scheduleing into browser operation tableVincent Sanders2014-03-094-56/+82
|
* Make history internal to browser_window module.Michael Drake2014-02-152-17/+14
|
* Make browser_window_navigate (un)verifiable flag match browser_window_create.Michael Drake2014-02-101-6/+3
|
* Allow tab creation without history clone. Changes browser_window_create and ↵Michael Drake2014-02-102-9/+8
| | | | browser_window_navigate flags.
* Clean up gui_window creation API.Michael Drake2014-02-091-2/+2
|
* Simplify local history interface.Michael Drake2014-02-082-4/+3
|
* move utf8 local conversion operations to tableVincent Sanders2014-02-013-2/+11
|
* fix missing includesVincent Sanders2014-01-291-0/+1
|