summaryrefslogtreecommitdiff
path: root/frontends/gtk/corewindow.c
Commit message (Collapse)AuthorAgeFilesLines
* remove a warning on openbsdVincent Sanders2018-08-281-1/+1
|
* GTK: Corewindow: Fix modifier keys on mouse click.Michael Drake2017-09-091-3/+7
| | | | Modifiers were getting unset for the click (release) events.
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-2/+2
|
* GTK: Ensure drag status is initialised in core windows.Michael Drake2017-06-101-0/+1
|
* update gtk frontend for corewindow API changeVincent Sanders2017-05-231-8/+23
|
* remove redundant global contextVincent Sanders2017-02-151-5/+0
|
* rationalise use of utils/utils.h headerVincent Sanders2017-01-191-1/+0
|
* move plot style header to netsurf include directoryVincent Sanders2017-01-131-1/+1
| | | | | move plotter style header and adjust all callers to use only what they actually require.
* improve gtk corewindow documentationVincent Sanders2016-12-261-14/+10
|
* clean up documentation of GTK core window interfacesVincent Sanders2016-10-261-15/+116
|
* fix gtk3 build with corewindowVincent Sanders2016-10-051-4/+0
|
* add nsgtk support for core window APIVincent Sanders2016-07-311-0/+638