summaryrefslogtreecommitdiff
path: root/windows/main.c
Commit message (Collapse)AuthorAgeFilesLines
* This moves message loading out of netsurf_init into each frontendVincent Sanders2015-06-211-2/+5
| | | | | | | | | | The translated message loading is dependant on configuration of resource location in each frontend, additionally they should have the ability to deal with errors in this loading in a implementation specific manner. This also extends the message loading API to be capable of loading from an inline memory buffer instead of from a file.
* Change LOG() macro to be varadicVincent Sanders2015-05-281-2/+2
| | | | | | | | | | | | 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.
* Convert windows frontend to using bitmap operation tableVincent Sanders2015-04-151-0/+2
|
* Remove url from content thumbnailers APIVincent Sanders2015-03-151-1/+1
| | | | | | | | | | | | | | | | The content thumbnailers for each frontend were being provided the contents url. This was only ever used to call the urldb thumbnail setting API. This changes it so the single callsite that passed a valid url adds the bitmap to that url itself in desktop_history.c instead of forcing every frontend to require the urldb API. Additionally the old API could pass the url as NULL which was causing asserts where this was not an expected parameter value. Because of this this fixes bug #2286 which was also present in the monkey frontend as both called nsurl_access() on the url without the NULL check and caused an assertion.
* Clean up more windows frontend issues and split out more functionalityVincent Sanders2015-03-131-1/+10
|
* Move win32 window operations into their own moduleVincent Sanders2015-03-121-0/+1
| | | | | | This splits up a great deal of the win32 window code out from other gui code. It also remove large quantities of unused and junk variables and functions.
* remove the die API from the core.Vincent Sanders2014-10-261-0/+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-161-9/+8
|
* remove use of deprecated netsurf_quit variable in win32Vincent Sanders2014-10-121-3/+3
| | | | | | 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.
* fixup missing includesVincent Sanders2014-07-061-0/+1
|
* fix errors with path_to_url conversionVincent Sanders2014-05-271-0/+2
|
* rework path to url mapping functions to convert from and to nsurlVincent Sanders2014-05-261-6/+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
|
* remove unecessary utils/url.h includesVincent Sanders2014-05-091-1/+0
|
* add file operations table and make all frontends use it.Vincent Sanders2014-05-071-0/+1
| | | | | | | | | | | | | 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.
* Allow tab creation without history clone. Changes browser_window_create and ↵Michael Drake2014-02-101-2/+1
| | | | browser_window_navigate flags.
* move utf8 local conversion operations to tableVincent Sanders2014-02-011-0/+1
|
* fix build faliures from fetch table operation refactorVincent Sanders2014-01-231-1/+1
|
* create table for fetcher operations and move all operations into itVincent Sanders2014-01-231-0/+1
|
* fix missing forward declarationVincent Sanders2014-01-161-1/+1
|
* fix windows build errorVincent Sanders2014-01-161-1/+2
|
* split browser gui operations upVincent Sanders2014-01-151-5/+8
|
* move remaining gui operations to tableVincent Sanders2014-01-141-5/+2
|
* move download operations to download tableVincent Sanders2014-01-141-0/+3
|
* move window creation and destruction into tableVincent Sanders2014-01-111-4/+1
|
* Initial conversion of netsurf gui to callback vtableVincent Sanders2014-01-111-6/+6
|
* move windows to new option APIVincent Sanders2013-05-281-7/+22
|
* move options includeVincent Sanders2013-05-281-2/+2
|
* move the logging initialisation out to be call by frontendsVincent Sanders2013-05-231-3/+12
| | | | | This allows each frontend to pass a distinct callback to configure the output file stream appropriately for their use.
* Squash warnings from errorcode shake up.Michael Drake2013-02-221-0/+1
|
* rename flags for browser_window routines to be shorterVincent Sanders2013-02-181-2/+2
|
* change browser_window_create and refactor all callsitesVincent Sanders2013-02-181-5/+22
|
* Fix "error setting certificate verify locations" problem when the Choices ↵Michael Drake2012-10-171-3/+9
| | | | file doesn't exist. Now there's a single place for front ends to set options overrides. Fix nsoption_setnull_charp leak.
* fix windows build format specifiersVincent Sanders2012-08-121-1/+1
| | | | add install target for windows - creates installer rather than actually installing
* fix build warningsVincent Sanders2012-08-101-0/+3
|
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-221-6/+6
| | | | svn path=/trunk/netsurf/; revision=13548
* Build resource: map at start timeJohn Mark Bell2011-10-051-16/+11
| | | | | | Remove stylesheet url globals -- the core will always use resource:{default,quirks,adblock}.css as appropriate svn path=/trunk/netsurf/; revision=12949
* split out drawable window handlingVincent Sanders2011-04-031-0/+163
extensive cleanups fix localhistory svn path=/trunk/netsurf/; revision=12153