summaryrefslogtreecommitdiff
path: root/frontends/windows/drawable.c
Commit message (Collapse)AuthorAgeFilesLines
* make win32 keyboard handling in browsing window functionalVincent Sanders2019-05-091-36/+86
| | | | | | | | | makes the drawable area widget for the browser display use windows unicode input and copes with surrogate pairs for full unicode input coverage. fixes the keydown handling to only the necessary navigation operations like left, right up and down etc.
* implement windows clipboard functionalityVincent Sanders2019-05-091-0/+23
| | | | | | This allows clipboard to operate (cut, copy, paste and delete) in the win32 front end. The clipboard is set and read in windows unicode mode and then converted to/from utf-8 for the browser core.
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-14/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* make windows frontend use corewindow API for local history windowVincent Sanders2017-06-011-4/+3
|
* Update windows frontend for set_scroll API changeVincent Sanders2017-04-261-5/+8
|
* cleanup windows frontend documentation comments and spellingVincent Sanders2017-02-171-12/+31
|
* rationalise use of utils/utils.h headerVincent Sanders2017-01-191-1/+0
|
* move key press enums and operations to their own headerVincent Sanders2016-07-011-1/+1
|
* fix missing includes from header API changesVincent Sanders2016-05-301-3/+4
|
* move plotters header into public APIVincent Sanders2016-05-301-1/+1
|
* move desktop window header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+625