
dc4e6b1329
; Update copyright years in more files64b3777631
; Run set-copyright from admin.el8e1c56ae46
; Add 2024 to copyright years # Conflicts: # doc/misc/modus-themes.org # doc/misc/texinfo.tex # etc/NEWS # etc/refcards/ru-refcard.tex # etc/themes/modus-operandi-theme.el # etc/themes/modus-themes.el # etc/themes/modus-vivendi-theme.el # lib/alloca.in.h # lib/binary-io.h # lib/c-ctype.h # lib/c-strcasecmp.c # lib/c-strncasecmp.c # lib/careadlinkat.c # lib/cloexec.c # lib/close-stream.c # lib/diffseq.h # lib/dup2.c # lib/filemode.h # lib/fpending.c # lib/fpending.h # lib/fsusage.c # lib/getgroups.c # lib/getloadavg.c # lib/gettext.h # lib/gettime.c # lib/gettimeofday.c # lib/group-member.c # lib/malloc.c # lib/md5-stream.c # lib/md5.c # lib/md5.h # lib/memmem.c # lib/memrchr.c # lib/nanosleep.c # lib/save-cwd.h # lib/sha1.c # lib/sig2str.c # lib/stdlib.in.h # lib/strtoimax.c # lib/strtol.c # lib/strtoll.c # lib/time_r.c # lib/xalloc-oversized.h # lisp/auth-source-pass.el # lisp/emacs-lisp/lisp-mnt.el # lisp/emacs-lisp/timer.el # lisp/info-look.el # lisp/jit-lock.el # lisp/loadhist.el # lisp/mail/rmail.el # lisp/net/ntlm.el # lisp/net/webjump.el # lisp/progmodes/asm-mode.el # lisp/progmodes/project.el # lisp/progmodes/sh-script.el # lisp/textmodes/flyspell.el # lisp/textmodes/reftex-toc.el # lisp/textmodes/reftex.el # lisp/textmodes/tex-mode.el # lisp/url/url-gw.el # m4/alloca.m4 # m4/clock_time.m4 # m4/d-type.m4 # m4/dirent_h.m4 # m4/dup2.m4 # m4/euidaccess.m4 # m4/fchmodat.m4 # m4/filemode.m4 # m4/fsusage.m4 # m4/getgroups.m4 # m4/getloadavg.m4 # m4/getrandom.m4 # m4/gettime.m4 # m4/gettimeofday.m4 # m4/gnulib-common.m4 # m4/group-member.m4 # m4/inttypes.m4 # m4/malloc.m4 # m4/manywarnings.m4 # m4/mempcpy.m4 # m4/memrchr.m4 # m4/mkostemp.m4 # m4/mktime.m4 # m4/nproc.m4 # m4/nstrftime.m4 # m4/pathmax.m4 # m4/pipe2.m4 # m4/pselect.m4 # m4/pthread_sigmask.m4 # m4/readlink.m4 # m4/realloc.m4 # m4/sig2str.m4 # m4/ssize_t.m4 # m4/stat-time.m4 # m4/stddef_h.m4 # m4/stdint.m4 # m4/stdio_h.m4 # m4/stdlib_h.m4 # m4/stpcpy.m4 # m4/strnlen.m4 # m4/strtoimax.m4 # m4/strtoll.m4 # m4/time_h.m4 # m4/timegm.m4 # m4/timer_time.m4 # m4/timespec.m4 # m4/unistd_h.m4 # m4/warnings.m4 # nt/configure.bat # nt/preprep.c # test/lisp/register-tests.el
336 lines
14 KiB
EmacsLisp
336 lines
14 KiB
EmacsLisp
;;; newst-ticker.el --- mode line ticker for newsticker. -*- lexical-binding: t; -*-
|
|
|
|
;; Copyright (C) 2003-2024 Free Software Foundation, Inc.
|
|
|
|
;; Author: Ulf Jasper <ulf.jasper@web.de>
|
|
;; Filename: newst-ticker.el
|
|
;; URL: https://www.nongnu.org/newsticker
|
|
;; Keywords: News, RSS, Atom
|
|
;; Package: newsticker
|
|
|
|
;; ======================================================================
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;; ======================================================================
|
|
|
|
;;; Commentary:
|
|
|
|
;; See newsticker.el
|
|
|
|
;; ======================================================================
|
|
;;; Code:
|
|
|
|
(require 'newst-backend)
|
|
|
|
(defvar newsticker--item-list nil
|
|
"List of newsticker items.")
|
|
(defvar newsticker--item-position 0
|
|
"Actual position in list of newsticker items.")
|
|
(defvar newsticker--prev-message "There was no previous message yet!"
|
|
"Last message that the newsticker displayed.")
|
|
(defvar newsticker--scrollable-text ""
|
|
"The text which is scrolled smoothly in the echo area.")
|
|
(defvar newsticker--ticker-period-timer nil
|
|
"Timer for newsticker ticker display.")
|
|
(defvar newsticker--ticker-timer nil
|
|
"Timer for newsticker ticker scrolling.")
|
|
|
|
;;;###autoload
|
|
(defun newsticker-ticker-running-p ()
|
|
"Check whether newsticker's actual ticker is running.
|
|
Return t if ticker is running, nil otherwise. Newsticker is
|
|
considered to be running if the newsticker timer list is not
|
|
empty."
|
|
(timerp newsticker--ticker-timer))
|
|
|
|
;; customization group ticker
|
|
(defgroup newsticker-ticker nil
|
|
"Settings for the headline ticker."
|
|
:group 'newsticker)
|
|
|
|
(defun newsticker--set-customvar-ticker (symbol value)
|
|
"Set newsticker-variable SYMBOL value to VALUE.
|
|
Calls all actions which are necessary in order to make the new
|
|
value effective."
|
|
(if (or (not (boundp symbol))
|
|
(equal (symbol-value symbol) value))
|
|
(set symbol value)
|
|
;; something must have changed -- restart ticker
|
|
(when (newsticker-running-p)
|
|
(message "Restarting ticker")
|
|
(newsticker-stop-ticker)
|
|
(newsticker--ticker-text-setup)
|
|
(newsticker-start-ticker)
|
|
(message ""))))
|
|
|
|
(defcustom newsticker-ticker-interval
|
|
0.3
|
|
"Time interval for scrolling news items in the echo area (seconds).
|
|
If equal or less than 0 no messages are shown in the echo area. For
|
|
smooth display (see `newsticker-scroll-smoothly') a value of 0.3 seems
|
|
reasonable. For non-smooth display a value of 10 is a good starting
|
|
point."
|
|
:type 'number
|
|
:set #'newsticker--set-customvar-ticker
|
|
:group 'newsticker-ticker)
|
|
|
|
(defcustom newsticker-ticker-period
|
|
0
|
|
"Time interval for displaying news items in the echo area (seconds).
|
|
If equal or less than 0 messages are shown continuously. In order not
|
|
to miss new items, a value of equal or less than the shortest feed
|
|
retrieval interval (or the global `newsticker-retrieval-interval`) is
|
|
recommended."
|
|
:type 'number
|
|
:set #'newsticker--set-customvar-ticker
|
|
:group 'newsticker-ticker)
|
|
|
|
(defcustom newsticker-scroll-smoothly
|
|
t
|
|
"Decides whether to flash or scroll news items.
|
|
If t the news headlines are scrolled (more-or-less) smoothly in the echo
|
|
area. If nil one headline after another is displayed in the echo area.
|
|
The variable `newsticker-ticker-interval' determines how fast this
|
|
display moves/changes and whether headlines are shown in the echo area
|
|
at all. If you change `newsticker-scroll-smoothly' you should also change
|
|
`newsticker-ticker-interval'."
|
|
:type 'boolean
|
|
:group 'newsticker-ticker)
|
|
|
|
(defcustom newsticker-hide-immortal-items-in-echo-area
|
|
t
|
|
"Decides whether to show immortal/non-expiring news items in the ticker.
|
|
If t the echo area will not show immortal items. See also
|
|
`newsticker-hide-old-items-in-echo-area'."
|
|
:type 'boolean
|
|
:set #'newsticker--set-customvar-ticker
|
|
:group 'newsticker-ticker)
|
|
|
|
(defcustom newsticker-hide-old-items-in-echo-area
|
|
t
|
|
"Decides whether to show only the newest news items in the ticker.
|
|
If t the echo area will show only new items, i.e. only items which have
|
|
been added between the last two retrievals."
|
|
:type 'boolean
|
|
:set #'newsticker--set-customvar-ticker
|
|
:group 'newsticker-ticker)
|
|
|
|
(defcustom newsticker-hide-obsolete-items-in-echo-area
|
|
t
|
|
"Decides whether to show obsolete items in the ticker.
|
|
If t the echo area will not show obsolete items. See also
|
|
`newsticker-hide-old-items-in-echo-area'."
|
|
:type 'boolean
|
|
:set #'newsticker--set-customvar-ticker
|
|
:group 'newsticker-ticker)
|
|
|
|
(defun newsticker--display-tick ()
|
|
"Called from the display timer.
|
|
This function calls a display function, according to the variable
|
|
`newsticker-scroll-smoothly'."
|
|
(when (not newsticker--ticker-timer)
|
|
(if newsticker-scroll-smoothly
|
|
(setq newsticker--ticker-timer
|
|
(run-at-time 1
|
|
newsticker-ticker-interval
|
|
#'newsticker--display-scroll))
|
|
(setq newsticker--ticker-timer
|
|
(run-at-time nil
|
|
newsticker-ticker-interval
|
|
#'newsticker--display-jump)))))
|
|
|
|
(defsubst newsticker--echo-area-clean-p ()
|
|
"Check whether somebody is using the echo area / minibuffer.
|
|
Return t if echo area and minibuffer are unused."
|
|
(not (or (active-minibuffer-window)
|
|
(and (current-message)
|
|
(not (string= (current-message)
|
|
newsticker--prev-message))))))
|
|
|
|
(defun newsticker--display-jump ()
|
|
"Called from the display timer.
|
|
This function displays the next ticker item in the echo area, unless
|
|
there is another message displayed or the minibuffer is active."
|
|
(let ((message-log-max nil));; prevents message text from being logged
|
|
(when (newsticker--echo-area-clean-p)
|
|
(setq newsticker--item-position (1+ newsticker--item-position))
|
|
(when (>= newsticker--item-position (length newsticker--item-list))
|
|
(setq newsticker--item-position 0)
|
|
(when (> newsticker-ticker-period 0)
|
|
(cancel-timer newsticker--ticker-timer)
|
|
(setq newsticker--ticker-timer nil)
|
|
(run-at-time newsticker-ticker-interval nil
|
|
(lambda () (message "")))))
|
|
(setq newsticker--prev-message
|
|
(nth newsticker--item-position newsticker--item-list))
|
|
(message "%s" newsticker--prev-message))))
|
|
|
|
(defun newsticker--display-scroll ()
|
|
"Called from the display timer.
|
|
This function scrolls the ticker items in the echo area, unless
|
|
there is another message displayed or the minibuffer is active."
|
|
(when (newsticker--echo-area-clean-p)
|
|
(let* ((width (- (frame-width) 1))
|
|
(message-log-max nil);; prevents message text from being logged
|
|
(i newsticker--item-position)
|
|
subtext
|
|
(s-text newsticker--scrollable-text)
|
|
(l (length s-text)))
|
|
;; don't show anything if there is nothing to show
|
|
(unless (< (length s-text) 1)
|
|
;; repeat the ticker string if it is shorter than frame width
|
|
(while (< (length s-text) width)
|
|
(setq s-text (concat s-text s-text)))
|
|
;; get the width of the printed string
|
|
(setq l (length s-text))
|
|
(cond ((< i (- l width))
|
|
(setq subtext (substring s-text i (+ i width))))
|
|
(t
|
|
(setq subtext (concat
|
|
(substring s-text i l)
|
|
(substring s-text 0 (- width (- l i)))))))
|
|
;; Take care of multibyte strings, for which (string-width) is
|
|
;; larger than (length).
|
|
;; Actually, such strings may be smaller than (frame-width)
|
|
;; because return values of (string-width) are too large:
|
|
;; (string-width "<japanese character>") => 2
|
|
(let ((t-width (1- (length subtext))))
|
|
(while (> (string-width subtext) width)
|
|
(setq subtext (substring subtext 0 t-width))
|
|
(setq t-width (1- t-width))))
|
|
;; show the ticker text and save current position
|
|
(message "%s" subtext)
|
|
(setq newsticker--prev-message subtext)
|
|
(setq newsticker--item-position (1+ i))
|
|
(when (>= newsticker--item-position l)
|
|
(setq newsticker--item-position 0)
|
|
(when (> newsticker-ticker-period 0)
|
|
(cancel-timer newsticker--ticker-timer)
|
|
(setq newsticker--ticker-timer nil)
|
|
(run-at-time newsticker-ticker-interval nil
|
|
(lambda () (message "")))))))))
|
|
|
|
;;;###autoload
|
|
(defun newsticker-start-ticker ()
|
|
"Start newsticker's ticker (but not the news retrieval).
|
|
Start display timer for the actual ticker if wanted and not
|
|
running already."
|
|
(interactive)
|
|
(when (and (> newsticker-ticker-interval 0)
|
|
(not newsticker--ticker-period-timer)
|
|
(not newsticker--ticker-timer))
|
|
(if (> newsticker-ticker-period 0)
|
|
(setq newsticker--ticker-period-timer
|
|
(run-at-time nil
|
|
newsticker-ticker-period
|
|
#'newsticker--display-tick))
|
|
(newsticker--display-tick))))
|
|
|
|
(defun newsticker-stop-ticker ()
|
|
"Stop newsticker's ticker (but not the news retrieval)."
|
|
(interactive)
|
|
(progn
|
|
(when newsticker--ticker-timer
|
|
(cancel-timer newsticker--ticker-timer)
|
|
(setq newsticker--ticker-timer nil))
|
|
(when newsticker--ticker-period-timer
|
|
(cancel-timer newsticker--ticker-period-timer)
|
|
(setq newsticker--ticker-period-timer nil))))
|
|
|
|
;; ======================================================================
|
|
;;; Manipulation of ticker text
|
|
;; ======================================================================
|
|
(defun newsticker--ticker-text-setup ()
|
|
"Build the ticker text which is scrolled or flashed in the echo area."
|
|
;; reset scrollable text
|
|
(setq newsticker--scrollable-text "")
|
|
(setq newsticker--item-list nil)
|
|
(setq newsticker--item-position 0)
|
|
;; build scrollable text from cache data
|
|
(let ((have-something nil))
|
|
(mapc
|
|
(lambda (feed)
|
|
(let ((feed-name (symbol-name (car feed))))
|
|
(let ((num-new (newsticker--stat-num-items (car feed) 'new))
|
|
(num-old (newsticker--stat-num-items (car feed) 'old))
|
|
(num-imm (newsticker--stat-num-items (car feed) 'immortal))
|
|
(num-obs (newsticker--stat-num-items (car feed) 'obsolete)))
|
|
(when (or (> num-new 0)
|
|
(and (> num-old 0)
|
|
(not newsticker-hide-old-items-in-echo-area))
|
|
(and (> num-imm 0)
|
|
(not newsticker-hide-immortal-items-in-echo-area))
|
|
(and (> num-obs 0)
|
|
(not newsticker-hide-obsolete-items-in-echo-area)))
|
|
(setq have-something t)
|
|
(mapc
|
|
(lambda (item)
|
|
(let ((title (replace-regexp-in-string
|
|
"[\r\n]+" " "
|
|
(newsticker--title item)))
|
|
(age (newsticker--age item)))
|
|
(unless (string= title newsticker--error-headline)
|
|
(when
|
|
(or (eq age 'new)
|
|
(and (eq age 'old)
|
|
(not newsticker-hide-old-items-in-echo-area))
|
|
(and (eq age 'obsolete)
|
|
(not
|
|
newsticker-hide-obsolete-items-in-echo-area))
|
|
(and (eq age 'immortal)
|
|
(not
|
|
newsticker-hide-immortal-items-in-echo-area)))
|
|
(setq title (newsticker--remove-whitespace title))
|
|
;; add to flash list
|
|
(add-to-list 'newsticker--item-list
|
|
(concat feed-name ": " title) t)
|
|
;; and to the scrollable text
|
|
(setq newsticker--scrollable-text
|
|
(concat newsticker--scrollable-text
|
|
" " feed-name ": " title " +++"))))))
|
|
(cdr feed))))))
|
|
newsticker--cache)
|
|
(when have-something
|
|
(setq newsticker--scrollable-text
|
|
(concat "+++ "
|
|
(format-time-string "%A, %H:%M"
|
|
newsticker--latest-update-time)
|
|
" ++++++" newsticker--scrollable-text)))))
|
|
|
|
(defun newsticker--ticker-text-remove (feed title)
|
|
"Remove the item of FEED with TITLE from the ticker text."
|
|
;; reset scrollable text
|
|
(setq newsticker--item-position 0)
|
|
(let ((feed-name (symbol-name feed))
|
|
(t-title (replace-regexp-in-string "[\r\n]+" " " title)))
|
|
;; remove from flash list
|
|
(setq newsticker--item-list (remove (concat feed-name ": " t-title)
|
|
newsticker--item-list))
|
|
;; and from the scrollable text
|
|
(setq newsticker--scrollable-text
|
|
(replace-regexp-in-string
|
|
(regexp-quote (concat " " feed-name ": " t-title " +++"))
|
|
""
|
|
newsticker--scrollable-text))
|
|
(if (string-match (concat "^\\+\\+\\+ [A-Z][a-z]+, "
|
|
"[012]?[0-9]:[0-9][0-9] \\+\\+\\+\\+\\+\\+$")
|
|
newsticker--scrollable-text)
|
|
(setq newsticker--scrollable-text ""))))
|
|
|
|
(provide 'newst-ticker)
|
|
|
|
;;; newst-ticker.el ends here
|