summaryrefslogtreecommitdiff
path: root/frontends/windows/corewindow.c
Commit message (Collapse)AuthorAgeFilesLines
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* Core window: Ensure all front ends initialise drag_status.Michael Drake2017-06-101-1/+2
|
* Fix windows frontend click and invalidate region scroll offsetsVincent Sanders2017-06-091-9/+39
|
* Windows: Core window: No need to erase the invalidated region on scroll.Michael Drake2017-06-091-2/+2
| | | | | The core is responsible for rendering the invalidated region, so this avoids the area getting painted twice.
* make windows frontend use corewindow API for local history windowVincent Sanders2017-06-011-1/+67
|
* fixup windows invalidate callVincent Sanders2017-05-231-3/+1
|
* update windows frontend for corewindow API changeVincent Sanders2017-05-231-10/+31
|
* rationalise use of utils/utils.h headerVincent Sanders2017-01-191-1/+1
|
* move plot style header to netsurf include directoryVincent Sanders2017-01-131-1/+0
| | | | | move plotter style header and adjust all callers to use only what they actually require.
* improve doc comments in windows corewindow handlingVincent Sanders2016-12-261-2/+9
|
* add corewindow support for windows frontendVincent Sanders2016-11-191-0/+472