summaryrefslogtreecommitdiff
path: root/riscos/gui.c
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* fix up riscos build errorsVincent Sanders2014-01-161-1/+1
|
* move 401 login into operation tableVincent Sanders2014-01-161-0/+1
|
* move filename_from_path and path_add_part into gui operation tablesVincent Sanders2014-01-161-2/+4
|
* split browser gui operations upVincent Sanders2014-01-151-6/+12
|
* move remaining gui operations to tableVincent Sanders2014-01-141-87/+93
|
* move download operations to download tableVincent Sanders2014-01-141-0/+1
|
* move teh final optional window operations into the tableVincent Sanders2014-01-131-7/+0
|
* split gui operations into core and window and move more operations into tablesVincent Sanders2014-01-121-8/+2
|
* move set title, set url, start and stop throbber window operations to gui tableVincent Sanders2014-01-121-0/+6
|
* move window creation and destruction into tableVincent Sanders2014-01-111-2/+4
|
* Initial conversion of netsurf gui to callback vtableVincent Sanders2014-01-111-3/+9
|
* Fix some log statementsDaniel Silverstone2014-01-051-1/+1
|
* Change gui_file_gadget_interface to pass gui_window not browser_window, add ↵Rob Kendrick2014-01-051-1/+1
| | | | GTK implementation that of course does not work.
* Add new gui entry point for file open dialogue requestsRob Kendrick2014-01-051-0/+8
|
* Start URL bar hotlist indicator button implementation.Michael Drake2013-11-221-0/+4
| | | | | - Clicking to hotlist add/remove doesn't work. - Doesn't update while typing in URL bar.
* Remove redundant bitmap compression/decompression/dropping-to-disc. The ↵Michael Drake2013-10-031-9/+2
| | | | core now has a converted bitmap cache that is pruned more agressively.
* Set treeview text size to 12pt.Michael Drake2013-09-091-1/+7
|
* Destroy treeviews.Michael Drake2013-09-081-0/+3
|
* gui_current_drag_type now only used for data transfer protocol routing; fix ↵Steve Fryatt2013-09-081-0/+2
| | | | | | | button bar drag handler. Remove all references to gui_current_drag_type outside of gui.c which are not related to routing DataSaveAck messages. Update button bar drag code so that it uses ro_mouse.
* Allow ro_mouse to enable null polls; remove unused global variables.Steve Fryatt2013-09-081-17/+5
| | | | | 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-128/+5
| | | | | | 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-58/+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-3/+0
| | | | New versions of expand/collapse node functions for these modules aren't yet implemented.
* Remove cookies, history_global, and hotlist_old _initialise and _cleanup ↵Michael Drake2013-09-021-3/+0
| | | | functions.
* Remove bulk of old treeview implementation.Michael Drake2013-09-021-7/+0
|