summaryrefslogtreecommitdiff
path: root/desktop/treeview.c
Commit message (Collapse)AuthorAgeFilesLines
* add regex compatability to utils and enable it for serenity OSVincent Sanders2019-10-121-1/+1
|
* Excise the llcache query pathway.Daniel Silverstone2019-08-051-10/+0
| | | | | | | | In further preparation for the auth and cert queries being handled as special contents from `about:` this excises the query pathway from the llcache pretty much entirely. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* enable gnu extensions to get strcasestr from string.hVincent Sanders2019-08-051-0/+2
|
* Add content handlers for queriesDaniel Silverstone2019-08-041-0/+10
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Corewindow: Sanitise scrolling API.Michael Drake2019-08-031-7/+4
| | | | | | | Now the core has a helper so that all the front ends don't need to implement the scroll to show area API. Now they simply have get and set scroll APIs.
* treeview: Support scrolling to the highlighted nodeDaniel Silverstone2019-08-021-0/+36
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* treeview: Correct mis-freeing in treeview_create error pathDaniel Silverstone2019-08-011-1/+1
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Treeview: Consider search bar for redraw area calculation.Michael Drake2019-01-191-2/+2
|
* Treeview: Use helper to get tree height.Michael Drake2019-01-191-1/+1
|
* Treeview: Consolidate search bar height calculation.Michael Drake2019-01-191-26/+27
|
* Treeview: Fix designated struct initialisation.Michael Drake2018-10-041-6/+6
|
* Treeview: Allow dragging selection to a selected target.Michael Drake2018-07-261-6/+14
| | | | | | This can be used to consolidate a scattered selection at drop target when the the drop target happens to be part of the selection.
* Treeview: Various changes to redraw rectangle for search bar.Michael Drake2018-07-261-33/+64
|
* Plotters: Add plot_style_fixed type, and use for font size.Michael Drake2018-05-231-1/+1
|
* Treeview: Ignore mouse leaving the treeview window.Michael Drake2017-09-271-0/+5
|
* Treeview: Deactivate search on cancel.Michael Drake2017-09-251-0/+1
|
* Treeview: When expanding nodes in search view, adjust height only for ↵Michael Drake2017-09-221-1/+3
| | | | matching entries.
* Treeview: Ensure we know our treeview when doing treeview node collapse.Michael Drake2017-09-221-0/+1
|
* Treeview: Cancel any search when treeview is detatched from its corewindow.Michael Drake2017-09-221-0/+2
|
* Treeview: Split out search cancel functionality.Michael Drake2017-09-221-7/+32
|
* Treeview: Destroy search first on treeview destruction.Michael Drake2017-09-181-4/+6
|
* Treeview: Avoid searching empty treeview.Michael Drake2017-09-181-0/+4
|
* Treeview: Handle node expansion on switch between search and normal view.Michael Drake2017-09-181-17/+27
|
* Treeview: Update search filtered display on treeview changes.Michael Drake2017-09-181-175/+206
|
* Treeview: Update search bar display when it loses focus.Michael Drake2017-09-181-1/+5
|
* Treeview: Only let search textarea consume mouse if not dragging.Michael Drake2017-09-181-1/+3
|
* Treeview: Update mouse handling details for filtered view.Michael Drake2017-09-181-7/+12
| | | | | No moves are allowed in viltered view. Node indents are constant in filtered view.
* Treeview: Update treeview walker to handle walking the filtered display.Michael Drake2017-09-181-63/+137
|
* Treeview: Track height of display in search view.Michael Drake2017-09-181-6/+33
|
* Treeview: Slight simplification of treeview_walk_internal().Michael Drake2017-09-181-4/+2
|
* Treeview: Fix function namespace.Michael Drake2017-09-181-22/+22
|
* Treeview: Scroll to top when treeview search bar is modified.Michael Drake2017-09-181-1/+22
|
* Treeview: Add support for rendering search filter matches as-you-type.Michael Drake2017-09-101-1/+230
|
* Treeview: Split tree-style treeview rendering out into helper.Michael Drake2017-09-101-122/+150
|
* Treeview: Add node matching to search text modification callback.Michael Drake2017-09-101-3/+131
|
* Treeview: Improve some code wrapping.Michael Drake2017-09-101-10/+9
|
* Treeview: Ensure window extents take account of search bar presence.Michael Drake2017-09-101-2/+9
|
* Treeview: Add keypress handling to the search bar.Michael Drake2017-09-101-1/+18
|
* Treeview: Handle mouse clicks on search bar.Michael Drake2017-09-101-0/+17
|
* Treeview: Update treeview mouse handling to offset for search bar presence.Michael Drake2017-09-101-5/+10
|
* Treeview: Add search bar rendering to redraw function.Michael Drake2017-09-101-0/+34
|
* Treeview: Create and destroy a textarea for search.Michael Drake2017-09-101-43/+123
|
* Treeview: Add search drag type to enumeration.Michael Drake2017-09-101-1/+2
|
* Treeview: Split out textarea construction helper.Michael Drake2017-09-091-22/+44
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-9/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* update invalidate area core window APIVincent Sanders2017-05-231-20/+20
| | | | | | | | slightly extends the invalidate core window API with error return and whole window invalidation. Also renames it to be more inline with browser window API call. cannot quite reuse browser window API yet as that applies scaling
* Change interface to system colours to allow reporting of errorsVincent Sanders2017-03-011-30/+59
| | | | | | Allow system colour interface to report errors instead of silently failing and propogate the errors. This also fixes teh system colour documentation.
* Improve treeview documentation commentsVincent Sanders2017-02-281-480/+794
|
* clean up incorrect documentation comments from plotter API reworkVincent Sanders2017-02-141-4/+4
|
* Update knockout plotter to use new APIVincent Sanders2017-02-111-1/+1
|