summaryrefslogtreecommitdiff
path: root/desktop/treeview.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Add quite param to insertion calls to suppress treeview height callback.Michael Drake2013-07-011-4/+6
|
* Pass drag state to core window user.Michael Drake2013-07-011-0/+7
|
* Delete and backspace keys delete selected nodes.Michael Drake2013-07-011-2/+39
|
* Start keypress handling.Michael Drake2013-07-011-0/+48
|
* Handle mouse action below last node.Michael Drake2013-07-011-8/+84
|
* Update ancestor heights on node deletion.Michael Drake2013-06-301-0/+8
|
* Inform front end when treeview height changes.Michael Drake2013-06-301-3/+16
|
* Document static functions.Michael Drake2013-06-181-4/+26
|
* More documentation.Michael Drake2013-06-181-42/+43
|
* Say which functions are documented in the header.Michael Drake2013-06-181-10/+21
|
* Remove unused function.Michael Drake2013-06-181-9/+0
|
* Add support for selection drags. Not yet implemented move drags.Michael Drake2013-06-181-9/+208
|
* Reduce redraw area.Michael Drake2013-06-041-2/+2
|
* Fixup and remove unused defines.Michael Drake2013-06-041-4/+1
|
* Enable double click to launch from treeview.Michael Drake2013-06-041-2/+8
|
* Add support for clicking node expansion toggle.Michael Drake2013-06-041-6/+28
|
* Allow ctrl + select to toggle selection.Michael Drake2013-06-041-1/+3
|
* Make releationship enum meanings clearer.Michael Drake2013-06-041-4/+4
|
* Different text colour for an expanded entries' fields.Michael Drake2013-06-041-14/+36
|
* Store inset on node.Michael Drake2013-06-041-15/+12
|
* Get line height from font size.Michael Drake2013-06-031-4/+10
|
* Remove selected area styles.Michael Drake2013-06-031-20/+0
|
* Don't pass INT_MAX to redraw_request. RO WIMP doesn't like it.Michael Drake2013-06-031-4/+7
| | | | TODO: Make treeview aware of the window size.
* Include full expanded entry height in clip test.Michael Drake2013-06-031-1/+1
|
* Use plot coordinate correctly and use the shifted offset clip rect.Michael Drake2013-06-031-5/+5
|
* Fix use of wrong enum value.Michael Drake2013-06-031-1/+1
|
* Make heights signed, to simplify comparison with struct rect values, which ↵Michael Drake2013-06-031-5/+3
| | | | are signed.
* Simplify redraw node walk.Michael Drake2013-06-031-20/+11
|
* Squash warnings for things that can't happen.Michael Drake2013-06-031-2/+5
|
* Simplify tree walker.Michael Drake2013-06-031-23/+13
|
* Clean up history node deletion -- now treeview driven. Add select all, ↵Michael Drake2013-06-031-38/+215
| | | | selection clear, has selection functions. Improve selection handling. Enable double click to toggle node expansion. Improve redraw behaviour. Make treeview call node callback for deletion. Fix redraw issues.
* cw handle can't be const.Michael Drake2013-05-311-2/+2
|
* Rename treeview_walk --> treeview_walk_internal.Michael Drake2013-05-311-3/+4
|
* Call redraw function on clicks. Enable treewalker to skip the children of ↵Michael Drake2013-05-311-10/+21
| | | | collapsed nodes.
* Make node flags for expanded and selected. Start mouse action support. ↵Michael Drake2013-05-311-26/+79
| | | | (Little more than a stub.)
* Add first pass at new treeview.Michael Drake2013-05-311-0/+1104
Only supports creation, destruction, and redraw atm. TODO: input handling (mouse, keyboard), editing, using the node callbacks. Also includes new core_window.h.