summaryrefslogtreecommitdiff
path: root/frontends/framebuffer
Commit message (Collapse)AuthorAgeFilesLines
* add miscellaneous event to browser window callback tableVincent Sanders2019-08-201-4/+33
| | | | | | | | | | | | 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.
* change browser_window_redraw to use unscaled coordinatesVincent Sanders2019-08-041-9/+6
|
* Corewindow: Sanitise scrolling API.Michael Drake2019-08-031-6/+23
| | | | | | | 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.
* make use of improved browser_window_set_scale API in frontendsVincent Sanders2019-08-031-16/+3
|
* change browser_window_get_features to use unscaled coordinatesVincent Sanders2019-08-031-5/+6
|
* change browser_window_mouse_track to use unscaled coordinatesVincent Sanders2019-08-031-4/+3
|
* change browser_window_mouse_click to use unscaled coordinatesVincent Sanders2019-08-031-11/+10
| | | | | this means frontends no longer need to scale mouse click events thus simplifying their implementation.
* Framebuffer: Remove bogus comment.Michael Drake2019-08-031-1/+1
|
* Framebuffer: Add keyboard controls for scaling.Michael Drake2019-08-031-0/+34
|
* framebuffer/local_history: Scroll to cursor on openDaniel Silverstone2019-08-021-0/+1
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* remove scaled parameter from get_dimensionsVincent Sanders2019-08-021-10/+1
|
* split browser and browser_window operationsVincent Sanders2019-08-011-1/+1
|
* Declare global variables as extern in headersMichael Forney2019-06-301-1/+1
| | | | | | | Otherwise, each source file that includes the header will create a new definition, which are usually merged together by the linker. Multiple definitions of an object is not allowed in ISO C.
* free language vector in framebuffer resource setupVincent Sanders2019-02-211-0/+2
|
* make framebuffer use the language environment for the UI resourcesVincent Sanders2019-02-1716-9/+133
|
* fix case of framebuffer message installVincent Sanders2019-02-161-2/+2
|
* Framebuffer: Add symlink to build messages resourceDaniel Silverstone2019-02-151-0/+1
| | | | | | | | | Since framebuffer lacks the language directories in its resources currently, we need a symbolic link to the en/Messages built in the top level resources directory in order that nsfb can run without the Messages file having been installed previously. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Improve framebuffer install ruleVincent Sanders2019-02-152-8/+9
|
* fix feature flags for openbsdAnthony J. Bentley2019-02-151-7/+12
|
* Use pkg-config for freetype2 if available else fallback to old scriptVincent Sanders2018-12-181-6/+22
|
* fix framebuffer BUILD libpng flags on freebsdVincent Sanders2018-09-071-2/+7
|
* Change BUILD compiler target to ccVincent Sanders2018-09-071-14/+23
| | | | | | | | The use of gcc explicitly does not work on systems where the local building system only has the clang compiler. Framebuffer was the only user of the BUILD_CC target for local tooling and its handling of flags was also improved.
* stop defining _XOPEN_SOURCEVincent Sanders2018-09-061-1/+0
| | | | | This is necessary with some libc as it overrides _POSIX_C_SOURCE and removes definitions of scandir etc.
* Plotters: Remove width param from path plotter.Michael Drake2018-05-231-2/+0
| | | | We now use the stroke_width in the plot_style.
* Plotters: Change stroke width in the plot_style_t to fixed point.Michael Drake2018-05-231-2/+4
|
* Plotters: Add plot_style_fixed type, and use for font size.Michael Drake2018-05-233-3/+3
|
* remove spurious messages file from framebuffer install targetVincent Sanders2018-05-221-1/+1
|
* Treat the .c font file as a sentinel for the .h, reduces rebuilds of fonts in -jDaniel Silverstone2018-04-221-1/+1
|
* Initial shuffle of stuff out of !NetSurfDaniel Silverstone2018-04-2210-10/+9
|
* Rework use of split-messages to clean up and use -zDaniel Silverstone2018-04-221-1/+2
|
* Framebuffer: Squash switch fall through warning.Michael Drake2018-04-211-1/+2
|
* Add missing dependency between font_internal and the generated fontsDaniel Silverstone2018-04-211-1/+3
|
* Framebuffer: Squash fallthrough warnings in internal font handling.Michael Drake2018-01-211-0/+4
|
* Framebuffer: Tweak comment to avoid fallthrough warning.Michael Drake2018-01-211-2/+1
|
* Handle HOME and END keys in framebufferAshish Gupta2017-10-211-0/+16
|
* Framebuffer: Don't create 0x0 bitmaps if content width is 0.Michael Drake2017-10-131-5/+5
|
* Finalise nslog layer properly in closedownDaniel Silverstone2017-09-101-0/+3
|
* update framebuffer toolkit logging to use a ctagoryVincent Sanders2017-09-072-26/+22
|
* revert semantic patch change to framebuffer font toolVincent Sanders2017-09-071-106/+92
|
* Update scheduler logging to use catagoryVincent Sanders2017-09-071-10/+7
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-0611-145/+179
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* Framebuffer: Ensure local history corewindow is fully initialised.Michael Drake2017-06-111-1/+1
|
* Core window: Ensure all front ends initialise drag_status.Michael Drake2017-06-102-2/+3
|
* Framebuffer: Return on successful non-repeating bitmap plot.Michael Drake2017-06-101-0/+1
|
* Framebuffer: Fix bitmap plotter return value.Michael Drake2017-06-101-1/+3
| | | | Caused local history to give up after the first bitmap plot.
* update framebuffer to have corewindow interface and use it for localhistoryVincent Sanders2017-06-108-167/+668
|
* Local history: Pass clip rectangle around as struct.Michael Drake2017-06-101-5/+7
|
* Update framebuffer frontend for set_scroll API changeVincent Sanders2017-04-261-9/+22
|
* update framebuffer frontend to remove reformat APIVincent Sanders2017-04-261-14/+13
|
* Update framebuffer frontend to use invalidate window area APIVincent Sanders2017-04-231-14/+25
|