summaryrefslogtreecommitdiff
path: root/riscos/gui.c
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-151-2522/+0
|
* fix typo in riscos wan_user updateVincent Sanders2016-04-251-3/+2
|
* use the miscellaneous table warning entryVincent Sanders2016-04-251-38/+41
| | | | | | | change all the frontends to provide the warning callback in the miscelaneous table instead of using the warn_user function. Changing all the warn_user callsites still requires completion.
* update risc os frontend for layout tableVincent Sanders2016-04-241-0/+1
|
* complete the rename of the gui browser tableVincent Sanders2016-04-161-2/+2
| | | | | | When the operations tables were created the browser table was renamed to miscellaneous except the actual rename patch was never applied, this fixes that situation.
* RISC OS: explicitly handle SIGOSERRORJohn-Mark Bell2015-08-151-1/+4
|
* This moves message loading out of netsurf_init into each frontendVincent Sanders2015-06-211-2/+5
| | | | | | | | | | The translated message loading is dependant on configuration of resource location in each frontend, additionally they should have the ability to deal with errors in this loading in a implementation specific manner. This also extends the message loading API to be capable of loading from an inline memory buffer instead of from a file.
* Set the default cache size on RISC OS to zero (off)Vincent Sanders2015-06-011-1/+6
|
* fixup all the remaining logging macro callsitesVincent Sanders2015-05-281-2/+2
| | | | | The semantic patch tool appears to have missed some difficult to reason about callsites which have now been manually cleaned up
* Change LOG() macro to be varadicVincent Sanders2015-05-281-62/+40
| | | | | | | | | | | | This changes the LOG macro to be varadic removing the need for all callsites to have double bracketing and allows for future improvement on how we use the logging macros. The callsites were changed with coccinelle and the changes checked by hand. Compile tested for several frontends but not all. A formatting annotation has also been added which allows the compiler to check the parameters and types passed to the logging.
* Update RISC OS frontend to use bitmap operation tableVincent Sanders2015-04-151-0/+2
|
* RISC OS: squash warnings from GCC 4.7John-Mark Bell2015-02-251-1/+1
|
* Fix my spelling of teh everywhereVincent Sanders2014-11-181-1/+1
|
* Doxygen cleanups in frontendsVincent Sanders2014-11-111-3/+3
|
* Clean up saving as PDFVincent Sanders2014-10-261-7/+0
| | | | | | | | | | | | This removes the global PDF_Password interface that had completely bitrotted and moves it into the standard misc operation table with a sensible defualt implementation. This also cleans up and fixes the gtk frontend implementation of the pdf password callback so it compiles. Finally this moves the implementation to a sensible place alongside the other exporters reducing target makefile complexity futher.
* Move create_form_select_menu to window gui table.Michael Drake2014-10-241-1/+0
|
* Update the RISC OS frontend to cope with split operations table headersVincent Sanders2014-10-161-1/+2
|
* remove use of deprecated netsurf_quit variable in riscosVincent Sanders2014-10-131-4/+7
| | | | | | The core no longer needs to run the event polling loop as fetches are now scheduler driven. This is part of a series which will ultimately remove netsurf_poll callback altogether.
* fix DOM tree dump debugVincent Sanders2014-08-041-1/+1
|
* change reformat to be driven from the scheduler like redrawVincent Sanders2014-07-011-8/+6
|
* convert all frontends to scheduled fetch operationVincent Sanders2014-06-261-8/+3
|
* additional risc os header cleanupsVincent Sanders2014-06-051-0/+1
|
* cleanup RISC OS frontend header usageVincent Sanders2014-06-051-0/+2
|
* extend file table with mkdir all and make fs backing store use it.Vincent Sanders2014-06-051-23/+60
| | | | enable fs backing store for RISC OS.
* remove forward declarations from risc os gui.cVincent Sanders2014-06-041-1204/+1110
| | | | cleanup filetype magic numbers.
* Check correct variable for NULL.Michael Drake2014-05-301-2/+2
|
* make launch_url core operation use nsurlVincent Sanders2014-05-271-3/+4
|
* fix errors with path_to_url conversionVincent Sanders2014-05-271-4/+5
|
* rework path to url mapping functions to convert from and to nsurlVincent Sanders2014-05-261-144/+169
|
* Remove unused variable and assignements to it.Michael Drake2014-05-261-4/+0
|
* Scope reduce some variables.Michael Drake2014-05-261-7/+7
|
* fix riscos mkpath and error reporting in save completeVincent Sanders2014-05-171-2/+2
|
* ensure all vmkpath implementations check their parametersVincent Sanders2014-05-171-0/+4
|
* add backing store storage path to browser initialisationVincent Sanders2014-05-131-1/+1
|
* ensure operations tables are registered as early as possible.Vincent Sanders2014-05-101-2/+7
|
* refactor url utility functions to use standard nserror codes and have ↵Vincent Sanders2014-05-081-5/+5
| | | | appropriate documentation.
* add file operations table and make all frontends use it.Vincent Sanders2014-05-071-45/+143
| | | | | | | | | | | | | This rationalises the path construction and basename file operations. The default implementation is POSIX which works for all frontends except windows, riscos and amiga which have differeing path separators and rules. These implementations are significantly more robust than the previous nine implementations and also do not use unsafe strncpy or buffers with arbitrary length limits. These implementations also carry full documentation comments.
* Remove excessive logging.Michael Drake2014-04-181-2/+2
|
* Add logging to view-source filename generation.Michael Drake2014-04-181-0/+2
|
* Fix leak of url found by cppcheck.Michael Drake2014-04-021-1/+5
|
* move page search gui callbacks to their own operations tableVincent Sanders2014-03-181-0/+1
|
* move scheduleing into browser operation tableVincent Sanders2014-03-091-3/+5
|
* Make browser_window_navigate (un)verifiable flag match browser_window_create.Michael Drake2014-02-101-2/+1
|
* Allow tab creation without history clone. Changes browser_window_create and ↵Michael Drake2014-02-101-9/+5
| | | | browser_window_navigate flags.
* move utf8 local conversion operations to tableVincent Sanders2014-02-011-1/+2
|
* make the clipboard operation table and members static to textselection ↵Vincent Sanders2014-02-011-10/+8
| | | | module and cleanup unnecessary includes
* Improve handling of Message_MenusDeleted so that we don't close whatever ↵Steve Fryatt2014-01-281-1/+2
| | | | menu tree is open at the time.
* fix errors in url_to_path tfetch table changesVincent Sanders2014-01-251-1/+1
|
* move path_to_url and url_to_path to fetch operation tableVincent Sanders2014-01-251-130/+131
|
* create table for fetcher operations and move all operations into itVincent Sanders2014-01-231-3/+11
|