summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Get one timer message per signal to allow other non-scheduled events to be ↵Chris Young2011-02-191-1/+1
| | | | | | | | actioned. This fixes a curious pause upon starting NetSurf. svn path=/trunk/netsurf/; revision=11713
* Move timer.device stuff to schedule.cChris Young2011-02-194-28/+38
| | | | svn path=/trunk/netsurf/; revision=11712
* Don't crash if there's no box associated with a textareaJohn Mark Bell2011-02-191-1/+9
| | | | svn path=/trunk/netsurf/; revision=11711
* Fix bug #3184972: cope with server sending a 304 in response to an ↵John Mark Bell2011-02-171-17/+28
| | | | | | unconditional request. svn path=/trunk/netsurf/; revision=11710
* Remove padding in arrow box.Sven Weidauer2011-02-171-4/+4
| | | | svn path=/trunk/netsurf/; revision=11709
* Making sure history popup stays on screen.Sven Weidauer2011-02-174-13/+68
| | | | svn path=/trunk/netsurf/; revision=11708
* Updated german Messages fileSven Weidauer2011-02-171-64/+64
| | | | svn path=/trunk/netsurf/; revision=11707
* Cleanup in redraw code for browser view.Sven Weidauer2011-02-171-7/+6
| | | | svn path=/trunk/netsurf/; revision=11706
* New local history panel with scrollbars. Still needs to resize itself to fit ↵Sven Weidauer2011-02-1718-81/+1110
| | | | | | the history. svn path=/trunk/netsurf/; revision=11705
* Modify scheduler to use a binary heap (using libpbl).Chris Young2011-02-165-75/+84
| | | | | | | | | | | | | Scheduled events are now in event time order, so schedule_run simply takes the top event off the heap and runs it (if we're polling, rather than having received a signal that the next event is due to be run, we check first that we have passed the scheduled time). This should provide performance benefits as we are no longer trawling the entire list of scheduled events (potentially hundreds) every time an event is signalled or the schedule list is polled. svn path=/trunk/netsurf/; revision=11703
* Fix fixed point percentage macro not to overflow. Thanks to jmb and vince.Michael Drake2011-02-161-3/+1
| | | | svn path=/trunk/netsurf/; revision=11702
* New tabs should show the homepageChris Young2011-02-162-2/+2
| | | | svn path=/trunk/netsurf/; revision=11701
* If percentage is negative, resort to floating point.Michael Drake2011-02-161-1/+3
| | | | svn path=/trunk/netsurf/; revision=11700
* Comment rationale for render buffer dimensions.Michael Drake2011-02-161-1/+8
| | | | svn path=/trunk/netsurf/; revision=11699
* Remove legacy logging.Michael Drake2011-02-161-4/+0
| | | | svn path=/trunk/netsurf/; revision=11698
* Various gtk thumbnailing fixes. Don't make intermediate buffer bigger than ↵Michael Drake2011-02-161-20/+27
| | | | | | it needs to be. Don't pass clip rect that's larger than render area. Don't plot blank background before setting the clip rect. Scale initial content render appropriately. Simplify and fix scale calc for thumbnail resampling. svn path=/trunk/netsurf/; revision=11697
* Add missing includeJohn Mark Bell2011-02-151-0/+1
| | | | svn path=/trunk/netsurf/; revision=11694
* add about: fetcher Vincent Sanders2011-02-1511-9/+355
| | | | | | rename fetchers to be more sensible svn path=/trunk/netsurf/; revision=11692
* Non block level :after boxes aren't supported yet, so don't generate them.Michael Drake2011-02-151-22/+2
| | | | svn path=/trunk/netsurf/; revision=11691
* Neuter utterly broken search web from url bar hackeryJohn Mark Bell2011-02-151-12/+2
| | | | svn path=/trunk/netsurf/; revision=11690
* Fix bug #3182729: meta refresh of embedded html pages resulted in mismatched ↵John Mark Bell2011-02-151-7/+19
| | | | | | API expectations svn path=/trunk/netsurf/; revision=11688
* Handle percentages from libcss without doing floating point maths.Michael Drake2011-02-151-40/+41
| | | | svn path=/trunk/netsurf/; revision=11687
* improve comments and add more explanation about subtletiesVincent Sanders2011-02-152-12/+38
| | | | svn path=/trunk/netsurf/; revision=11686
* Pass clip rect through html redraw as pointer.Michael Drake2011-02-151-127/+122
| | | | svn path=/trunk/netsurf/; revision=11685
* Add "const".Michael Drake2011-02-141-1/+1
| | | | svn path=/trunk/netsurf/; revision=11684
* Pass clip rect to clip plotters as struct. Simplify clip rect handling in ↵Michael Drake2011-02-1429-256/+246
| | | | | | debug window code. Pass clip rect to select menu as struct. svn path=/trunk/netsurf/; revision=11683
* Constify.Michael Drake2011-02-142-2/+2
| | | | svn path=/trunk/netsurf/; revision=11682
* Pass clip rect to textarea redraw as struct rect.Michael Drake2011-02-143-42/+38
| | | | svn path=/trunk/netsurf/; revision=11681
* ConstifyJohn Mark Bell2011-02-1440-68/+61
| | | | svn path=/trunk/netsurf/; revision=11680
* Pass clip rect to scroll_redraw as struct. Simplify test to see if ↵Michael Drake2011-02-144-29/+13
| | | | | | scrollbar is within clip rect. svn path=/trunk/netsurf/; revision=11679
* More comments for object dimension calculation.Michael Drake2011-02-141-1/+6
| | | | svn path=/trunk/netsurf/; revision=11678
* Don't use float maths for AUTO image sizing with one given dimension.Michael Drake2011-02-141-2/+2
| | | | svn path=/trunk/netsurf/; revision=11677
* Handle object sizing in one place.Michael Drake2011-02-141-77/+62
| | | | svn path=/trunk/netsurf/; revision=11676
* Avoid potential divide by 0.Michael Drake2011-02-141-8/+15
| | | | svn path=/trunk/netsurf/; revision=11675
* Increase computed time before scheduled redraws.Michael Drake2011-02-141-2/+2
| | | | svn path=/trunk/netsurf/; revision=11674
* Pass clip rect to browser_window_redraw as pointer.Michael Drake2011-02-138-14/+14
| | | | svn path=/trunk/netsurf/; revision=11672
* Remove dead function.Michael Drake2011-02-131-8/+0
| | | | svn path=/trunk/netsurf/; revision=11671
* Pass clip rect as struct through content_redraw api. Update the front ends ↵Michael Drake2011-02-1350-224/+215
| | | | | | to use this. Note only RO build tested. svn path=/trunk/netsurf/; revision=11670
* Don't clear window before redraw or blit if the redraw didn't completeChris Young2011-02-131-12/+12
| | | | svn path=/trunk/netsurf/; revision=11669
* Update browser_window_redraw comment.Michael Drake2011-02-131-4/+7
| | | | svn path=/trunk/netsurf/; revision=11668
* Fix broken plotting on RO with locked contents and buffered rendering.Michael Drake2011-02-133-0/+28
| | | | svn path=/trunk/netsurf/; revision=11667
* Remove RO white background fill.Michael Drake2011-02-131-6/+0
| | | | svn path=/trunk/netsurf/; revision=11666
* White background fill to extents for non-HTML contents.Michael Drake2011-02-131-0/+6
| | | | svn path=/trunk/netsurf/; revision=11665
* Added frambuffer port "internal" font decoder.Ole Loots2011-02-121-1/+1
| | | | svn path=/trunk/netsurf/; revision=11663
* Improved checkboxesOle Loots2011-02-123-27/+30
| | | | svn path=/trunk/netsurf/; revision=11662
* Added the framebuffer "internal" font decoder/plotter,Ole Loots2011-02-122-14/+23
| | | | | | | fixed ablend method, introduced flag for monochrom bitmap drawing. svn path=/trunk/netsurf/; revision=11661
* Added the internal font decoder from frambuffer port. Ole Loots2011-02-122-0/+2330
| | | | svn path=/trunk/netsurf/; revision=11660
* Removed unused codeOle Loots2011-02-121-5/+0
| | | | svn path=/trunk/netsurf/; revision=11659
* Adjusted default config for url and cookie files.Ole Loots2011-02-121-25/+9
| | | | svn path=/trunk/netsurf/; revision=11658
* Added support for cookie and URL file, fixed box redraw.Ole Loots2011-02-123-40/+56
| | | | svn path=/trunk/netsurf/; revision=11657