summaryrefslogtreecommitdiff
path: root/desktop
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix bug #3398114: only unref filename_value if we successfully obtained itJohn Mark Bell2011-08-251-2/+3
| | | | svn path=/trunk/netsurf/; revision=12670
* Fix step size for clicks on scrollbar arrow icons.Michael Drake2011-08-251-4/+4
| | | | svn path=/trunk/netsurf/; revision=12669
* Fix scrollbar click coords.Michael Drake2011-08-251-4/+4
| | | | svn path=/trunk/netsurf/; revision=12668
* When scrollbar extents are updated, scale current offset appropriately.Michael Drake2011-08-251-2/+4
| | | | svn path=/trunk/netsurf/; revision=12667
* When passing drag on to it's bw, we don't need to do anything if the drag is ↵Michael Drake2011-08-241-1/+1
| | | | | | for the current bw. svn path=/trunk/netsurf/; revision=12666
* During drags, prevent mouse interaction with other widgets.Michael Drake2011-08-241-4/+7
| | | | svn path=/trunk/netsurf/; revision=12665
* Set up page drag start in iframes.Michael Drake2011-08-241-1/+2
| | | | svn path=/trunk/netsurf/; revision=12664
* Improve browser window drag tracking, so that drags in internal browser ↵Michael Drake2011-08-242-0/+28
| | | | | | windows (iframes) carry on if pointer goes outside the bw that owns the drag. svn path=/trunk/netsurf/; revision=12663
* Fix treeview deselection redraw issue.Michael Drake2011-08-241-5/+6
| | | | svn path=/trunk/netsurf/; revision=12662
* Remove current_redraw_browser global.Michael Drake2011-08-242-4/+0
| | | | svn path=/trunk/netsurf/; revision=12661
* Don't need to set current_redraw_browser any more.Michael Drake2011-08-241-3/+0
| | | | svn path=/trunk/netsurf/; revision=12660
* Core part of search improvement:Michael Drake2011-08-244-663/+48
| | | | | | | | | | + Split up browser window and content related elements of html & text search. + Associate search contexts with contents, rather than browser windows. + Remove highlighting of search terms dependency on current_redraw_browser. + Fixes issues with search contexts being applied to the wrong content. svn path=/trunk/netsurf/; revision=12646
* Revert accidental changeChris Young2011-07-281-1/+1
| | | | svn path=/trunk/netsurf/; revision=12631
* Fix memory leakChris Young2011-07-281-1/+2
| | | | svn path=/trunk/netsurf/; revision=12630
* Fix GCC 4.6 warnings in coreJohn Mark Bell2011-07-261-2/+1
| | | | svn path=/trunk/netsurf/; revision=12629
* Selection is now subordinate to html and text content types, and ↵Michael Drake2011-07-263-85/+83
| | | | | | disassociated from browser windows. Note: search currently uses hlcache_handle_get_content() to go from bw to h to get at c for search highlighting via selection. svn path=/trunk/netsurf/; revision=12626
* Remove unused hlcache_handle from search context.Michael Drake2011-07-261-4/+1
| | | | svn path=/trunk/netsurf/; revision=12625
* Shared URL nodes in the treeview actually want to be readonly. They ↵John Mark Bell2011-07-244-32/+32
| | | | | | certainly have no business not copying transient data. svn path=/trunk/netsurf/; revision=12623
* Fix double frees on download failureJohn Mark Bell2011-07-231-1/+4
| | | | svn path=/trunk/netsurf/; revision=12621
* Abort loading content when closing windowJohn Mark Bell2011-07-231-0/+1
| | | | svn path=/trunk/netsurf/; revision=12620
* Remove assumption of gui window from search.Michael Drake2011-07-143-11/+48
| | | | svn path=/trunk/netsurf/; revision=12603
* Fix selection for non-gui browser windows (iframes).Michael Drake2011-07-136-74/+108
| | | | | | | Selection no longer uses current_redraw_browser. Fix long-standing selection bugs on platforms that use action on release behaviour. svn path=/trunk/netsurf/; revision=12598
* Scale caret height in coreMichael Drake2011-07-111-1/+1
| | | | svn path=/trunk/netsurf/; revision=12596
* Refactor http utilitiesJohn Mark Bell2011-07-081-24/+30
| | | | svn path=/trunk/netsurf/; revision=12595
* Clean up text input code. Now desktop/textinput.{c|h} is concerend with ↵Michael Drake2011-07-074-2174/+36
| | | | | | browser windows only. HTML content specific stuff moved to render/textinput.{c|h} and disassociated from browser windows. svn path=/trunk/netsurf/; revision=12587
* Reduce forward declaration of functions.Michael Drake2011-07-071-1183/+1158
| | | | svn path=/trunk/netsurf/; revision=12586
* Pass struct rect to browser_window_update_box(), rather than union ↵Michael Drake2011-07-062-17/+17
| | | | | | content_msg_data. svn path=/trunk/netsurf/; revision=12584
* Pass struct rect to gui_window_update_box(), rather than union content_msg_data.Michael Drake2011-07-062-10/+13
| | | | svn path=/trunk/netsurf/; revision=12574
* Fix update_box coords when issued from scaled iframe.Michael Drake2011-07-061-4/+4
| | | | svn path=/trunk/netsurf/; revision=12573
* Use prescribed method for discovering browser window position.Michael Drake2011-07-061-15/+4
| | | | svn path=/trunk/netsurf/; revision=12572
* Iframe scrollbars.Michael Drake2011-07-054-24/+401
| | | | svn path=/trunk/netsurf/; revision=12571
* Set focus browser_window in place_caret.Michael Drake2011-07-042-5/+3
| | | | svn path=/trunk/netsurf/; revision=12570
* Function to find out if browser window has a selection. Front ends should ↵Michael Drake2011-07-022-0/+22
| | | | | | use this API. RISC OS front end updated. svn path=/trunk/netsurf/; revision=12556
* Minor selection changes.Michael Drake2011-07-022-9/+4
| | | | svn path=/trunk/netsurf/; revision=12555
* Set selection browser window as before, for now.Michael Drake2011-07-021-0/+7
| | | | svn path=/trunk/netsurf/; revision=12553
* When launching multiple URLs from a treeview, allow to open one window with ↵Chris Young2011-07-027-14/+35
| | | | | | | | multiple tabs instead of one window per URL. Make compatible frontends do this by default. svn path=/trunk/netsurf/; revision=12552
* Set/unset selection context's browser window on content_open/content_close.Michael Drake2011-07-012-46/+29
| | | | svn path=/trunk/netsurf/; revision=12551
* Fix up RISC OS front end.Michael Drake2011-06-301-0/+1
| | | | svn path=/trunk/netsurf/; revision=12545
* Remove plotter table global. Pass a redraw context around redraw functions. ↵Michael Drake2011-06-3016-177/+208
| | | | | | Knockout could be handled better. Note: untested on most front ends. svn path=/trunk/netsurf/; revision=12543
* Function to get root browser window.Michael Drake2011-06-282-20/+22
| | | | svn path=/trunk/netsurf/; revision=12531
* Unify content_redraw params in content_redraw_data struct. Core and RISC OS ↵Michael Drake2011-06-284-12/+53
| | | | | | content handlers updated. svn path=/trunk/netsurf/; revision=12529
* Move rectangle type to utils/types.hMichael Drake2011-06-283-34/+2
| | | | svn path=/trunk/netsurf/; revision=12525
* Make search_term_highlighted a core function.Michael Drake2011-06-283-8/+8
| | | | svn path=/trunk/netsurf/; revision=12524
* Core form select widget now associated with HTML contents. Don't use ↵Michael Drake2011-06-282-10/+1
| | | | | | current_redraw_browser for select widget redraw. Fixes core select widget in iframes. svn path=/trunk/netsurf/; revision=12522
* HTML contents manage box scrollbars, rather than browser_windows.Michael Drake2011-06-273-24/+11
| | | | svn path=/trunk/netsurf/; revision=12519
* Remove obsolete comment.Michael Drake2011-06-271-3/+0
| | | | svn path=/trunk/netsurf/; revision=12517
* browser_window_mouse_drag_end is private now, and can be removed once ↵Michael Drake2011-06-272-4/+5
| | | | | | contents handle all their own interaction. svn path=/trunk/netsurf/; revision=12516
* Fix bw->drag_type to be aware of remaining drag types.Michael Drake2011-06-272-21/+44
| | | | svn path=/trunk/netsurf/; revision=12514
* Iframes inherit parent browser window's scale.Michael Drake2011-06-241-0/+1
| | | | svn path=/trunk/netsurf/; revision=12505
* Remove gui_window_set_scale().Michael Drake2011-06-241-1/+0
| | | | svn path=/trunk/netsurf/; revision=12502