summaryrefslogtreecommitdiff
path: root/frontends/atari/treeview.c
Commit message (Collapse)AuthorAgeFilesLines
* Core window: Constify the core_window handle through the getters.Michael Drake2020-02-221-2/+2
|
* Corewindow: Sanitise scrolling API.Michael Drake2019-08-031-10/+22
| | | | | | | Now the core has a helper so that all the front ends don't need to implement the scroll to show area API. Now they simply have get and set scroll APIs.
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* clean up atari treeview code, stop it including headers it does not needVincent Sanders2017-08-101-442/+464
|
* update atari frontend for corewindow API changeVincent Sanders2017-05-231-17/+27
|
* update atari plotters to new APIVincent Sanders2017-02-121-1/+5
|
* fix warnings and errors in atari frontendVincent Sanders2017-01-211-10/+11
|
* create netsurf inttypes header to have portable integer formatting macrosVincent Sanders2017-01-211-1/+1
|
* move core window API into netsurf header pathVincent Sanders2016-08-181-1/+1
|
* remove unecessary core window header usageVincent Sanders2016-06-301-0/+1
|
* remove unecessary content API usage from atari frontendVincent Sanders2016-06-081-1/+0
|
* move plotters header into public APIVincent Sanders2016-05-301-1/+1
|
* move mouse and pointer state header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+794