summaryrefslogtreecommitdiff
path: root/desktop/treeview.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Add height getter.Michael Drake2013-08-281-0/+10
|
* Remove select all and clear selection functions from public API. Clients ↵Michael Drake2013-08-281-4/+16
| | | | can send KEY_SELECT_ALL and KEY_CLEAR_SELECTION to the keypress handler.
* Simple treeview_edit_selection implementation.Michael Drake2013-08-281-0/+36
|
* Function to get releations for node entry.Michael Drake2013-08-271-0/+107
|
* Expose leaving node callback in public treeview walker interface.Michael Drake2013-08-221-8/+23
|
* Inform when textarea drag is happening.Michael Drake2013-08-211-0/+1
|
* Add folder node update function.Michael Drake2013-08-201-1/+41
|
* Pass edit message to treeview client, when editing ends.Michael Drake2013-08-201-1/+46
|
* Fix node insertion ancestor height updating having cumulative effect.Michael Drake2013-08-201-6/+6
|
* Tidy edit start click behaviour, with existing selections.Michael Drake2013-08-191-3/+5
|
* Start of treeview node edit support. Internal treeview part is mostly done. ↵Michael Drake2013-08-191-32/+322
| | | | It now needs to inform the client (only hotlist allows edit), of the change. And the hotlist needs to handle the change request message and update the node.
* Ensure ctrl modifier is handled, by dealing with it before no-modifiers case.Michael Drake2013-08-181-5/+6
|
* Ensure nodes within contracted nodes are unselected.Michael Drake2013-08-171-0/+8
|
* Fix clang warning.Michael Drake2013-08-171-1/+0
|
* Implement node moving drags.Michael Drake2013-08-171-130/+308
|
* Find the top y value of selections for indicator pos.Michael Drake2013-08-171-3/+36
|
* Improve keyboard nav slightly.Michael Drake2013-08-171-55/+56
|
* Fix keyboard nav redraw when treeview height decreases as a result of ↵Michael Drake2013-08-171-36/+39
| | | | keypress. Reduce some variable name lengths.
* Move drops over selection target top of selected run.Michael Drake2013-08-171-1/+15
|
* Propagate selection to visible descendant nodes when a move drag is started ↵Michael Drake2013-08-171-13/+65
| | | | with folder selected.
* Optimise drop indicator redraw area.Michael Drake2013-08-171-32/+56
|
* Remove unused structure member.Michael Drake2013-08-161-2/+0
|
* Do indicator redraw after everything else is done, to simplify things.Michael Drake2013-08-161-37/+41
|
* Group the move details, for clarity.Michael Drake2013-08-161-18/+23
|
* Start optimising drop indicator redraw.Michael Drake2013-08-161-21/+37
|
* Begin move handling. Currently only moves the drop target indicator during ↵Michael Drake2013-08-161-8/+175
| | | | drags. Nothing actually gets moved.
* Slight refactor of drag end handling, for future handling of more types of drag.Michael Drake2013-08-161-9/+18
|
* Add comment.Michael Drake2013-08-161-0/+1
|
* Rename "section" to "part".Michael Drake2013-08-161-24/+23
|
* Inform front end when drag starts below nodes too.Michael Drake2013-08-161-0/+4
|
* Move old hotlist out of the way.Michael Drake2013-08-131-1/+3
|
* Expose treeview walker.Michael Drake2013-07-251-6/+38
|
* Make node delete callback msg differentiate between deletes caused by user ↵Michael Drake2013-07-151-5/+10
| | | | interaction and other deletes (e.g. treeview destruction).
* Cursor down moves to next after noncontinuous selections.Michael Drake2013-07-091-2/+5
|
* Cursor right toggles expansion.Michael Drake2013-07-091-5/+15
|
* A couple of tidyups.Michael Drake2013-07-091-33/+43
|
* Initial keyboard navigation support.Michael Drake2013-07-091-4/+122
|
* Move mix_colour macro out of treeview for other stuff to use.Michael Drake2013-07-081-13/+0
|
* Launch selection launches entries within contracted folders.Michael Drake2013-07-081-1/+1
|
* Improve doc comments.Michael Drake2013-07-081-0/+14
|
* Return key launches current selection.Michael Drake2013-07-081-1/+54
|
* Change how nodes are deleted.Michael Drake2013-07-061-161/+298
|
* Make tree walker use nserror.Michael Drake2013-07-031-30/+68
|
* Typedefs for internal treeview and treeview_node structs.Michael Drake2013-07-031-51/+51
|
* Treeview walker now takes two callback function pointers. One called in fwd ↵Michael Drake2013-07-031-13/+25
| | | | direction, one called in bwd direction.
* Implement DEL_EMPTY_DIRS flag.Michael Drake2013-07-031-2/+20
|
* Allow empty folders to be open.Michael Drake2013-07-031-3/+4
|
* Make READ_ONLY flag a combinator for NO_MOVES and NO_DELETES. Implement ↵Michael Drake2013-07-031-5/+26
| | | | NO_DELETES.
* Add treeview behaviour flags.Michael Drake2013-07-031-1/+5
|
* Make flags for suppress resize.Michael Drake2013-07-021-4/+4
|