summaryrefslogtreecommitdiff
path: root/riscos/window.c
Commit message (Collapse)AuthorAgeFilesLines
* Add undo (F8) and redo (F9) keys. If caret is not in textarea, F8 is still ↵Michael Drake2013-10-011-0/+7
| | | | view source.
* Allow ro_mouse to enable null polls; remove unused global variables.Steve Fryatt2013-09-081-8/+1
| | | | | Implement ro_mouse_poll_interval() to allow ro_mouse to influence null polling. Remove unused calls to drag type globals.
* Move all mouse tracking into ro_mouse module.Steve Fryatt2013-09-081-0/+34
| | | | | | 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.
* Restructure handling of DragEnd events.Steve Fryatt2013-09-081-19/+16
| | | | | | | | | | | Add ro_mouse module to process mouse events during drags and on null polls. Implement support in ro_mouse for tracking the mouse during drags and passing on DragEnd events. Remove ro_gui_drag_end() and update all of its clients so that they use ro_mouse. Remove the unused ro_gui_window_frame_resize_end(). Termination of save drags with Escape is unimplemented, but appears broken anyway. The use of gui_drag_type is still required to handle Message_DatasaveAck processing. Mouse tracking is still handled via gui.c.
* Remove old hotlist, cookies, and history_global_core modules.Michael Drake2013-09-021-2/+3
| | | | New versions of expand/collapse node functions for these modules aren't yet implemented.
* Move old hotlist out of the way.Michael Drake2013-08-131-1/+0
|
* Fix up for cookies_old rename.Michael Drake2013-07-221-1/+1
|
* s/history_core/local_history/Michael Drake2013-07-101-1/+1
|
* fix mismatched option name and variable namesVincent Sanders2013-05-281-2/+2
| | | | | block_ads should be block_advertisments to match option name toolbar_status_width should be toolbar_status_size to match option name
* move options includeVincent Sanders2013-05-281-1/+1
|
* Front ends have no reason to include desktop/selection.h now.Michael Drake2013-05-101-1/+0
|
* Fix menu shading of copy/cut/paste options when more than one of them should ↵Michael Drake2013-03-181-5/+5
| | | | be made available.
* Pass caret clip rect out to front ends. (Nothing actually using them yet.)Michael Drake2013-03-051-4/+6
|
* Fix handling of Ctrl-Left/Right/Up/Down in browser windows.Steve Fryatt2013-02-241-7/+8
| | | | | | Reverse Ctrl-Left/Right actions to match reality. Make Ctrl-Down duplicate End action. Tidy mixed usage of + and | in key definitions.
* A load of refactoring of how content selection and input work.Michael Drake2013-02-221-29/+27
| | | | | | | | | | | | | Keypresses now go via content interface. Contents don't shove the selection object into browser windows any more. Contents report selection existence by sending message. HTML content keeps track of where selections in it exist. Contents report whether they have input focus via caret setting msg. Caret can be hidden (can still input/paste) or removed. Consolidate textarea selection handling. Make textarea report its selection status changes to client. Various textarea fixes. Changed how we decide when to clear selections, and give focus.
* Fix build.Michael Drake2013-02-181-1/+1
|
* rename flags for browser_window routines to be shorterVincent Sanders2013-02-181-26/+26
|
* change browser_window_create and refactor all callsitesVincent Sanders2013-02-181-93/+200
|
* browser_window_navigate refactorVincent Sanders2013-02-181-11/+69
|
* Changing browser window to get wimp double clicks meant enum value for ↵Michael Drake2013-02-131-3/+2
| | | | single clicks was different. This broke the window taking focus on a single click. Fixed.
* Pass triple clicks to core.Michael Drake2013-02-121-7/+64
|
* Pass double clicks to browser windows.Michael Drake2013-02-121-3/+3
|
* Fix paste. Store clipboard as UTF-8 internally, to avoid unnecessary data ↵John-Mark Bell2013-01-221-1/+10
| | | | loss when copying internally.
* Use nsurl_parent.Michael Drake2012-10-061-25/+29
|
* Move browser_window struct to private header. Places that shouldn't include ↵Michael Drake2012-08-221-1/+1
| | | | | | | | | | | | | | | | | it do, such as front end code. Frontends that have been updated to build: framebuffer gtk monkey riscos TODO: amiga atari beos cocoa windows
* Use proper function for box tree dump.Michael Drake2012-08-201-1/+1
|
* Use online docs.Michael Drake2012-07-211-4/+12
|
* Update default homepage URL to about:welcome. Make RISC OS front end use ↵Michael Drake2012-07-211-6/+1
| | | | | | | NETSURF_HOMEPAGE too. Currently only the English welcome page will be fetched. Need to add language negotiation to choose best language option.
* Include render/html.h to fix build.Michael Drake2012-03-261-0/+1
| | | | svn path=/trunk/netsurf/; revision=13720
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-221-64/+62
| | | | svn path=/trunk/netsurf/; revision=13548
* Fix bug #3479239: scroll in correct direction for page left/page rightJohn Mark Bell2012-02-081-2/+2
| | | | svn path=/trunk/netsurf/; revision=13435
* Constify rect param to gui_window_drag_start.Michael Drake2012-01-111-1/+1
| | | | svn path=/trunk/netsurf/; revision=13397
* Pass pointer constraints for drag out to front ends. Ensure content ↵Michael Drake2012-01-111-25/+42
| | | | | | scrollbar drag termination always informs the browser window layer that the drag is over. svn path=/trunk/netsurf/; revision=13395
* Pass whether background images are wanted in redraw_context.Michael Drake2011-12-231-0/+2
| | | | svn path=/trunk/netsurf/; revision=13335
* Make the RISC OS front end foreground/background menu options work.Michael Drake2011-12-231-10/+11
| | | | svn path=/trunk/netsurf/; revision=13333
* Fix comments.Steve Fryatt2011-12-181-1/+7
| | | | svn path=/trunk/netsurf/; revision=13298
* Lose unnecessary intermediate variable assignments.Steve Fryatt2011-12-181-13/+10
| | | | svn path=/trunk/netsurf/; revision=13297
* Pass Page Up/Down info to the core for scrolling.Steve Fryatt2011-12-181-14/+51
| | | | svn path=/trunk/netsurf/; revision=13296
* Implement Home and End scroll functionality.Steve Fryatt2011-12-181-5/+9
| | | | svn path=/trunk/netsurf/; revision=13292
* Don't allow framesets to scroll out of view.Steve Fryatt2011-12-171-2/+15
| | | | svn path=/trunk/netsurf/; revision=13291
* Standardise code for mouse and keyboard scrolling of browser window.Steve Fryatt2011-12-171-127/+163
| | | | | | Pass keyboard scroll details on to the core when applicable. svn path=/trunk/netsurf/; revision=13289
* Provisional core scroll-wheel support - supports scroll events only.Steve Fryatt2011-12-171-7/+38
| | | | svn path=/trunk/netsurf/; revision=13288
* Make scroll event handling module specific.Steve Fryatt2011-12-171-22/+25
| | | | svn path=/trunk/netsurf/; revision=13285
* content_get_url -> hlcache_handle_get_url, content__get_url -> content_get_urlJohn Mark Bell2011-12-041-22/+22
| | | | svn path=/trunk/netsurf/; revision=13236
* Remove render/box.h include.Michael Drake2011-12-031-1/+0
| | | | svn path=/trunk/netsurf/; revision=13224
* Fix select menu item selection in frames. Note: the API for front end ↵Michael Drake2011-12-031-2/+9
| | | | | | select menus is a mess ATM. svn path=/trunk/netsurf/; revision=13223
* Use core handling of file drop over browser window.Michael Drake2011-12-011-82/+2
| | | | svn path=/trunk/netsurf/; revision=13216
* Don't pass already handled keys to the URL Complete code.Steve Fryatt2011-11-201-3/+2
| | | | | | Don't scroll browser windows when the toolbar has focus. svn path=/trunk/netsurf/; revision=13157
* Revert r13155 and re-implement fix properly.Steve Fryatt2011-11-201-60/+36
| | | | svn path=/trunk/netsurf/; revision=13156
* Remember page content handle when refreshing browser menu (bug #3420985).Steve Fryatt2011-11-201-36/+60
| | | | svn path=/trunk/netsurf/; revision=13155