summaryrefslogtreecommitdiff
path: root/windows/window.c
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-151-1741/+0
|
* update windows frontend to not use depricated warn_user APIVincent Sanders2016-04-271-6/+6
|
* fix new creating new window assertVincent Sanders2016-03-201-6/+33
|
* Fix size_t printf formattingVincent Sanders2016-03-171-5/+5
| | | | | | | 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.
* fixup all the remaining logging macro callsitesVincent Sanders2015-05-281-7/+7
| | | | | 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-281-35/+30
| | | | | | | | | | | | 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.
* Fix bounding on windows frontend window scrollingVincent Sanders2015-04-181-4/+24
|
* To avoid namespace conflicts with ncurses add NetSurf key prefix.Witold Filipczyk2015-03-271-5/+5
| | | | Adds a NetSurf key code prefix of NS_ to all key codes.
* Clean up more windows frontend issues and split out more functionalityVincent Sanders2015-03-131-68/+49
|
* Move win32 window operations into their own moduleVincent Sanders2015-03-121-4/+1670
| | | | | | 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.
* split out drawable window handlingVincent Sanders2011-04-031-0/+52
extensive cleanups fix localhistory svn path=/trunk/netsurf/; revision=12153