summaryrefslogtreecommitdiff
path: root/desktop
Commit message (Collapse)AuthorAgeFilesLines
...
* Don't bother trying to keep old hotlist in sync -- the old one isn't saved ↵Michael Drake2013-08-291-6/+14
| | | | when new one is used anyway.
* Redirect most interaction with the old hotlist to the new one, when the new ↵Michael Drake2013-08-291-0/+43
| | | | one is enabled.
* Make clear that title is copied.Michael Drake2013-08-291-1/+1
|
* Better handling of added entry titles.Michael Drake2013-08-291-4/+12
|
* Fix one px missmatch between click and drag handling of node selection.Michael Drake2013-08-281-2/+2
|
* Fix pass-through for drag end.Michael Drake2013-08-281-5/+2
|
* Add a few functions for front ends to use.Michael Drake2013-08-286-3/+70
|
* Expose a bit more core treeview functionality for hotlist clients.Michael Drake2013-08-282-1/+40
|
* Add height getter.Michael Drake2013-08-281-0/+10
|
* Remove select all and clear selection functions from public API. Clients ↵Michael Drake2013-08-282-22/+16
| | | | can send KEY_SELECT_ALL and KEY_CLEAR_SELECTION to the keypress handler.
* Simple treeview_edit_selection implementation.Michael Drake2013-08-282-0/+43
|
* Function for global history export.Michael Drake2013-08-282-0/+112
|
* Move default title generation from _fini to _export.Michael Drake2013-08-281-1/+4
|
* Give export walk ctx clearer name.Michael Drake2013-08-281-4/+4
|
* Expose hotlist_export.Michael Drake2013-08-282-6/+11
|
* Ensure url is unreffed.Michael Drake2013-08-271-0/+2
|
* Functions to add entry/folder at y-coord or at selection.Michael Drake2013-08-272-8/+119
|
* Function to get releations for node entry.Michael Drake2013-08-272-0/+126
|
* Update new hotlistMichael Drake2013-08-271-0/+7
|
* Update the new hotlist on visits.Michael Drake2013-08-271-1/+5
|
* Unset default folder when it gets deleted.Michael Drake2013-08-271-0/+2
|
* Use Messages for default folder name.Michael Drake2013-08-271-1/+2
|
* Add new entries to default folder.Michael Drake2013-08-271-5/+22
|
* Load and save default folder ID.Michael Drake2013-08-271-7/+33
|
* Add function to update visited data for hotlist entries.Michael Drake2013-08-232-0/+76
|
* Add function to remove any entries with given URL.Michael Drake2013-08-232-3/+50
|
* Add function to determine whether URL is in hotlist.Michael Drake2013-08-232-0/+51
|
* Add Hotlist export/save support.Michael Drake2013-08-221-3/+97
|
* Expose leaving node callback in public treeview walker interface.Michael Drake2013-08-223-17/+36
|
* Inform when textarea drag is happening.Michael Drake2013-08-213-0/+5
|
* Complete editing of entry title and URL values.Michael Drake2013-08-201-0/+45
|
* Act on node edit request message for folders.Michael Drake2013-08-201-12/+33
|
* Add folder node update function.Michael Drake2013-08-202-1/+57
|
* Pass edit message to treeview client, when editing ends.Michael Drake2013-08-202-2/+47
|
* 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.
* Implement get window dimensions for treeview test parasite.Michael Drake2013-08-191-0/+4
|
* Mention behaviour when params are NULL in comment.Michael Drake2013-08-191-2/+2
|
* Use extern on tree.c globals. (These go away when front ends can use the ↵Michael Drake2013-08-182-2/+6
| | | | new treeview modules directly.)
* Set allow edit flag on title and url fields.Michael Drake2013-08-181-3/+5
|
* 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.