summaryrefslogtreecommitdiff
path: root/desktop
Commit message (Collapse)AuthorAgeFilesLines
* Fix warnings.Michael Drake2013-03-191-3/+3
|
* Start reducing unnecessary redraws: when only start OR end of selection has ↵Michael Drake2013-03-191-7/+54
| | | | changed, only redraw the lines affected. (Reduces redraw of vertical regions only. Still redraw full width for changed lines.)
* Loads of changes including fixes, new functionality, and optimisation.Michael Drake2013-03-171-633/+699
| | | | | | | | | | | | | | | | | | | | | | | + Refactor internals to be byte, rather than character based. + Don't need to hammer utf8_* functions everywhere + Optimises: + Redraw (lots) + Editing (insertion, replacement, removal) + Caret placement + Selection + Early avoid of zero length autoscroll during selection drag. + Optimised redraw to avoid nsfont_width when: + There's no selection at all. + We're on last part of line, and it's unselected. + Implemented WORD_LEFT and WORD_RIGHT keys (shift + cursor left/right) + Fixed UP and DOWN (cursor up/down) keys to handle non-monospace fonts. (Now based on 'x' offset on line, rather than character offset on line.) + Fixed PAGE_UP and PAGE_DOWN to scroll without moving the caret. + Fixed redraw bug in text selection edge case. + Changed textarea_replace_text and textarea_insert_text to return a byte delta for caret position changes. + Coordinate to text offset function handles global and viewport coords. + Many small improvements and tidying.
* Make textarea_get_caret private.Michael Drake2013-03-132-33/+30
|
* split sources lists out to their subdirectories as first step towards using ↵Vincent Sanders2013-03-112-0/+25
| | | | core buildsystem
* Fix pointer shape and status bar messages for textareas and their scrollbars.Michael Drake2013-03-115-45/+159
|
* Make autoscroll start at inside edge of border or scrollbar.Michael Drake2013-03-061-9/+15
|
* Pull scrollbar mouse handling out into helper function.Michael Drake2013-03-061-12/+36
|
* Textarea sends caret hide msg if caret completely outside visible area.Michael Drake2013-03-061-11/+35
|
* Don't show caret if there's a selection.Michael Drake2013-03-061-1/+2
|
* Pass caret clip rect out to front ends. (Nothing actually using them yet.)Michael Drake2013-03-052-4/+6
|
* Propagate native caret clip rect through core.Michael Drake2013-03-054-17/+44
|
* Less ambiguous flag documentation comment.Michael Drake2013-03-041-3/+1
|
* Fix history.Michael Drake2013-03-041-3/+1
|
* Pedantic wrap.Michael Drake2013-03-041-1/+2
|
* Fix loggingJohn-Mark Bell2013-02-271-1/+2
|
* Use custom fetcher for inline CSSJohn-Mark Bell2013-02-272-15/+4
|
* Fix handling of inline stylesheets with @importJohn-Mark Bell2013-02-261-2/+2
|
* Handle readonly attribute for text inputs and textareas.Michael Drake2013-02-231-13/+7
|
* Don't need initial caret pos now.Michael Drake2013-02-221-2/+2
|
* No point in setting caret there.Michael Drake2013-02-221-1/+0
|
* Remove redundant code.John-Mark Bell2013-02-221-8/+0
|
* Always set caret.Michael Drake2013-02-221-3/+1
|
* Shove allocation step size into #define.Michael Drake2013-02-221-12/+16
|
* Increase allocation increment step size.Michael Drake2013-02-221-13/+13
|
* Textarea tweaks for caret placement after selection removal.Michael Drake2013-02-221-3/+6
|
* Fix setting of empty selections.Michael Drake2013-02-221-0/+5
|
* A load of refactoring of how content selection and input work.Michael Drake2013-02-228-353/+277
| | | | | | | | | | | | | 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.
* Fix handling of treeview launch actions.John-Mark Bell2013-02-191-1/+4
|
* rename flags for browser_window routines to be shorterVincent Sanders2013-02-186-31/+31
|
* change browser_window_create and refactor all callsitesVincent Sanders2013-02-185-71/+126
|
* browser_window_navigate refactorVincent Sanders2013-02-184-228/+249
|
* Move selection clearing into a function, and expose it in the header file.Michael Drake2013-02-132-14/+34
|
* Calculate and store text offsets only when they change, rather than ↵Michael Drake2013-02-131-23/+37
| | | | recalculating on every redraw and caret placement. Also ensures that caret placement and redraw get the same text offset values.
* Fun micro-optimisations.Michael Drake2013-02-121-21/+15
|
* Implement selection modification. Clicks and drags with button 2 alter the ↵Michael Drake2013-02-121-2/+21
| | | | nearest end of the selection. Button 2 when there is no selection selects from caret pos to click pos.
* Triple click selects paragraph in textarea widget.Michael Drake2013-02-122-13/+77
|
* Tidy textarea-handled mouse action.Michael Drake2013-02-121-9/+10
|
* Init clipboard to NULL, just in case front end implementation of ↵Michael Drake2013-02-121-1/+1
| | | | gui_get_clipboard fails to set it on empty clipboard.
* When reqesting redraaw to remove internal caret, make sure caret is already ↵Michael Drake2013-02-121-0/+3
| | | | removed as the redraw may be serviced immediatley.
* Don't include '\0' in single-line nsfont_width call.Michael Drake2013-02-111-1/+1
|
* Selection autoscroll of scrollbarless textareas (single line).Michael Drake2013-02-111-13/+38
|
* Early detection of regions outside the visible.Michael Drake2013-02-111-0/+9
|
* Clip native caret render so it can't overwrite border. Slight simplification.Michael Drake2013-02-111-11/+12
|
* Single line textareas don't have scrollbars, so they don't get the scroll ↵Michael Drake2013-02-111-3/+16
| | | | redraw request from the scrollbar callback.
* Don't need to redraw for caret removal if using a native caret.Michael Drake2013-02-111-1/+2
|
* Fix internal caret redraw bounds.Michael Drake2013-02-111-1/+1
|
* Fix delete-to-line-end.Michael Drake2013-02-111-1/+1
|
* Make delete line key enum value name less missleading. (Doesn't cut to ↵Michael Drake2013-02-112-3/+2
| | | | clipboard.)
* Move html textarea's selection colour chooser to plot_style.h, as it could ↵Michael Drake2013-02-111-0/+8
| | | | be used elsewhere.