Function: newsticker--treeview-list-all-items

newsticker--treeview-list-all-items is a byte-compiled function defined in newst-treeview.el.gz.

Signature

(newsticker--treeview-list-all-items WIDGET CHANGED-WIDGET &optional EVENT)

Documentation

Fill newsticker treeview list window with all items.

This is a callback function for the treeview nodes. Argument WIDGET is the calling treeview widget. Argument CHANGED-WIDGET is the widget that actually has changed. Optional argument EVENT is the mouse event that triggered this action.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-treeview.el.gz
(defun newsticker--treeview-list-all-items (widget changed-widget
                                                   &optional event)
  "Fill newsticker treeview list window with all items.
This is a callback function for the treeview nodes.
Argument WIDGET is the calling treeview widget.
Argument CHANGED-WIDGET is the widget that actually has changed.
Optional argument EVENT is the mouse event that triggered this action."
  (newsticker--treeview-list-items-with-age-callback widget changed-widget
                                                     event 'new 'old
                                                     'obsolete 'immortal)
  (newsticker--treeview-item-show-text
   "All items"
   "This is a virtual feed containing all items."))