summaryrefslogtreecommitdiff
path: root/riscos/gui.c
Commit message (Collapse)AuthorAgeFilesLines
* Put RISC OS filetype content handlers in their own directory.Michael Drake2011-05-091-3/+3
| | | | svn path=/trunk/netsurf/; revision=12336
* Merge branches/jmb/content-factory to trunkJohn Mark Bell2011-05-061-0/+11
| | | | svn path=/trunk/netsurf/; revision=12283
* gui_find_resource --> gui_get_resource_url.Michael Drake2011-03-171-6/+8
| | | | svn path=/trunk/netsurf/; revision=12089
* Pedantic wrap.Michael Drake2011-03-161-1/+2
| | | | svn path=/trunk/netsurf/; revision=12070
* Simple language directory handling.Michael Drake2011-03-151-3/+14
| | | | svn path=/trunk/netsurf/; revision=12069
* Fix in case of malloc failure.Michael Drake2011-03-151-0/+3
| | | | svn path=/trunk/netsurf/; revision=12067
* Add simple resource: path handler. Lacks language support for now.Michael Drake2011-03-151-4/+10
| | | | svn path=/trunk/netsurf/; revision=12066
* Take CSS System Colours from the RISC OS Desktop palette at start and on ↵Steve Fryatt2011-02-251-0/+7
| | | | | | | | mode/palette change. Need to revisit and confirm some of the mappings. svn path=/trunk/netsurf/; revision=11814
* add resource handlingVincent Sanders2011-02-231-0/+6
| | | | | | move gtk and framebuffer to use generic resource handling svn path=/trunk/netsurf/; revision=11772
* Merge branches/stevef/toolbars to trunk.Steve Fryatt2011-02-201-70/+13
| | | | svn path=/trunk/netsurf/; revision=11741
* add options display to about: schemeVincent Sanders2011-02-201-1/+1
| | | | svn path=/trunk/netsurf/; revision=11733
* Make the tree icon dir a non-optionDaniel Silverstone2011-01-201-3/+3
| | | | svn path=/trunk/netsurf/; revision=11422
* Remove unnecessary duplicate parameter.Steve Fryatt2010-12-191-2/+1
| | | | svn path=/trunk/netsurf/; revision=11103
* Track pointer on all treeview windows.Steve Fryatt2010-12-191-2/+6
| | | | svn path=/trunk/netsurf/; revision=11102
* Use dashed boxes for treeview drags.Steve Fryatt2010-12-191-6/+2
| | | | svn path=/trunk/netsurf/; revision=11095
* Remove Hubbub and Wapcaplet initialisation and finalisation.Michael Drake2010-12-041-7/+0
| | | | svn path=/trunk/netsurf/; revision=10980
* Restore toolbar menus in RO treeview windows.Steve Fryatt2010-10-241-6/+7
| | | | svn path=/trunk/netsurf/; revision=10908
* Merge treeview-redux to trunkJohn Mark Bell2010-10-051-39/+42
| | | | svn path=/trunk/netsurf/; revision=10865
* Fix riscos path_add_part, to cope with the fact that newpart is unix-formatJohn Mark Bell2010-09-131-3/+15
| | | | svn path=/trunk/netsurf/; revision=10767
* missing declarationVincent Sanders2010-09-111-0/+1
| | | | svn path=/trunk/netsurf/; revision=10757
* hell with it, heres a version which should result in fewer portability ↵Vincent Sanders2010-09-111-12/+21
| | | | | | complaints svn path=/trunk/netsurf/; revision=10756
* Fix inventory file leafname.Michael Drake2010-07-091-1/+1
| | | | svn path=/trunk/netsurf/; revision=10624
* Check the last character for a path separator, rather than the NULL string ↵Chris Young2010-07-091-1/+1
| | | | | | termination. svn path=/trunk/netsurf/; revision=10622
* Replace unnecessarily complicated path concatenation with something simpler andChris Young2010-07-091-0/+19
| | | | | | easily adaptable to different platform path structures. svn path=/trunk/netsurf/; revision=10621
* Consolidate several 'myrealloc' functions into ns_realloc, rename one which ↵Daniel Silverstone2010-04-301-13/+2
| | | | | | *is* different, thereby eliminating the word 'myrealloc' from the NS codebase svn path=/trunk/netsurf/; revision=10530
* It turns out that realloc(ptr, 0) --> free(ptr) is not actually required by ↵John Mark Bell2010-04-301-0/+5
| | | | | | | | the C standard (whereas realloc(NULL, size) --> malloc(size) is). Therefore, explicitly model the behaviour expected by our libraries (that realloc of 0 size is equivalent to free). svn path=/trunk/netsurf/; revision=10524
* Fix bracket missmatch.Michael Drake2010-04-171-1/+1
| | | | svn path=/trunk/netsurf/; revision=10421
* Fix file: handling on risc os, gtk, windows and framebuffer frontendsVincent Sanders2010-04-161-19/+34
| | | | svn path=/trunk/netsurf/; revision=10419
* Take the easy way out wrt loading messages files: leave it to the RISC OS ↵John Mark Bell2010-04-111-4/+5
| | | | | | frontend to do this. svn path=/trunk/netsurf/; revision=10374
* Make filename_from_path() compile.Michael Drake2010-04-071-1/+1
| | | | svn path=/trunk/netsurf/; revision=10264
* Fix box dump for new cache.Michael Drake2010-04-071-3/+3
| | | | svn path=/trunk/netsurf/; revision=10263
* Don't dump box trees on crash, and fix view source for new cache.Michael Drake2010-04-071-13/+17
| | | | svn path=/trunk/netsurf/; revision=10262
* rationalise the usage of the file schemeVincent Sanders2010-03-311-5/+5
| | | | svn path=/trunk/netsurf/; revision=10221
* second pass at startup refactor removing the gui_init callbackVincent Sanders2010-03-291-17/+17
| | | | svn path=/trunk/netsurf/; revision=10205
* first part of initialisation refactor move gui_init2 into frontendsVincent Sanders2010-03-291-15/+18
| | | | svn path=/trunk/netsurf/; revision=10202
* Merge jmb/new-cache; r=dsilvers,rs=vinceDaniel Silverstone2010-03-281-1/+9
| | | | svn path=/trunk/netsurf/; revision=10180
* Move code which extracts the filename from a given path into frontend.Chris Young2010-03-211-0/+36
| | | | svn path=/trunk/netsurf/; revision=10139
* Only run the scheduler on null poll events.John Mark Bell2010-03-101-1/+10
| | | | | | | | | | | | | | | | Ensure the status bar widget treats its text as const. Fix erroneous free of status bar text in status bar widget destructor. The status bar text is now owned by the core. Schedule a callback to request a redraw from the Wimp when setting status bar text. The previous approach could lead to the Wimp having a long queue of redraw events to issue to us, thus preventing any other application being scheduled. The above changes are based on a patch from Rik Griffin. svn path=/trunk/netsurf/; revision=10126
* Refactor main into the frontendsVincent Sanders2010-01-201-0/+7
| | | | | | remove unused embedded global svn path=/trunk/netsurf/; revision=9851
* Merge branches/MarkieB/gtkmain to trunk.John Mark Bell2009-12-171-1/+1
| | | | svn path=/trunk/netsurf/; revision=9729
* Merge LibCSS port to trunk.John Mark Bell2009-07-231-4/+5
| | | | svn path=/trunk/netsurf/; revision=8752
* Hubbub is no longer optional.John Mark Bell2009-04-171-8/+0
| | | | | | Remove libxml2 parser binding. svn path=/trunk/netsurf/; revision=7115
* Purge WITH_SAVE_COMPLETEJohn Mark Bell2009-03-291-2/+0
| | | | svn path=/trunk/netsurf/; revision=6979
* Aliasing fun. This is ugly.John Mark Bell2009-03-281-52/+57
| | | | svn path=/trunk/netsurf/; revision=6971
* Squash warningsJohn Mark Bell2009-03-271-2/+3
| | | | svn path=/trunk/netsurf/; revision=6927
* Purge WITH_URLJohn Mark Bell2009-02-221-8/+0
| | | | svn path=/trunk/netsurf/; revision=6603
* Purge WITH_URIJohn Mark Bell2009-02-221-6/+0
| | | | svn path=/trunk/netsurf/; revision=6602
* Purge WITH_PRINTJohn Mark Bell2009-02-221-12/+0
| | | | svn path=/trunk/netsurf/; revision=6601
* When UnixLib 5 is used, use its API to do the coredumping. Define ↵John Tytgat2009-01-311-1/+11
| | | | | | | | UnixEnv$coredump (value needs to be a directory to where the coredump files can be written too) instead of NetSurf$CoreDump to enable this. svn path=/trunk/netsurf/; revision=6321
* Assorted saving-related changes (WIP)Adrian Lees2009-01-101-3/+10
| | | | svn path=/trunk/netsurf/; revision=6010