summaryrefslogtreecommitdiff
path: root/windows/gui.c
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-151-170/+0
|
* update windows frontend to not use depricated warn_user APIVincent Sanders2016-04-271-1/+11
|
* split out windows file operations into a separeate moduleVincent Sanders2015-06-301-262/+0
|
* 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.
* Remove url from content thumbnailers APIVincent Sanders2015-03-151-0/+2
| | | | | | | | | | | | | | | | 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-81/+0
|
* Move win32 window operations into their own moduleVincent Sanders2015-03-121-1667/+15
| | | | | | 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.
* doxygen cleanups in utilsVincent Sanders2014-11-121-1/+3
|
* Doxygen cleanups in frontendsVincent Sanders2014-11-111-6/+14
|
* 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
|
* Update url setting API to return nserror code instead of calling warn_userVincent Sanders2014-10-291-4/+9
|
* Update windows frontend to cope with split operations table headersVincent Sanders2014-10-161-10/+12
|
* remove unecessary css includes from fronetendsVincent Sanders2014-10-131-7/+5
|
* split version info into its own header and remove unnecessary nesurf.h includesVincent Sanders2014-10-131-1/+0
| | | | | | | | | 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.
* add API to set DPIVincent Sanders2014-10-131-1/+1
|
* remove use of deprecated netsurf_quit variable in win32Vincent Sanders2014-10-121-22/+28
| | | | | | 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.
* change reformat to be driven from the scheduler like redrawVincent Sanders2014-07-011-1/+11
|
* 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-271-0/+2
|
* rework path to url mapping functions to convert from and to nsurlVincent Sanders2014-05-261-11/+133
|
* 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 file operations table and make all frontends use it.Vincent Sanders2014-05-071-25/+57
| | | | | | | | | | | | | 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-071-2/+0
|
* move scheduleing into browser operation tableVincent Sanders2014-03-091-2/+3
|
* Make history internal to browser_window module.Michael Drake2014-02-151-7/+7
|
* 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-101-7/+7
| | | | browser_window_navigate flags.
* Clean up gui_window creation API.Michael Drake2014-02-091-2/+2
|
* Simplify local history interface.Michael Drake2014-02-081-2/+2
|
* move path_to_url and url_to_path to fetch operation tableVincent Sanders2014-01-251-0/+2
|
* create table for fetcher operations and move all operations into itVincent Sanders2014-01-231-2/+13
|
* fix windows build errorVincent Sanders2014-01-161-1/+1
|
* move filename_from_path and path_add_part into gui operation tablesVincent Sanders2014-01-161-0/+39
|
* split browser gui operations upVincent Sanders2014-01-151-7/+12
|
* move remaining gui operations to tableVincent Sanders2014-01-141-15/+4
|
* move teh final optional window operations into the tableVincent Sanders2014-01-131-24/+0
|
* move four more optional window operations to tableVincent Sanders2014-01-131-7/+9
|
* move two more mandantory window operations to tableVincent Sanders2014-01-131-2/+4
|
* move window scroll getter and setter into operations tableVincent Sanders2014-01-131-1/+6
|
* move mandantory window update and redraw operations into tableVincent Sanders2014-01-121-13/+15
|
* move more optional window operations into table including removing unused ↵Vincent Sanders2014-01-121-21/+0
| | | | hide_pointer operation altogether
* split gui operations into core and window and move more operations into tablesVincent Sanders2014-01-121-26/+12
|
* move set title, set url, start and stop throbber window operations to gui tableVincent Sanders2014-01-121-4/+10
|
* move window creation and destruction into tableVincent Sanders2014-01-111-6/+14
|