summaryrefslogtreecommitdiff
path: root/frontends/beos/window.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Haiku: Better map mouse cursorsFrançois Revol2020-05-091-68/+54
| | | | | | Drop custom cursor bitmaps in favor of the system ones. We only miss the wait cursor now, but the progress one should do.
* add miscellaneous event to browser window callback tableVincent Sanders2019-08-201-7/+45
| | | | | | | | | | | | extend the browser window callback table with a miscallaneous event entry. This is used to replace all browser window callbacks which take no parameters. This reduces the API surface from seven separate calls to a single call with an enumeration which may be readily extended. The initial implementation in the frontends simply calls the original implementations to reduce scope for errors.
* remove shadow scale variable from beosVincent Sanders2019-08-051-9/+0
|
* change browser_window_mouse_track to use unscaled coordinatesVincent Sanders2019-08-031-3/+4
|
* change browser_window_mouse_click to use unscaled coordinatesVincent Sanders2019-08-031-4/+4
| | | | | this means frontends no longer need to scale mouse click events thus simplifying their implementation.
* remove scaled parameter from get_dimensionsVincent Sanders2019-08-021-8/+1
|
* Haiku: Update for new HTTP auth API.Michael Drake2018-08-151-6/+9
|
* Fixup everything the semantic patch missedVincent Sanders2017-09-071-1/+1
|
* Use coccinelle to change logging macro calls in c++Vincent Sanders2017-09-061-9/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.cpp');do spatch --c++ --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);
* Fix bug 0002555: "No GC" alert when resizing the windowFrançois Revol2017-08-211-3/+0
| | | | | We don't need to touch the GC when invalidating anyway, so just drop those calls.
* fixup errors introduced in set_scroll API changeVincent Sanders2017-04-261-6/+10
|
* Update beos frontend for set_scroll API changeVincent Sanders2017-04-261-6/+19
|
* update beos frontend to remove reformat APIVincent Sanders2017-04-261-35/+25
|
* Update beos frontend to use invalidate window area APIVincent Sanders2017-04-231-26/+28
|
* haiku: Fix popup menuFrançois Revol2016-11-211-2/+1
| | | | Only the reload entry is enabled for now.
* move key press enums and operations to their own headerVincent Sanders2016-07-011-1/+1
|
* msplit public url database API out for frontendsVincent Sanders2016-06-131-1/+2
|
* remove unecessary content header inclusion from beos frontendVincent Sanders2016-06-111-16/+16
|
* move plotters header into public APIVincent Sanders2016-05-301-1/+1
|
* move desktop window header into public APIVincent Sanders2016-05-301-1/+1
|
* move mouse and pointer state header into public APIVincent Sanders2016-05-301-1/+1
|
* move clipboard header into public APIVincent Sanders2016-05-301-1/+1
|
* move window header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+1382