summaryrefslogtreecommitdiff
path: root/windows
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-1587-8790/+0
|
* remove unused windows pretile code and plotter API useVincent Sanders2016-05-042-51/+2
|
* update windows frontend to not use depricated warn_user APIVincent Sanders2016-04-277-48/+47
|
* use the miscellaneous table warning entryVincent Sanders2016-04-253-42/+23
| | | | | | | change all the frontends to provide the warning callback in the miscelaneous table instead of using the warn_user function. Changing all the warn_user callsites still requires completion.
* update windows frontend to use font layout tableVincent Sanders2016-04-243-21/+19
|
* Split utils header into string functions and everything elseVincent Sanders2016-04-213-0/+3
| | | | | split out the string handling API from the rest of the utils header and fix up all the fallout.
* Reduce unecessary use of directory entry headersVincent Sanders2016-04-191-0/+1
| | | | | | | The config header was causing many source files to unecessarily include the dirent headers causing extra dependancies. This has been fixed by providing a utility dirent header that provides a common API across all platforms while removing the unecessary dirent header usage.
* move sys/time.h support functionality out of generic headerVincent Sanders2016-04-192-2/+2
| | | | | | | The utils header is a large collection of functionality for several system headers and API. This splits out the ones from sys/time.h into a separate header reducing the need for many unconnected source files to include the system header unecessarily.
* complete the rename of the gui browser tableVincent Sanders2016-04-161-2/+2
| | | | | | When the operations tables were created the browser table was renamed to miscellaneous except the actual rename patch was never applied, this fixes that situation.
* update version info for next development cycleVincent Sanders2016-04-061-1/+1
|
* fix broken windows frontend font handlingVincent Sanders2016-03-221-51/+109
|
* Fix obvious bug in nsfont_split.Michael Drake2016-03-211-3/+2
| | | | | Was using nsfont_position_in_string instead of nsfont_width, resulting in returning nonsense actual_x and char_offset values.
* Log nsfont_width failure.Michael Drake2016-03-211-0/+2
|
* Remove printf logging.Michael Drake2016-03-211-1/+0
|
* Add missing resources to windows frontendVincent Sanders2016-03-204-0/+12
|
* fix new creating new window assertVincent Sanders2016-03-201-6/+33
|
* add certificate authority bundle handling to windowsVincent Sanders2016-03-203-1/+30
| | | | | | | | | The curl certificate handling on windows does not have a compiled in default location so it is necessary to attempt to find a default bundle. This provides a bundle in the install and code to set it as the default bundle location.
* Fix size_t printf formattingVincent Sanders2016-03-172-10/+17
| | | | | | | The printf formatting for size_t is set in c99 as %zu but in windows it is %Iu this is solved by adding and inttypes style PRI macro for size_t This also uses this macro everywhere size_t is formatted.
* frontends should not call the reformat API directlyVincent Sanders2016-03-161-1/+1
| | | | | | | The reformat API locking semantics are challenging to understand, efectiveky browser_window_reformat should never be called by frontend code directly except explicitly on the reformat callback. Otherwise the content may already be locked and the system winds up asserting.
* split out windows file operations into a separeate moduleVincent Sanders2015-06-307-265/+333
|
* 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.
* fixup all the remaining logging macro callsitesVincent Sanders2015-05-285-42/+42
| | | | | The semantic patch tool appears to have missed some difficult to reason about callsites which have now been manually cleaned up
* Change LOG() macro to be varadicVincent Sanders2015-05-2812-98/+82
| | | | | | | | | | | | 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 unecessary dll from windows installer scriptVincent Sanders2015-04-291-2/+0
|
* Updated mingw32 toolchain names the regex library something differentVincent Sanders2015-04-281-1/+1
|
* Convert windows to use the bitmap render interfaceVincent Sanders2015-04-243-109/+84
|
* Fix bounding on windows frontend window scrollingVincent Sanders2015-04-181-4/+24
|
* move the mandantory library config for libcss and libdom to core makefileVincent Sanders2015-04-171-6/+1
|
* Convert windows frontend to using bitmap operation tableVincent Sanders2015-04-154-27/+45
|
* Fix win32 frontend bitmap creation with flagsVincent Sanders2015-04-121-1/+5
| | | | | | The windows win32 frontend bitmap creation was ignoring the creation flags, specifically those related to bitmap opacity so was plotting images as transparent even if they had no alpha channel values set.
* Fix up some doxygen errorsVincent Sanders2015-04-031-1/+1
|
* To avoid namespace conflicts with ncurses add NetSurf key prefix.Witold Filipczyk2015-03-272-12/+12
| | | | Adds a NetSurf key code prefix of NS_ to all key codes.
* Remove url from content thumbnailers APIVincent Sanders2015-03-153-12/+8
| | | | | | | | | | | | | | | | 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.
* Cleanup windows download window headerVincent Sanders2015-03-132-30/+23
|
* Clean up more windows frontend issues and split out more functionalityVincent Sanders2015-03-1314-220/+303
|
* Move win32 window operations into their own moduleVincent Sanders2015-03-126-1701/+1702
| | | | | | 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-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
|