Function: system-taskbar--progress

system-taskbar--progress is a byte-compiled function defined in system-taskbar.el.gz.

Signature

(system-taskbar--progress &optional PROGRESS)

Documentation

Display a progress indicator overlay on the system taskbar icon.

PROGRESS is a float in the range 0.0 to 1.0. If PROGRESS is nil, remove the progress indicator.

Implementations

(system-taskbar--progress (&OPTIONAL ((&context . system-taskbar--back-end) eql 'w32)) PROGRESS) in `system-taskbar.el'.

Display a progress bar on the system taskbar icon. PROGRESS is a float in the range 0.0 to 1.0. If PROGRESS is nil, remove the progress bar.

(system-taskbar--progress (&OPTIONAL ((&context . system-taskbar--back-end) eql 'ns)) PROGRESS) in `system-taskbar.el'.

Display a progress bar overlay on the Dock and App Switcher. PROGRESS is a float in the range 0.0 to 1.0. If PROGRESS is nil, remove the progress bar.

(system-taskbar--progress (&OPTIONAL ((&context . system-taskbar--back-end) eql 'dbus)) PROGRESS) in `system-taskbar.el'.

Display a progress bar overlay on the system taskbar icon. PROGRESS is a float in the range 0.0 to 1.0. If PROGRESS is nil, remove the progress bar.

Source Code

;; Defined in /usr/src/emacs/lisp/system-taskbar.el.gz
(cl-defgeneric system-taskbar--progress (&optional progress)
  "Display a progress indicator overlay on the system taskbar icon.
PROGRESS is a float in the range 0.0 to 1.0.
If PROGRESS is nil, remove the progress indicator.")