summaryrefslogtreecommitdiff
path: root/riscos/dialog.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove useless includes of utils/url.hMichael Drake2014-10-311-1/+0
|
* Don't dereference bw to get window scale.Michael Drake2014-10-151-1/+1
|
* split version info into its own header and remove unnecessary nesurf.h includesVincent Sanders2014-10-131-1/+1
| | | | | | | | | The netsurf.h header should *only* contain the registration, core initialisation and finalisation methods. Version information is best placed in its own header. Also remove any unneeded inclusion of this header limiting it to solely the places the relevant API is required.
* Put the font operations table alongside all the other core APIVincent Sanders2014-10-131-1/+0
| | | | | | | | | | | | The netsurf core is driven from numerous operation tables most of which are now set through a common netsurf_register() interface. The font and plotting interfaces are currently separate and unlike all the other operation tables are modified for differing contexts. This change moves the font operations alongside all the other operations table and remove unnecessary interaction with the renderers font internals. Further this also removes the need for css internals to be visible in frontends.
* try and improve usage of browser window internalsVincent Sanders2014-07-061-0/+1
|
* cleanup RISC OS frontend header usageVincent Sanders2014-06-051-12/+15
|
* Scope reduce a couple of variables.Michael Drake2014-05-261-2/+2
|
* Allow tab creation without history clone. Changes browser_window_create and ↵Michael Drake2014-02-101-2/+1
| | | | browser_window_navigate flags.
* Update copyright dates in modified files.Steve Fryatt2014-01-261-0/+1
|
* Make Open URL dialogue allocate memory for the URL field.Steve Fryatt2014-01-261-9/+66
| | | | Add global constant for URL length, to manage both URL Bar and Open URL.
* Remove old debug window template.Michael Drake2013-10-031-5/+1
|
* Move all mouse tracking into ro_mouse module.Steve Fryatt2013-09-081-0/+2
| | | | | | Add Pointer Entering Window events to wimp_event module and add handlers to all modules requiring mouse tracking. Updated: Treeview, URL Complete, History and GUI Window. Delete all handling for Pointer Entering/Leaving from ro_gui.
* fixup issues with new options API mergeVincent Sanders2013-05-281-1/+1
|
* move options includeVincent Sanders2013-05-281-1/+1
|
* rename flags for browser_window routines to be shorterVincent Sanders2013-02-181-2/+2
|
* change browser_window_create and refactor all callsitesVincent Sanders2013-02-181-8/+26
|
* Move browser_window struct to private header. Places that shouldn't include ↵Michael Drake2012-08-221-3/+2
| | | | | | | | | | | | | | | | | it do, such as front end code. Frontends that have been updated to build: framebuffer gtk monkey riscos TODO: amiga atari beos cocoa windows
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-221-2/+2
| | | | svn path=/trunk/netsurf/; revision=13548
* Don't need to url_normalise, since the core is nsurl based.Michael Drake2011-10-061-3/+2
| | | | svn path=/trunk/netsurf/; revision=12965
* Merge branches/stevef/toolbars to trunk.Steve Fryatt2011-02-201-5/+35
| | | | svn path=/trunk/netsurf/; revision=11741
* Merge treeview-redux to trunkJohn Mark Bell2010-10-051-40/+36
| | | | svn path=/trunk/netsurf/; revision=10865
* Aliasing fixesJohn Mark Bell2009-03-281-4/+5
| | | | svn path=/trunk/netsurf/; revision=6959
* Purge WITH_SEARCHJohn Mark Bell2009-02-221-2/+0
| | | | svn path=/trunk/netsurf/; revision=6604
* Purge WITH_PRINTJohn Mark Bell2009-02-221-2/+0
| | | | svn path=/trunk/netsurf/; revision=6601
* Purge WITH_AUTHJohn Mark Bell2009-02-221-4/+0
| | | | svn path=/trunk/netsurf/; revision=6600
* Purge NETSURF_USE_SSL and WITH_SSLJohn Mark Bell2009-02-221-2/+0
| | | | svn path=/trunk/netsurf/; revision=6599
* Assorted saving-related changes (WIP)Adrian Lees2009-01-101-30/+34
| | | | svn path=/trunk/netsurf/; revision=6010
* A few usability tweaksAdrian Lees2008-12-261-2/+2
| | | | svn path=/trunk/netsurf/; revision=5922
* Merge Mike's tabs changes. Still needs some cleaning.Rob Kendrick2008-08-241-1/+1
| | | | svn path=/trunk/netsurf/; revision=5189
* - Teached ro_gui_set_icon_string() and ro_gui_get_icon_string() about the ↵John Tytgat2008-08-051-3/+3
| | | | | | | | | | | | difference between direct and indirect icons. - ro_gui_get_icon_string(): - Constify return value of ro_gui_get_icon_string() as you really shouldn't change its contents via this pointer. - Enfore NUL string termination as return value (instead of other control char termination) - Merged ro_gui_set_icon_string_le() into ro_gui_set_icon_string() by adding ro_gui_set_icon_string() and extra to_utf8 parameter. - ro_gui_strncmp(): added svn path=/trunk/netsurf/; revision=4907
* - Compiler warning squashJohn Tytgat2008-07-261-1/+1
| | | | | | | - Changed a lineending \n\r -> \n for a couple of files. - More code style conformance. svn path=/trunk/netsurf/; revision=4762
* Update all source code file headers to reflect GPL version 2 only and ↵Vincent Sanders2007-08-081-3/+14
| | | | | | contain appropriate licence text svn path=/trunk/netsurf/; revision=3486
* Move window scaling from platform-specific code to desktop/browser.c. Modify ↵James Bursa2007-08-071-1/+1
| | | | | | gtk gui to handle scaling in the same way as RO. svn path=/trunk/netsurf/; revision=3478
* Remove the netsurf/ from the include paths and rationalise use of <> vs "" ↵Daniel Silverstone2007-05-301-20/+20
| | | | | | | | | | | | | | in includes NetSurf includes are now done with ""s and other system includes with <>s as C intended. The scandeps tool has been updated to only look for ""ed includes, and to verify that the files exist in the tree before adding them to the dependency lines. The depend rule has therefore been augmented to make sure the autogenerated files are built before it is run. This is untested under self-hosted RISC OS builds. All else tested and works. svn path=/trunk/netsurf/; revision=3307
* Call close functions when automatically closing child windows and when ↵Richard Wilson2007-03-261-3/+3
| | | | | | automatically handlign Cancel buttons. svn path=/trunk/netsurf/; revision=3225
* Dynamically update scale view (implement 1556975) and prevent double redraws.Richard Wilson2007-03-031-0/+10
| | | | svn path=/trunk/netsurf/; revision=3191
* Fix invalid window initialisationRichard Wilson2006-12-011-3/+1
| | | | svn path=/trunk/netsurf/; revision=3083
* Update project URL.Michael Drake2006-11-271-2/+2
| | | | svn path=/trunk/netsurf/; revision=3073
* Fix 1553282.Richard Wilson2006-09-081-33/+14
| | | | svn path=/trunk/netsurf/; revision=2932
* Finish event based GUI system transition and begin code cleanup.Richard Wilson2006-09-061-1/+0
| | | | svn path=/trunk/netsurf/; revision=2922
* Allow the viewing of the entire SSL certificate chain.Richard Wilson2006-07-161-1/+7
| | | | svn path=/trunk/netsurf/; revision=2755
* Add basic cookie viewer, make trees use textarea components for UTF8 ↵Richard Wilson2006-07-131-0/+4
| | | | | | editing, trim headers, fix tree redraw issues. svn path=/trunk/netsurf/; revision=2739
* Finish history cloning.Richard Wilson2006-04-221-1/+1
| | | | svn path=/trunk/netsurf/; revision=2547
* [project @ 2006-03-25 22:48:32 by jmb]John Mark Bell2006-03-251-14/+3
| | | | | | | Assert that template names are <=11 chars long. Rename con_language to con_lang svn path=/import/netsurf/; revision=2165
* [project @ 2006-03-25 20:13:51 by bursa]James Bursa2006-03-251-1/+11
| | | | | | Make dialogs open fully on screen even if they are already open. svn path=/import/netsurf/; revision=2163
* [project @ 2006-02-23 15:06:53 by jmb]John Mark Bell2006-02-231-18/+26
| | | | | | | | | | Handle invalid SSL certificates better - UI still needs work. Modify fetch callback data parameter type to remove compiler warnings. Constify things. Lose global ssl_verify_certificates option. Fix issue when closing a dialog without input focus. svn path=/import/netsurf/; revision=2092
* [project @ 2006-02-15 23:09:53 by adrianl]Adrian Lees2006-02-151-0/+1
| | | | | | Extend text selection, copying, saving and searching code to handle textplain contents; modified textplain code to accept other line terminators svn path=/import/netsurf/; revision=2081
* [project @ 2006-01-25 12:49:51 by rjw]Richard Wilson2006-01-251-0/+14
| | | | | | Possible workaround for OS template loading bug. svn path=/import/netsurf/; revision=2041
* [project @ 2006-01-25 00:33:00 by rjw]Richard Wilson2006-01-251-1/+2
| | | | | | Supress error message if parent window is already closed. svn path=/import/netsurf/; revision=2037
* [project @ 2006-01-08 01:51:33 by jmb]John Mark Bell2006-01-081-18/+12
| | | | | | | | | | Make data file locations user-configurable (no UI for this as yet) Reduce intrusiveness of ncos modifications Fix GTK build Remove Cookies file details from Messages (this data never belonged in there anyway) Make gui_init more robust against memory exhaustion. svn path=/import/netsurf/; revision=2014