summaryrefslogtreecommitdiff
path: root/desktop/selection.c
Commit message (Collapse)AuthorAgeFilesLines
* move the public form APIVincent Sanders2016-06-141-1/+1
|
* move plotters header into public APIVincent Sanders2016-05-301-1/+1
|
* move mouse and pointer state header into public APIVincent Sanders2016-05-301-1/+1
|
* move clipboard header into public APIVincent Sanders2016-05-301-1/+1
|
* move window header into public APIVincent Sanders2016-05-301-1/+1
|
* Doxygen cleanups and documentation additionsVincent Sanders2014-11-101-9/+11
|
* remove unecessary browser.h include from core headersVincent Sanders2014-10-171-1/+1
|
* Update the core to use the split operations table headersVincent Sanders2014-10-161-1/+3
| | | | Second in the series to decouple the core API usage from the frontends.
* Put the font operations table alongside all the other core APIVincent Sanders2014-10-131-9/+9
| | | | | | | | | | | | The netsurf core is driven from numerous operation tables most of which are now set through a common netsurf_register() interface. The font and plotting interfaces are currently separate and unlike all the other operation tables are modified for differing contexts. This change moves the font operations alongside all the other operations table and remove unnecessary interaction with the renderers font internals. Further this also removes the need for css internals to be visible in frontends.
* clean up desktop/gui.h include usageVincent Sanders2014-01-291-1/+0
|
* split browser gui operations upVincent Sanders2014-01-151-1/+1
|
* complete move of remaining core gui functionsVincent Sanders2014-01-151-1/+1
|
* confine the gui table acessor to the gui factory headerVincent Sanders2014-01-141-0/+1
|
* move teh final optional window operations into the tableVincent Sanders2014-01-131-3/+3
|
* Update the edit menu after every click, to be safe.Chris Young2013-05-121-1/+0
|
* more fix of edit menu updatesChris Young2013-05-121-0/+1
|
* Remove struct selection from gui_drag_save_selection, so gui.h doesn't need ↵Michael Drake2013-05-101-2/+3
| | | | it now.
* Remove redundant read-only test function.Michael Drake2013-05-021-13/+0
|
* Remove dead stuff from the selection_ api surface.Michael Drake2013-05-021-27/+1
|
* Remove unused selection_get_{start|end} APIs and their helper function.Michael Drake2013-04-291-68/+0
|
* Update comments.Michael Drake2013-04-291-2/+2
|
* Remove block of code that have been commented out for years.Michael Drake2013-04-291-22/+0
|
* Remove redundant code.John-Mark Bell2013-02-221-8/+0
|
* A load of refactoring of how content selection and input work.Michael Drake2013-02-221-126/+2
| | | | | | | | | | | | | 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.
* Remove input subtree special numberspacing.Michael Drake2013-02-071-51/+13
|
* Update to use new front end clipboard functions. Now we build the buffer ↵Michael Drake2013-01-081-71/+88
| | | | from each individual text box in the core, instead of in each front end. Styles for text runs are generated in the HTML case.
* Prevent NULL pointer access with plain text contentsChris Young2012-11-101-1/+1
|
* Move browser_window struct to private header. Places that shouldn't include ↵Michael Drake2012-08-221-0/+1
| | | | | | | | | | | | | | | | | it do, such as front end code. Frontends that have been updated to build: framebuffer gtk monkey riscos TODO: amiga atari beos cocoa windows
* Make selection_traverse internal to desktop/selection.c.Michael Drake2012-08-131-2/+8
|
* Tolerate NULL selection context in selection_get_copy.Michael Drake2012-08-131-1/+1
|
* Fix selection string struct init.Michael Drake2012-08-131-1/+5
|
* Function to get copy of selection as string.Michael Drake2012-08-131-2/+112
|
* Pass font plot style out to front end clipboard append function.Michael Drake2012-08-131-2/+2
|
* Obtain font style in copy handler.Michael Drake2012-08-131-1/+15
|
* Add core function for copy to clipboard, so we don't need to expose ↵Michael Drake2012-08-021-0/+49
| | | | render/box.h internals to front ends.
* Include dom/dom.h where it might be neededDaniel Silverstone2012-03-241-0/+1
| | | | svn path=/trunk/netsurf/; revision=13625
* Selection is now subordinate to html and text content types, and ↵Michael Drake2011-07-261-47/+40
| | | | | | disassociated from browser windows. Note: search currently uses hlcache_handle_get_content() to go from bw to h to get at c for search highlighting via selection. svn path=/trunk/netsurf/; revision=12626
* Fix selection for non-gui browser windows (iframes).Michael Drake2011-07-131-6/+31
| | | | | | | Selection no longer uses current_redraw_browser. Fix long-standing selection bugs on platforms that use action on release behaviour. svn path=/trunk/netsurf/; revision=12598
* Minor selection changes.Michael Drake2011-07-021-2/+4
| | | | svn path=/trunk/netsurf/; revision=12555
* Set/unset selection context's browser window on content_open/content_close.Michael Drake2011-07-011-39/+29
| | | | svn path=/trunk/netsurf/; revision=12551
* Remove logging.Michael Drake2011-06-151-1/+0
| | | | svn path=/trunk/netsurf/; revision=12478
* First pass at core iframes. Currently lacking scrollbars.Michael Drake2011-06-141-8/+49
| | | | svn path=/trunk/netsurf/; revision=12474
* Fix text selectionJohn Mark Bell2011-03-061-7/+8
| | | | svn path=/trunk/netsurf/; revision=11927
* Amiga: Add "cut" option; make cut/copy/paste menus context sensitive; allow ↵Chris Young2010-07-241-0/+2
| | | | | | | | | | | dragging selections within NetSurf window to text fields (does not work across windows). todo: switching tabs will reset cut/copy/paste menus to initial state; cut option is putting something on the clipboard which causes a crash when pasting it back svn path=/trunk/netsurf/; revision=10660
* + Refactor input handling from browser window code into contentMichael Drake2010-06-041-0/+1
| | | | | | | | | | | | | handlers. + Disentangle all box tree manipulation from browser window code and put it where it belongs. + Move other content specific and other irrelevant code from browser window handling to appropriate places. + Put mouse state enum in new mouse header, since it's not just used by browser window code, and it is used by treeview windows on the treeview branch. svn path=/trunk/netsurf/; revision=10561
* Merge jmb/new-cache; r=dsilvers,rs=vinceDaniel Silverstone2010-03-281-6/+8
| | | | svn path=/trunk/netsurf/; revision=10180
* Ensure selection context is zero-initialised. This may well be the root ↵John Mark Bell2009-11-221-1/+1
| | | | | | cause of the random selection crashes people have been seeing. svn path=/trunk/netsurf/; revision=9679
* Refactor text plotter and other font functions to remove dependency on CSS.John Mark Bell2009-07-211-1/+4
| | | | svn path=/trunk/netsurf/; revision=8641
* And againJohn Mark Bell2009-05-281-0/+4
| | | | svn path=/trunk/netsurf/; revision=7607
* Selection menu and save/download tweaksAdrian Lees2009-02-021-1/+16
| | | | svn path=/trunk/netsurf/; revision=6349