summaryrefslogtreecommitdiff
path: root/render/html_interaction.c
Commit message (Collapse)AuthorAgeFilesLines
* Don't pass pointer to data that isn't on the stack any more to ↵Michael Drake2014-03-271-1/+1
| | | | content_broadcast.
* move page search gui callbacks to their own operations tableVincent Sanders2014-03-181-7/+5
|
* Make browser_window_navigate (un)verifiable flag match browser_window_create.Michael Drake2014-02-101-4/+2
|
* Allow tab creation without history clone. Changes browser_window_create and ↵Michael Drake2014-02-101-4/+4
| | | | browser_window_navigate flags.
* Native select menu interface shouldn't force front end to dig inside bw struct.Michael Drake2014-02-081-1/+1
|
* reduce desktop/browser.h unecessary includesVincent Sanders2014-02-031-0/+1
|
* split browser gui operations upVincent Sanders2014-01-151-1/+1
|
* move remaining gui operations to tableVincent Sanders2014-01-141-1/+2
|
* Merge branch 'rjek/click-file-gadget'Daniel Silverstone2014-01-051-0/+4
|\
| * Restore missing message sendDaniel Silverstone2014-01-051-0/+4
| |
* | Support image inputsDaniel Silverstone2014-01-051-2/+58
|/
* Reflect toggling of 'selected' in the DOMDaniel Silverstone2014-01-041-0/+3
|
* move options includeVincent Sanders2013-05-281-1/+1
|
* Remove search context from browser window, simplify search interface for ↵Michael Drake2013-05-071-1/+75
| | | | | | | | | | | | | | | | | | | | | | 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.
* HTML selections are always read-only now.Michael Drake2013-05-021-3/+1
|
* Fix pointer shape and status bar messages for textareas and their scrollbars.Michael Drake2013-03-111-11/+26
|
* C89François Revol2013-03-091-4/+3
|
* Propagate native caret clip rect through core.Michael Drake2013-03-051-1/+10
|
* Don't bypass html form handling layer when passing keypress to textarea.Michael Drake2013-02-221-1/+2
|
* A load of refactoring of how content selection and input work.Michael Drake2013-02-221-59/+300
| | | | | | | | | | | | | 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-181-4/+4
|
* browser_window_navigate refactorVincent Sanders2013-02-181-7/+16
|
* Drag fixup. Add some documentation.Michael Drake2013-02-081-0/+1
|
* HTML drags now go via content msg.Michael Drake2013-02-081-67/+133
|
* Don't build or include old render/textinput module.Michael Drake2013-02-071-1/+0
|
* First pass at getting html forms to use textarea widget.Michael Drake2013-02-061-84/+9
| | | | | (Input element types text & password, and textarea element.) Can edit and submit forms, but there are loads of issues.
* document mouse interaction a bitVincent Sanders2012-12-101-13/+49
|
* issue click events at domVincent Sanders2012-12-031-7/+20
|
* Improve interaction with html objects.Michael Drake2012-08-211-18/+18
|
* Confine box_at_point to the document it's given. Callers are now ↵Michael Drake2012-08-211-9/+27
| | | | responsible for calling whatever functionality for object boxes. Remove last bw dereference from render directory. Remove a couple of unused functions.
* Avoid using hlcache_handle for drag saves in html_interaction. Drag save ↵Michael Drake2012-08-191-2/+2
| | | | msg with NULL content now means save the content which sends the message.
* Don't use hlcache_handle for URL, since hlcache_handle needs to go.Michael Drake2012-08-191-2/+2
|
* Minor style tweaks.Michael Drake2012-08-191-6/+6
|
* Don't pass internal content status text as an explicit message.Michael Drake2012-08-191-15/+5
|
* Can get root element node directly from within the html content handler. ↵Michael Drake2012-08-171-2/+2
| | | | Avoids using hlcache_handle which needs to go.
* Pass content containing form's nsurl to form_submit, instead of its ↵Michael Drake2012-08-171-1/+1
| | | | hlcache_handle. Avoid dereferencing bw in html content handlers.
* Set content handlers now set pointer via content msg.Michael Drake2012-08-171-5/+9
|
* Use new content message for saving of hyperlink target URL.Michael Drake2012-08-161-4/+7
|
* Avoid forward declaration of functions. Add missing comment to one function.Michael Drake2012-08-161-126/+129
|
* get_pointer_shape() doesn't need bw.Michael Drake2012-08-161-12/+7
|
* Move browser window related control over mouse pointer out of html content ↵Michael Drake2012-08-161-17/+2
| | | | handler.
* Don't use GUI_POINTERs in content handlers.Michael Drake2012-08-161-32/+32
|
* Move bw time recording to bw layer.Michael Drake2012-08-161-4/+0
|
* Broadcast message for drag save start and avoid messing inside bw.Michael Drake2012-08-161-10/+22
|
* Frame drag start function can take child bw. Don't need to get root bw in ↵Michael Drake2012-08-161-12/+6
| | | | html handler. Avoids bw dereferences.
* Make new function for starting a frames resize and use it.Michael Drake2012-08-161-1/+1
|
* Remove redundant "action" param.Michael Drake2012-08-161-2/+6
|
* Don't pass status to frames handler.Michael Drake2012-08-161-2/+4
|
* When dragging frames, we're done handling mouse.Michael Drake2012-08-161-1/+1
|
* Avoid doing html->bw->current_content.Michael Drake2012-08-161-1/+1
|