summaryrefslogtreecommitdiff
path: root/frontends/riscos
Commit message (Collapse)AuthorAgeFilesLines
* Fixup everything the semantic patch missedVincent Sanders2017-09-074-9/+15
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-0649-722/+1440
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* Content API: Make content_broadcast take pointer to content_msg_data.Michael Drake2017-08-263-10/+10
|
* rationalise the RISC OS browser window implementationVincent Sanders2017-06-118-2990/+3078
|
* cleanup use of internal frames scrollbar widget headerVincent Sanders2017-06-111-1/+6
|
* RISC OS: Ensure core windows are fully initialised.Michael Drake2017-06-114-4/+4
|
* Split local history data from viewer in headersVincent Sanders2017-06-101-4/+7
| | | | | | This separates the local history data object API from the viewing API. It also changes the api to return nsurl references instead of strings.
* RISC OS: Local history now behaves the same as other core windows.Michael Drake2017-06-101-1/+1
|
* Update documentation removing junk and moving to markdown for most text filesVincent Sanders2017-06-091-2/+1
|
* update RISC OS frontend to use core window for local historyVincent Sanders2017-05-289-364/+545
|
* fix risc os dialog opening relative to parentVincent Sanders2017-05-282-5/+6
|
* update riscos frontend for corewindow API changeVincent Sanders2017-05-231-9/+37
|
* RISC OS: Init core hotlist in read-only mode for external hotlist.Michael Drake2017-04-281-1/+3
| | | | | | | Note, the core hotlist is initialised in either normal or read-only modes. This is done once on application startup. Toggling the external hotlist option at runtime may cause loss of hotlist changes made during the session.
* Update riscos frontend for set_scroll API changeVincent Sanders2017-04-261-93/+86
|
* update riscos frontend to remove reformat APIVincent Sanders2017-04-261-19/+10
|
* RISC OS: Update for core hotlist API change.Michael Drake2017-04-252-2/+3
|
* update riscos frontend to invalidate window APIVincent Sanders2017-04-193-49/+58
|
* clean up some of the doxygen generation warningsVincent Sanders2017-02-193-6/+12
|
* Merge branch 'vince/plotctx'Vincent Sanders2017-02-129-657/+1055
|\
| * update RISC OS plotters to new APIVincent Sanders2017-02-119-657/+1055
| |
* | RISC OS: Initialise nsfont before hotlist.Michael Drake2017-02-121-3/+3
|/ | | | This should allow the treeview to measure the width of label text.
* create netsurf inttypes header to have portable integer formatting macrosVincent Sanders2017-01-212-3/+3
|
* rationalise use of utils/utils.h headerVincent Sanders2017-01-195-5/+1
|
* move plot style header to netsurf include directoryVincent Sanders2017-01-134-4/+6
| | | | | move plotter style header and adjust all callers to use only what they actually require.
* Dave Higton's fix for 'tree' windows not being movable off-screenDaniel Silverstone2017-01-104-4/+4
|
* fixup usage of directory creation macro in MakefilesVincent Sanders2017-01-071-1/+1
|
* RISC OS: Fix hotlist save.Michael Drake2016-12-291-1/+1
| | | | | | | | | | | The read and write paths for hotlist are different: #define CHOICES_PREFIX "<Choices$Write>.WWW.NetSurf." NSOPTION_STRING(hotlist_path, "NetSurf:Hotlist") NSOPTION_STRING(hotlist_save, CHOICES_PREFIX "Hotlist") This switches to using hotlist_save for writing.
* RISC OS: Update for new hotlist API.Michael Drake2016-12-292-4/+5
| | | | This allows the hotlist backend to work before the hotlist window opens.
* Revert "RISC OS: Squash unused variable."Vincent Sanders2016-12-291-0/+2
| | | | This reverts commit 7aa1dd601e40d0684efbdd53b6ce5109846fcc37.
* fix unexpected opening of windows in riscosVincent Sanders2016-12-291-7/+10
| | | | | | closed windows were re-opened in RISC OS because corewindow updates failed to take into account their current state when teh core updated the content size.
* Revert "RISC OS: Ensure core's hotlist_init is called on startup."Michael Drake2016-12-291-11/+10
| | | | This reverts commit 743637a8d2105df6ffc464a3cb4753cdc8c1401f.
* RISC OS: Squash set but unused variable.Michael Drake2016-12-291-3/+1
|
* RISC OS: Squash unused variable.Michael Drake2016-12-291-2/+0
|
* RISC OS: Squash unused variable.Michael Drake2016-12-291-3/+2
| | | | | This has been redundant since frames were moved into the core. The all frames checkbox should be removed from the scale dialogue.
* RISC OS: Squash use of uninitialised variable.Michael Drake2016-12-291-1/+1
|
* RISC OS: Ensure core's hotlist_init is called on startup.Michael Drake2016-12-291-10/+11
| | | | | | Until the core hotlist_init is called, it is impossible to add pages to the hotlist. This means we need to ensure it is called on startup, rather than when first showing the hotlist.
* Merge branch 'vince/ro-corewindow'Vincent Sanders2016-12-2824-2444/+2649
|\ | | | | | | | | Conflicts: frontends/riscos/sslcert.h
| * remove RISC OS treeview wrapper implementationVincent Sanders2016-12-287-1324/+12
| |
| * Update RISC OS ssl certificate viewer to core window interfaceVincent Sanders2016-12-285-229/+304
| |
| * Update RISC OS global history to use core window interfaceVincent Sanders2016-12-287-234/+364
| |
| * Update RISC OS hotlist to use core window interfaceVincent Sanders2016-12-287-412/+536
| |
| * Update RISC OS cookie window to use core window interfaceVincent Sanders2016-12-288-223/+362
| |
| * RISC OS corewindow implementationVincent Sanders2016-12-283-2/+1074
| |
| * reformat riscos treeview source so it can be understoodVincent Sanders2016-12-281-597/+573
| |
* | RISC OS: Remove unused function declaration.Michael Drake2016-12-181-1/+0
| |
* | RISC OS: Free nsoptionsChris Young2016-12-111-0/+1
|/
* fix spelling of retrivedVincent Sanders2016-11-211-2/+2
|
* complete transition to locale independant core operationVincent Sanders2016-09-291-12/+0
| | | | | | | | | | | | The netsurf core no longer uses any locale dependant operations excepting the mall number or cases where such operations are explicitly wanted. the netsurf_init now calls setlocale with the empty string and lets the c library setup as per its specific implementation. any core functionality that specificaly processes ascii text must use the utils/ascii.h header to do so.
* Treeview: Add `treeview_font_size` to options.Michael Drake2016-08-111-0/+6
| | | | Default is 11pt, and RISC OS overrides to 12pt.
* Treeview: Rationalise initialisation and finalisation.Michael Drake2016-08-101-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously the expected behaviour for front ends using the correct API for hotlist, global history, cookie manager, and ssl cert viewer was that the front end would initialise the treeview module on startup and finalise it on application exit. However, this meant that the front ends had to include the core treeview header, which they didn't otherwise need. Since the tree module provided access to the new treeview utilities through the old tree API, and was used by front ends with no changes for the new treeview API, the tree layer refcounted initialisations of treeview-based widgets, and only called the underlying treeview init/fini functions when needed. This change moves that refcounting into the treeview module. Now the hotlist, global history, cookie manager, and ssl cert viewer widgets call call treeview init/fini as part of their own initialisation and finalisation. This means that front ends using the correct APIs for treeview-based widgets don't need to know anything about the underlying treeview, and the tree module compatibility layer has had its treeview refcounting removed. Finally, the treeview_init function took a font size parameter. Now it does not and lit gets font size from config. We probably want to add a new `treeview_font_size` option to nsoptions, and have differnent defaults on different platforms. 12pt on RISC OS, and 11pt elsewhere, most likely.