summaryrefslogtreecommitdiff
path: root/desktop/browser.c
Commit message (Collapse)AuthorAgeFilesLines
* Slightly more useful behaviour if we can't handle an URL when downloadingJohn Mark Bell2011-02-211-8/+12
| | | | svn path=/trunk/netsurf/; revision=11750
* Remove knockout from html_redraw, and use it in browser_window_redraw and ↵Michael Drake2011-02-211-7/+20
| | | | | | thumbnail_redraw. svn path=/trunk/netsurf/; revision=11746
* Pass clip rect to clip plotters as struct. Simplify clip rect handling in ↵Michael Drake2011-02-141-1/+1
| | | | | | debug window code. Pass clip rect to select menu as struct. svn path=/trunk/netsurf/; revision=11683
* ConstifyJohn Mark Bell2011-02-141-1/+1
| | | | svn path=/trunk/netsurf/; revision=11680
* Pass clip rect to browser_window_redraw as pointer.Michael Drake2011-02-131-5/+5
| | | | svn path=/trunk/netsurf/; revision=11672
* Pass clip rect as struct through content_redraw api. Update the front ends ↵Michael Drake2011-02-131-2/+1
| | | | | | to use this. Note only RO build tested. svn path=/trunk/netsurf/; revision=11670
* Fix broken plotting on RO with locked contents and buffered rendering.Michael Drake2011-02-131-0/+14
| | | | svn path=/trunk/netsurf/; revision=11667
* White background fill to extents for non-HTML contents.Michael Drake2011-02-131-0/+6
| | | | svn path=/trunk/netsurf/; revision=11665
* Pass clip rect to browser_window_redraw as struct.Michael Drake2011-02-111-7/+6
| | | | svn path=/trunk/netsurf/; revision=11648
* improve browser_window_redraw width and height handlingVincent Sanders2011-02-111-1/+8
| | | | svn path=/trunk/netsurf/; revision=11642
* add browser_window_redraw() method to make content_redraw calls from ↵Vincent Sanders2011-02-101-0/+26
| | | | | | frontends common RISC OS, atari, amiga and beos have not been updated svn path=/trunk/netsurf/; revision=11640
* Remove erroneous commentary, and move associated code to a more sensible placeJohn Mark Bell2011-01-171-5/+4
| | | | svn path=/trunk/netsurf/; revision=11346
* Fix bug #3159040: make destruction order of browser_window objects saneJohn Mark Bell2011-01-171-6/+14
| | | | svn path=/trunk/netsurf/; revision=11345
* Ensure we poke the favicon as soon as an HTML content reaches the browser ↵Daniel Silverstone2011-01-071-1/+6
| | | | | | window. This is the earliest we can safely do this, otherwise STOP etc. can cause problems. svn path=/trunk/netsurf/; revision=11248
* Add CONTENT_MSG_FAVICON_REFRESH and emit and handle it appropriately. ↵Daniel Silverstone2011-01-071-0/+5
| | | | | | Animated favicons now work svn path=/trunk/netsurf/; revision=11242
* Merge treeview-redux to trunkJohn Mark Bell2010-10-051-0/+1
| | | | svn path=/trunk/netsurf/; revision=10865
* Simplify a browser_window_go_post() to browser_window_go().James Bursa2010-09-121-2/+1
| | | | svn path=/trunk/netsurf/; revision=10762
* + Refactor input handling from browser window code into contentMichael Drake2010-06-041-1475/+56
| | | | | | | | | | | | | handlers. + Disentangle all box tree manipulation from browser window code and put it where it belongs. + Move other content specific and other irrelevant code from browser window handling to appropriate places. + Put mouse state enum in new mouse header, since it's not just used by browser window code, and it is used by treeview windows on the treeview branch. svn path=/trunk/netsurf/; revision=10561
* remove _GNU_SOURCE define from everywhere.Vincent Sanders2010-04-241-1/+4
| | | | | | strndup is not standard so provide an implementation. svn path=/trunk/netsurf/; revision=10474
* Extract parent charset and quirkinessJohn Mark Bell2010-04-161-4/+3
| | | | svn path=/trunk/netsurf/; revision=10416
* Move content shuffling to prevent crash during threading through reformatDaniel Silverstone2010-04-141-3/+3
| | | | svn path=/trunk/netsurf/; revision=10396
* Ensure url bar is updated with in-progress URL and restored if stop/download ↵Daniel Silverstone2010-04-121-0/+11
| | | | | | occurs svn path=/trunk/netsurf/; revision=10385
* Yes, ownership of the theme content is passed to theme_installJohn Mark Bell2010-04-111-2/+0
| | | | svn path=/trunk/netsurf/; revision=10375
* Fix textarea crash.John Mark Bell2010-04-071-5/+11
| | | | | | I cannot express just how much I hate the necessity of this change: browser windows (and other code in desktop/) should stop poking around inside content objects svn path=/trunk/netsurf/; revision=10258
* Make downloads work again.John Mark Bell2010-04-051-86/+38
| | | | svn path=/trunk/netsurf/; revision=10243
* Make the high-level cache drop contents of unacceptable type on the floor.John Mark Bell2010-04-041-1/+2
| | | | svn path=/trunk/netsurf/; revision=10238
* Most of a stop implementation.John Mark Bell2010-04-041-2/+4
| | | | | | | | | Remaining work: 1) Clone content_html_data 2) Cloning content_css_data requires the charset of the old content 3) Calling hlcache_handle_abort() before a content has been created must clean up the retrieval context. svn path=/trunk/netsurf/; revision=10236
* The convert stage of a content's state progression no longer reflows the ↵John Mark Bell2010-03-291-5/+10
| | | | | | | | | | | | | content to the provided dimensions. It is now defined as converting the content into a state in which it is ready for use. The user of the content is now responsible for performing an initial reformat (sic) of the content before it can be redrawn. Purge width/height parameters from hlcache_handle_retrieve/content_convert/*_convert APIs. Fix up content handlers affected by the above change in semantics. Ensure that browser_window_callback performs an initial reformat of its content. svn path=/trunk/netsurf/; revision=10207
* Do not assert when the only thing of interest is a body box. Status string ↵Rob Kendrick2010-03-281-2/+3
| | | | | | can quite happily be NULL. svn path=/trunk/netsurf/; revision=10184
* Merge jmb/new-cache; r=dsilvers,rs=vinceDaniel Silverstone2010-03-281-373/+353
| | | | svn path=/trunk/netsurf/; revision=10180
* Review fixups from Daniel SilverstoneVincent Sanders2010-02-111-0/+3
| | | | | | | Ensure status text statistics are initialised Fix documentation and indentation of status text variables. svn path=/trunk/netsurf/; revision=9968
* remove RISC OS status bar text cachingVincent Sanders2010-02-111-1/+1
| | | | svn path=/trunk/netsurf/; revision=9966
* cache the status text to reduce teh number of window status update calls to ↵Vincent Sanders2010-02-101-1/+33
| | | | | | teh frontend svn path=/trunk/netsurf/; revision=9965
* remove uneccissary includesVincent Sanders2010-01-291-1/+1
| | | | svn path=/trunk/netsurf/; revision=9931
* Merge branches/MarkieB/gtkmain to trunk.John Mark Bell2009-12-171-4/+20
| | | | svn path=/trunk/netsurf/; revision=9729
* Avoid NULL pointer dereferencesJohn Mark Bell2009-11-221-11/+21
| | | | svn path=/trunk/netsurf/; revision=9684
* Merge Paul Blokus' selectscroll branch. Adds core select menu widget for ↵Michael Drake2009-08-141-268/+284
| | | | | | forms and core scrollbar widget. svn path=/trunk/netsurf/; revision=9289
* C89.John Mark Bell2009-08-021-1/+2
| | | | svn path=/trunk/netsurf/; revision=9000
* Port to modified libcss API.John Mark Bell2009-08-021-2/+2
| | | | svn path=/trunk/netsurf/; revision=8997
* Consider stylesheet media typesJohn Mark Bell2009-07-271-2/+2
| | | | svn path=/trunk/netsurf/; revision=8820
* Merge LibCSS port to trunk.John Mark Bell2009-07-231-83/+88
| | | | svn path=/trunk/netsurf/; revision=8752
* Refactor text plotter and other font functions to remove dependency on CSS.John Mark Bell2009-07-211-5/+25
| | | | svn path=/trunk/netsurf/; revision=8641
* Revert accidental commit.Michael Drake2009-07-141-3/+0
| | | | svn path=/trunk/netsurf/; revision=8529
* mouse_trackMichael Drake2009-07-141-0/+3
| | | | svn path=/trunk/netsurf/; revision=8528
* Indicate activity with the progress pointer for a second after you click a ↵Michael Drake2009-07-141-12/+34
| | | | | | link and as the "auto" pointer while stuff is loading. svn path=/trunk/netsurf/; revision=8525
* Replace parent_url with a pointer to the parent content.John Mark Bell2009-07-101-12/+13
| | | | svn path=/trunk/netsurf/; revision=8428
* Remove redundant code from browser_window_mouse_action_html().John Mark Bell2009-05-281-16/+16
| | | | | | Tidy up browser_window_mouse_track(). svn path=/trunk/netsurf/; revision=7602
* Apply contributions from Mark Benjamin and Chris Tarnowski, with some ↵Rob Kendrick2009-04-201-1/+0
| | | | | | reworking from me. Beware; glade nastyness ahead. svn path=/trunk/netsurf/; revision=7136
* Possibly fix links opened in current window not being scrolled to top.Michael Drake2009-04-081-1/+2
| | | | svn path=/trunk/netsurf/; revision=7065
* Revert r6973. Apparently, it causes loads of problems.John Mark Bell2009-04-051-28/+26
| | | | svn path=/trunk/netsurf/; revision=7047