summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Make urldb_match_path() iterate.John Mark Bell2009-01-311-13/+16
| | | | svn path=/trunk/netsurf/; revision=6310
* Fix scale of inline borders.Michael Drake2009-01-311-14/+13
| | | | svn path=/trunk/netsurf/; revision=6309
* Right-clicking a page now removes the browser caret as well, but isn't ↵Sean Fox2009-01-301-3/+14
| | | | | | properly implemented; see todo. svn path=/trunk/netsurf/; revision=6308
* Properly show the context menu separator.Sean Fox2009-01-301-3/+0
| | | | svn path=/trunk/netsurf/; revision=6307
* Clicking in the draw area now deselects the URL bar.Sean Fox2009-01-303-0/+10
| | | | svn path=/trunk/netsurf/; revision=6306
* Save page support on the context menu.Sean Fox2009-01-304-35/+138
| | | | svn path=/trunk/netsurf/; revision=6305
* Make urldb_iterate_entries_path use iterationJohn Mark Bell2009-01-301-28/+38
| | | | svn path=/trunk/netsurf/; revision=6304
* Pedantic linewrappingJohn Mark Bell2009-01-301-5/+10
| | | | svn path=/trunk/netsurf/; revision=6303
* Make urldb_iterate_partial_path iterate over the tree and not recurse.John Mark Bell2009-01-301-25/+59
| | | | svn path=/trunk/netsurf/; revision=6302
* This logic looked entirely wrong. Fix it to be more sane. If this breaks ↵John Mark Bell2009-01-301-12/+3
| | | | | | things, blame the lack of commentary. svn path=/trunk/netsurf/; revision=6301
* Minor optimisationJohn Mark Bell2009-01-301-1/+1
| | | | svn path=/trunk/netsurf/; revision=6300
* Iterate when counting/writing out paths.John Mark Bell2009-01-301-68/+103
| | | | svn path=/trunk/netsurf/; revision=6299
* Not my day :(Adrian Lees2009-01-301-49/+228
| | | | svn path=/trunk/netsurf/; revision=6298
* And these files too, pleaseAdrian Lees2009-01-303-11/+26
| | | | svn path=/trunk/netsurf/; revision=6297
* Selection- and link-related functions now on menu; other menu changes as per ↵Adrian Lees2009-01-3011-318/+547
| | | | | | t's plan svn path=/trunk/netsurf/; revision=6296
* Only get top margin if box has style.Michael Drake2009-01-291-14/+4
| | | | svn path=/trunk/netsurf/; revision=6295
* Include top margin when finding sides for block formatting contexts.Michael Drake2009-01-291-7/+27
| | | | svn path=/trunk/netsurf/; revision=6293
* Squash some memory leaks.Sean Fox2009-01-292-6/+13
| | | | svn path=/trunk/netsurf/; revision=6290
* Once a float has been placed below current line,Michael Drake2009-01-271-5/+9
| | | | | | | | ensure that subsequent floats are also placed below. Make place_float_below() consider float height when searching for available space. svn path=/trunk/netsurf/; revision=6287
* This is the actual fix for the crashing, although this is temporary as theChris Young2009-01-261-3/+3
| | | | | | implementation needs changing. svn path=/trunk/netsurf/; revision=6283
* Fix specified table widths to include border. Tidy block formatting context ↵Michael Drake2009-01-261-8/+26
| | | | | | and table position setup. svn path=/trunk/netsurf/; revision=6281
* Fix -ve margins.Michael Drake2009-01-261-2/+2
| | | | svn path=/trunk/netsurf/; revision=6277
* More robust float avoidance for blocks set as block formatting contexts.Michael Drake2009-01-261-44/+75
| | | | svn path=/trunk/netsurf/; revision=6275
* This appears to fix an odd crash Chris Young2009-01-251-6/+3
| | | | svn path=/trunk/netsurf/; revision=6262
* Handle key-presses manually for greater control, and to remove some keyboardChris Young2009-01-251-15/+44
| | | | | | copy'n'paste annoyances. Caps lock still fails to work though. svn path=/trunk/netsurf/; revision=6261
* It's probably a good idea to free memory once we've finished with it.Chris Young2009-01-241-5/+10
| | | | svn path=/trunk/netsurf/; revision=6222
* Ignore clear:left; when the only floats are on the right and vice versa.Michael Drake2009-01-221-2/+4
| | | | svn path=/trunk/netsurf/; revision=6176
* Handle clear before working out available width for tables and blocks that ↵Michael Drake2009-01-221-10/+12
| | | | | | cause a new block formatting context. svn path=/trunk/netsurf/; revision=6174
* Handle no units in CSS as px. This is a temporary measure until the new CSS ↵Michael Drake2009-01-221-5/+9
| | | | | | parser is used, which will handle this properly. svn path=/trunk/netsurf/; revision=6173
* Fix placement of tables in normal flow next to floats. This stops big blank ↵Michael Drake2009-01-211-1/+12
| | | | | | gaps appearing e.g. at the top of wikipedia articles, on some google search results and on amazon product pages. svn path=/trunk/netsurf/; revision=6162
* Fix positioning of floats that come after floats with negative margins.Michael Drake2009-01-201-4/+8
| | | | svn path=/trunk/netsurf/; revision=6156
* Implement bold and italic font rendering for Unicode display and make it the ↵Chris Young2009-01-205-21/+83
| | | | | | default. svn path=/trunk/netsurf/; revision=6155
* Block formatting context width is only reduced due to floats if width is auto.Michael Drake2009-01-191-20/+26
| | | | svn path=/trunk/netsurf/; revision=6145
* Make blocks which establish a new block formatting context use have the ↵Michael Drake2009-01-181-0/+17
| | | | | | correct width and position to avoid overlapping floats. Fixes the main problem on the amazon.co.uk front page. svn path=/trunk/netsurf/; revision=6142
* position in string was off by oneChris Young2009-01-181-3/+29
| | | | svn path=/trunk/netsurf/; revision=6141
* Move handling of background related print options to background specific ↵Michael Drake2009-01-171-120/+130
| | | | | | functions. svn path=/trunk/netsurf/; revision=6119
* Clear render area properly when switching tabsChris Young2009-01-171-1/+1
| | | | svn path=/trunk/netsurf/; revision=6116
* Complete Unicode text display implementation bar styles (bold, italic)Chris Young2009-01-171-17/+48
| | | | | | Need to find out why it is freezing on yahoo.ru svn path=/trunk/netsurf/; revision=6115
* Most nsfont placement routines done for UTF-8 printing, missing the odd ↵Chris Young2009-01-171-23/+122
| | | | | | | | character off of the end of lines though so needs some tweaking. svn path=/trunk/netsurf/; revision=6109
* nsfont_width implemented for Unicode textChris Young2009-01-164-57/+68
| | | | | | | | | cache outline fonts for big speedup still need to implement other text size functions and also bold and italic fonts svn path=/trunk/netsurf/; revision=6095
* Saving hotlist immedaitely after adding now saves it to the correct fileChris Young2009-01-161-1/+1
| | | | svn path=/trunk/netsurf/; revision=6093
* Add copy and select all itemsChris Young2009-01-162-0/+37
| | | | svn path=/trunk/netsurf/; revision=6092
* Forward declare gui_windowJohn Mark Bell2009-01-161-0/+2
| | | | svn path=/trunk/netsurf/; revision=6085
* Spacing perfect, text now printing correctly on baseline.Chris Young2009-01-151-6/+6
| | | | | | | Formatting is mostly only wrong when non-local charset characters are being printed, due to the current text size calculations routines needing rewriting. svn path=/trunk/netsurf/; revision=6073
* Much faster Unicode text display (still slower than local charset mode though)Chris Young2009-01-151-43/+14
| | | | | | | | | | | | Improved character spacing Still some formatting issues: Baseline is ignored The text size calculation routines need to be re-written for the Unicode display However sites are mostly readable now with this option enabled. svn path=/trunk/netsurf/; revision=6072
* Some redraw optimisationsChris Young2009-01-151-29/+38
| | | | svn path=/trunk/netsurf/; revision=6071
* Squash strict-aliasing warning in the most disgusting way possible.John Mark Bell2009-01-151-1/+1
| | | | svn path=/trunk/netsurf/; revision=6070
* Add missing #include.John Mark Bell2009-01-151-2/+3
| | | | | | Fix guard macro -- how long has this been wrong, I wonder? svn path=/trunk/netsurf/; revision=6069
* Allocate the file requester after reading the options which contain the ↵Chris Young2009-01-151-7/+7
| | | | | | | | values we need to put in the allocation request svn path=/trunk/netsurf/; revision=6068
* Add some shared objects infoChris Young2009-01-151-2/+19
| | | | svn path=/trunk/netsurf/; revision=6067