summaryrefslogtreecommitdiff
path: root/render
Commit message (Collapse)AuthorAgeFilesLines
* Remove search context from browser window, simplify search interface for ↵Michael Drake2013-05-077-155/+213
| | | | | | | | | | | | | | | | | | | | | | front ends. Added content interface for search. Removed bw->cur_search search context. Desktop layer now does nothing except pass search requests from front end onto the bw's current_content via the content interface. Search API reduced to a pair of functions at each level: {desktop|content|html|textplain}_search and {desktop|content|html|textplain}_search_clear Updated front ends to use simplified search API. Only tested GTK and RO builds. These confine the search stuff to render/. However search still uses struct selection. The handling for which is still spread over desktop/ and render/. Also the render/search code itself still fiddles inside html and textplain privates.
* Styleguide formatting.Michael Drake2013-05-021-39/+43
|
* Put comments for exported functions in header.Michael Drake2013-05-022-39/+43
|
* HTML selections are always read-only now.Michael Drake2013-05-021-3/+1
|
* remove dead storeVincent Sanders2013-05-011-1/+0
|
* Fix abort of page render on failed content_redraw of background image.Michael Drake2013-04-231-5/+5
|
* Hacky fix for clipping of top of text.Michael Drake2013-04-171-0/+16
|
* Fix 3608298: only apply link hack if JS is disabled.John-Mark Bell2013-03-191-14/+17
|
* In box textarea binding only redraw the area that was requested, not the ↵Michael Drake2013-03-191-3/+11
| | | | whole textarea.
* Stop looking on first modified sheet found.Michael Drake2013-03-181-1/+3
|
* Remove extra logging.Michael Drake2013-03-181-3/+0
|
* Fix bug where html conversion began before STYLE element fetch had been ↵Michael Drake2013-03-184-5/+30
| | | | launched.
* Add some extra logging. Some pedantic wrap changes.Michael Drake2013-03-181-15/+19
|
* Debounce style updatesJohn-Mark Bell2013-03-162-22/+57
|
* Move public API to endJohn-Mark Bell2013-03-161-128/+128
|
* Ensure a reference is taken on style nodes.John-Mark Bell2013-03-161-1/+5
|
* split sources lists out to their subdirectories as first step towards using ↵Vincent Sanders2013-03-111-0/+10
| | | | core buildsystem
* Fix pointer shape and status bar messages for textareas and their scrollbars.Michael Drake2013-03-112-13/+29
|
* C89François Revol2013-03-092-5/+4
|
* Fix min line width calc when an inline isn't to be wrapped in a block that ↵Michael Drake2013-03-061-3/+18
| | | | allows wrap.
* Propagate native caret clip rect through core.Michael Drake2013-03-051-1/+10
|
* Unref the node in the callbacksDaniel Silverstone2013-03-051-0/+2
|
* Use correct base URL for inline stylesheetsJohn-Mark Bell2013-02-273-5/+23
|
* Use custom fetcher for inline CSSJohn-Mark Bell2013-02-275-161/+375
|
* Fix handling of inline stylesheets with @importJohn-Mark Bell2013-02-262-20/+55
|
* split out object handling from render/html.cVincent Sanders2013-02-253-570/+651
|
* fix quirk stylesheet loadingVincent Sanders2013-02-253-23/+55
|
* Fix memory leakJohn-Mark Bell2013-02-241-0/+4
|
* refactor stylesheet handling to separate object from within html renderingVincent Sanders2013-02-244-665/+722
|
* Handle readonly attribute for text inputs and textareas.Michael Drake2013-02-231-2/+16
|
* Fix trying to free a load of stuff dereferenced from a NULL ptr.Michael Drake2013-02-221-11/+13
|
* Remove redundant code.John-Mark Bell2013-02-221-5/+0
|
* Fix min width to take account of white-space property.Michael Drake2013-02-221-2/+12
|
* Don't bypass html form handling layer when passing keypress to textarea.Michael Drake2013-02-221-1/+2
|
* Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2013-02-223-481/+571
|\ | | | | | | | | Conflicts of doom: render/html.c
| * correct reference counting for moved css callsVincent Sanders2013-02-201-16/+6
| |
| * deal with inline styles on updates instead of insertVincent Sanders2013-02-202-79/+159
| |
| * change stylesheet fetching to be generated from the default dom eventsVincent Sanders2013-02-192-448/+489
| |
| * refactor stylesheet fetching code to not have redundant sheet countVincent Sanders2013-02-191-68/+47
| |
* | A load of refactoring of how content selection and input work.Michael Drake2013-02-227-100/+568
|/ | | | | | | | | | | | | Keypresses now go via content interface. Contents don't shove the selection object into browser windows any more. Contents report selection existence by sending message. HTML content keeps track of where selections in it exist. Contents report whether they have input focus via caret setting msg. Caret can be hidden (can still input/paste) or removed. Consolidate textarea selection handling. Make textarea report its selection status changes to client. Various textarea fixes. Changed how we decide when to clear selections, and give focus.
* rename flags for browser_window routines to be shorterVincent Sanders2013-02-182-10/+10
|
* browser_window_navigate refactorVincent Sanders2013-02-182-27/+58
|
* Change selection colours so selection background takes text colour, and ↵Michael Drake2013-02-151-9/+6
| | | | selected text becomes black or white -- whichever gives greatest contrast.
* Don't reduce width of textarea box for CSS overflow scrollbar; it won't get one.Michael Drake2013-02-111-2/+0
|
* Move html textarea's selection colour chooser to plot_style.h, as it could ↵Michael Drake2013-02-111-7/+2
| | | | be used elsewhere.
* Merge branch 'master' of git://git.netsurf-browser.org/netsurfMichael Drake2013-02-102-59/+55
|\ | | | | | | | | | | | | Conflicts: gtk/font_pango.c Conflict resolved.
| * Document new nsfont_split expected behaviour.Michael Drake2013-02-101-4/+11
| |
| * Update HTML layout not to demand that nsfont_split only splits on a space.Michael Drake2013-02-101-56/+43
| | | | | | | | | | | | | | This allows the HTML layout code to wrap unicode text correctly. For example on our Japanese Welcome page, the characters will be wrapped if the platform's nsfont_split implementation implements the Unicode line breaking algorithm.
| * Make nowrap code path a bit plainer.Michael Drake2013-02-101-4/+4
| |
| * Comment current html wrap/text-splitting behaviour.Michael Drake2013-02-101-3/+5
| |