Minor NEWS fix.
[bpt/emacs.git] / lisp / calendar / appt.el
CommitLineData
55535639 1;;; appt.el --- appointment notification functions
c0274f38 2
a20b3848 3;; Copyright (C) 1989, 1990, 1994, 1998, 2001, 2002, 2003, 2004, 2005,
114f9c96 4;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
3a801d0c 5
e5167999 6;; Author: Neil Mager <neilm@juliet.ll.mit.edu>
aff88519 7;; Maintainer: Glenn Morris <rgm@gnu.org>
e5167999 8;; Keywords: calendar
bd78fa1d 9;; Package: calendar
e5167999 10
902a0e3c
JB
11;; This file is part of GNU Emacs.
12
2ed66575 13;; GNU Emacs is free software: you can redistribute it and/or modify
902a0e3c 14;; it under the terms of the GNU General Public License as published by
2ed66575
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
902a0e3c
JB
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
2ed66575 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
902a0e3c 25
e5167999
ER
26;;; Commentary:
27
902a0e3c
JB
28;;
29;; appt.el - visible and/or audible notification of
8d638c1b 30;; appointments from diary file.
902a0e3c 31;;
e1422141
SM
32;;
33;; Thanks to Edward M. Reingold for much help and many suggestions,
34;; And to many others for bug fixes and suggestions.
35;;
36;;
37;; This functions in this file will alert the user of a
38;; pending appointment based on his/her diary file. This package
39;; is documented in the Emacs manual.
40;;
41;; To activate this package, simply use (appt-activate 1).
42;; A `diary-file' with appointments of the format described in the
43;; documentation of the function `appt-check' is required.
44;; Relevant customizable variables are also listed in the
45;; documentation of that function.
46;;
47;; Today's appointment list is initialized from the diary when this
12b2a018 48;; package is activated. Additionally, the appointments list is
e1422141 49;; recreated automatically at 12:01am for those who do not logout
12b2a018 50;; every day or are programming late. It is also updated when the
08151ec5
GM
51;; `diary-file' (or a file it includes) is saved. Calling
52;; `appt-check' with an argument (or re-enabling the package) forces a
53;; re-initialization at any time.
e1422141
SM
54;;
55;; In order to add or delete items from today's list, without
56;; changing the diary file, use `appt-add' and `appt-delete'.
57;;
58
59;; Brief internal description - Skip this if you are not interested!
60;;
61;; The function `appt-make-list' creates the appointments list which
62;; `appt-check' reads.
63;;
64;; You can change the way the appointment window is created/deleted by
65;; setting the variables
66;;
debf91fd 67;; appt-disp-window-function
e1422141 68;; and
debf91fd 69;; appt-delete-window-function
e1422141
SM
70;;
71;; For instance, these variables could be set to functions that display
72;; appointments in pop-up frames, which are lowered or iconified after
73;; `appt-display-interval' minutes.
74;;
e5167999
ER
75
76;;; Code:
77
467f174b 78(require 'diary-lib)
6afadb57 79
d589fa52
GM
80
81(defgroup appt nil
82 "Appointment notification."
467f174b 83 :prefix "appt-"
d589fa52
GM
84 :group 'calendar)
85
30e8032d 86(defcustom appt-issue-message t
40f79f5b 87 "Non-nil means check for appointments in the diary buffer.
30e8032d
GM
88To be detected, the diary entry must have the format described in the
89documentation of the function `appt-check'."
90 :type 'boolean
91 :group 'appt)
92
93(make-obsolete-variable 'appt-issue-message
94 "use the function `appt-activate', and the \
bf247b6e 95variable `appt-display-format' instead." "22.1")
30e8032d 96
8db540c5 97(defcustom appt-message-warning-time 12
40f79f5b 98 "Time in minutes before an appointment that the warning begins."
8db540c5
RS
99 :type 'integer
100 :group 'appt)
902a0e3c 101
8db540c5 102(defcustom appt-audible t
40f79f5b 103 "Non-nil means beep to indicate appointment."
8db540c5
RS
104 :type 'boolean
105 :group 'appt)
902a0e3c 106
8db540c5 107(defcustom appt-visible t
40f79f5b 108 "Non-nil means display appointment message in echo area.
8d638c1b 109This variable is only relevant if `appt-msg-window' is nil."
8db540c5
RS
110 :type 'boolean
111 :group 'appt)
902a0e3c 112
bf247b6e 113(make-obsolete-variable 'appt-visible 'appt-display-format "22.1")
8d638c1b 114
8d638c1b 115(defcustom appt-msg-window t
40f79f5b 116 "Non-nil means display appointment message in another window.
8d638c1b 117If non-nil, this variable overrides `appt-visible'."
8db540c5
RS
118 :type 'boolean
119 :group 'appt)
902a0e3c 120
bf247b6e 121(make-obsolete-variable 'appt-msg-window 'appt-display-format "22.1")
8d638c1b
GM
122
123;; TODO - add popup.
a19de628 124(defcustom appt-display-format 'ignore
8d638c1b
GM
125 "How appointment reminders should be displayed.
126The options are:
127 window - use a separate window
128 echo - use the echo area
129 nil - no visible reminder.
a19de628
GM
130See also `appt-audible' and `appt-display-mode-line'.
131
132The default value is 'ignore, which means to fall back on the value
133of the (obsolete) variables `appt-msg-window' and `appt-visible'."
8d638c1b
GM
134 :type '(choice
135 (const :tag "Separate window" window)
136 (const :tag "Echo-area" echo)
3c6b81d8
GM
137 (const :tag "No visible display" nil)
138 (const :tag "Backwards compatibility setting - choose another value"
139 ignore))
8d638c1b 140 :group 'appt
bf247b6e 141 :version "22.1")
8d638c1b 142
8d638c1b 143(defcustom appt-display-mode-line t
40f79f5b 144 "Non-nil means display minutes to appointment and time on the mode line.
8d638c1b 145This is in addition to any other display of appointment messages."
8db540c5
RS
146 :type 'boolean
147 :group 'appt)
902a0e3c 148
8db540c5 149(defcustom appt-display-duration 10
40f79f5b 150 "The number of seconds an appointment message is displayed.
8d638c1b 151Only relevant if reminders are to be displayed in their own window."
8db540c5
RS
152 :type 'integer
153 :group 'appt)
902a0e3c 154
8db540c5 155(defcustom appt-display-diary t
40f79f5b 156 "Non-nil displays the diary when the appointment list is first initialized.
8db540c5
RS
157This will occur at midnight when the appointment list is updated."
158 :type 'boolean
159 :group 'appt)
902a0e3c 160
8db540c5 161(defcustom appt-display-interval 3
40f79f5b 162 "Number of minutes to wait between checking the appointment list."
8db540c5
RS
163 :type 'integer
164 :group 'appt)
a1506d29 165
8d638c1b
GM
166(defcustom appt-disp-window-function 'appt-disp-window
167 "Function called to display appointment window.
ce5b3019
GM
168Only relevant if reminders are being displayed in a window.
169It should take three string arguments: the number of minutes till
170the appointment, the current time, and the text of the appointment."
8d638c1b
GM
171 :type '(choice (const appt-disp-window)
172 function)
173 :group 'appt)
174
175(defcustom appt-delete-window-function 'appt-delete-window
176 "Function called to remove appointment window and buffer.
177Only relevant if reminders are being displayed in a window."
178 :type '(choice (const appt-delete-window)
179 function)
180 :group 'appt)
181
182
183;;; Internal variables below this point.
184
e1422141 185(defconst appt-buffer-name "*appt-buf*"
5b586155 186 "Name of the appointments buffer.")
a1506d29 187
d7cd4abb
GM
188;; TODO Turn this into an alist? It would be easier to add more
189;; optional elements.
190;; TODO There should be a way to set WARNTIME (and other properties)
191;; from the diary-file. Implementing that would be a good reason
192;; to change this to an alist.
8d638c1b
GM
193(defvar appt-time-msg-list nil
194 "The list of appointments for today.
195Use `appt-add' and `appt-delete' to add and delete appointments.
196The original list is generated from today's `diary-entries-list', and
197can be regenerated using the function `appt-check'.
d7cd4abb
GM
198Each element of the generated list has the form
199\(MINUTES STRING [FLAG] [WARNTIME])
200where MINUTES is the time in minutes of the appointment after midnight,
201and STRING is the description of the appointment.
202FLAG and WARNTIME can only be present if the element was made
203with `appt-add'. A non-nil FLAG indicates that the element was made
204with `appt-add', so calling `appt-make-list' again should preserve it.
205If WARNTIME is non-nil, it is an integer to use in place
206of `appt-message-warning-time'.")
a1506d29 207
0cb7f2c0 208(defconst appt-max-time (1- (* 24 60))
8d638c1b 209 "11:59pm in minutes - number of minutes in a day minus 1.")
b570e652 210
efa434d9 211(defvar appt-mode-string nil
f3e7c0dc 212 "String being displayed in the mode line saying you have an appointment.
8d638c1b
GM
213The actual string includes the amount of time till the appointment.
214Only used if `appt-display-mode-line' is non-nil.")
464e8258 215(put 'appt-mode-string 'risky-local-variable t) ; for 'face property
f3e7c0dc
KH
216
217(defvar appt-prev-comp-time nil
8d638c1b
GM
218 "Time of day (mins since midnight) at which we last checked appointments.
219A nil value forces the diary file to be (re-)checked for appointments.")
f3e7c0dc
KH
220
221(defvar appt-now-displayed nil
222 "Non-nil when we have started notifying about a appointment that is near.")
223
8d638c1b
GM
224(defvar appt-display-count nil
225 "Internal variable used to count number of consecutive reminders.")
efa434d9 226
8d638c1b
GM
227(defvar appt-timer nil
228 "Timer used for diary appointment notifications (`appt-check').
229If this is non-nil, appointment checking is active.")
230
231
232;;; Functions.
233
234(defun appt-display-message (string mins)
235 "Display a reminder about an appointment.
236The string STRING describes the appointment, due in integer MINS minutes.
237The format of the visible reminder is controlled by `appt-display-format'.
238The variable `appt-audible' controls the audible reminder."
aadbdbe2 239 ;; Let-binding for backwards compatibility. Remove when obsolete
a19de628
GM
240 ;; vars appt-msg-window and appt-visible are dropped.
241 (let ((appt-display-format
242 (if (eq appt-display-format 'ignore)
debf91fd
GM
243 (cond (appt-msg-window 'window)
244 (appt-visible 'echo))
a19de628 245 appt-display-format)))
ce5b3019 246 (if appt-audible (beep 1))
a19de628
GM
247 (cond ((eq appt-display-format 'window)
248 (funcall appt-disp-window-function
249 (number-to-string mins)
cb17eeae 250 ;; TODO - use calendar-month-abbrev-array rather than %b?
a19de628
GM
251 (format-time-string "%a %b %e " (current-time))
252 string)
253 (run-at-time (format "%d sec" appt-display-duration)
254 nil
255 appt-delete-window-function))
256 ((eq appt-display-format 'echo)
ce5b3019 257 (message "%s" string)))))
8d638c1b
GM
258
259
35471668
GM
260(defvar diary-selective-display)
261
8d638c1b
GM
262(defun appt-check (&optional force)
263 "Check for an appointment and update any reminder display.
264If optional argument FORCE is non-nil, reparse the diary file for
265appointments. Otherwise the diary file is only parsed once per day,
08151ec5 266or when it (or a file it includes) is saved.
902a0e3c 267
8d638c1b
GM
268Note: the time must be the first thing in the line in the diary
269for a warning to be issued. The format of the time can be either
27024 hour or am/pm. For example:
902a0e3c 271
8d638c1b
GM
272 02/23/89
273 18:00 Dinner
a1506d29 274
902a0e3c
JB
275 Thursday
276 11:45am Lunch meeting.
277
f3e7c0dc
KH
278Appointments are checked every `appt-display-interval' minutes.
279The following variables control appointment notification:
902a0e3c 280
8d638c1b
GM
281`appt-display-format'
282 Controls the format in which reminders are displayed.
902a0e3c 283
efa434d9 284`appt-audible'
debf91fd
GM
285 Variable used to determine if reminder is audible.
286 Default is t.
902a0e3c 287
8d638c1b 288`appt-message-warning-time'
debf91fd
GM
289 Variable used to determine when appointment message
290 should first be displayed.
8d638c1b
GM
291
292`appt-display-mode-line'
293 If non-nil, a generic message giving the time remaining
294 is shown in the mode-line when an appointment is due.
295
296`appt-display-interval'
297 Interval in minutes at which to check for pending appointments.
902a0e3c 298
8d638c1b
GM
299`appt-display-diary'
300 Display the diary buffer when the appointment list is
301 initialized for the first time in a day.
302
303The following variables are only relevant if reminders are being
304displayed in a window:
902a0e3c 305
efa434d9 306`appt-display-duration'
debf91fd 307 The number of seconds an appointment message is displayed.
b570e652 308
f3e7c0dc 309`appt-disp-window-function'
debf91fd 310 Function called to display appointment window.
a1506d29 311
f3e7c0dc 312`appt-delete-window-function'
debf91fd 313 Function called to remove appointment window and buffer."
ce5b3019 314 (interactive "P") ; so people can force updates
f3e7c0dc 315 (let* ((min-to-app -1)
debf91fd
GM
316 (prev-appt-mode-string appt-mode-string)
317 (prev-appt-display-count (or appt-display-count 0))
318 ;; Non-nil means do a full check for pending appointments and
319 ;; display in whatever ways the user has selected. When no
320 ;; appointment is being displayed, we always do a full check.
321 (full-check
322 (or (not appt-now-displayed)
323 ;; This is true every appt-display-interval minutes.
324 (zerop (mod prev-appt-display-count appt-display-interval))))
325 ;; Non-nil means only update the interval displayed in the mode line.
326 (mode-line-only (unless full-check appt-now-displayed))
d7cd4abb 327 now cur-comp-time appt-comp-time appt-warn-time)
f3e7c0dc
KH
328 (when (or full-check mode-line-only)
329 (save-excursion
debf91fd
GM
330 ;; Convert current time to minutes after midnight (12.01am = 1).
331 (setq now (decode-time)
ce5b3019
GM
332 cur-comp-time (+ (* 60 (nth 2 now)) (nth 1 now)))
333 ;; At first check in any day, update appointments to today's list.
334 (if (or force ; eg initialize, diary save
335 (null appt-prev-comp-time) ; first check
336 (< cur-comp-time appt-prev-comp-time)) ; new day
ea7f9ebf
GM
337 (ignore-errors
338 (if appt-display-diary
339 (let ((diary-hook
340 (if (assoc 'appt-make-list diary-hook)
341 diary-hook
342 (cons 'appt-make-list diary-hook))))
343 (diary))
344 (let* ((diary-display-function 'appt-make-list)
345 (d-buff (find-buffer-visiting diary-file))
346 (selective
347 (if d-buff ; diary buffer exists
348 (with-current-buffer d-buff
349 diary-selective-display)))
350 d-buff2)
351 ;; Not displaying the diary, so we can ignore
352 ;; diary-number-of-entries. Since appt.el only
353 ;; works on a daily basis, no need for more entries.
354 ;; FIXME why not using diary-list-entries with
355 ;; non-nil LIST-ONLY?
356 (diary 1)
357 ;; If the diary buffer existed before this command,
358 ;; restore its display state. Otherwise, kill it.
359 (and (setq d-buff2 (find-buffer-visiting diary-file))
360 (if d-buff
361 (or selective
362 (with-current-buffer d-buff2
363 (if diary-selective-display
364 ;; diary-show-all-entries displays
365 ;; the diary buffer.
366 (diary-unhide-everything))))
367 ;; FIXME does not kill any included diary files.
368 ;; The real issue is that (diary) should not
369 ;; have the side effect of visiting all the
370 ;; diary files. It is not really appt.el's job to
371 ;; clean up this mess...
372 (kill-buffer d-buff2)))))))
ce5b3019
GM
373 (setq appt-prev-comp-time cur-comp-time
374 appt-mode-string nil
375 appt-display-count nil)
376 ;; If there are entries in the list, and the user wants a
377 ;; message issued, get the first time off of the list and
378 ;; calculate the number of minutes until the appointment.
379 (when (and appt-issue-message appt-time-msg-list)
380 (setq appt-comp-time (caar (car appt-time-msg-list))
a675c749
IK
381 appt-warn-time (or (nth 3 (car appt-time-msg-list))
382 appt-message-warning-time)
ce5b3019
GM
383 min-to-app (- appt-comp-time cur-comp-time))
384 (while (and appt-time-msg-list
385 (< appt-comp-time cur-comp-time))
386 (setq appt-time-msg-list (cdr appt-time-msg-list))
387 (if appt-time-msg-list
388 (setq appt-comp-time (caar (car appt-time-msg-list)))))
389 ;; If we have an appointment between midnight and
a675c749 390 ;; `appt-warn-time' minutes after midnight, we
ce5b3019
GM
391 ;; must begin to issue a message before midnight. Midnight
392 ;; is considered 0 minutes and 11:59pm is 1439
393 ;; minutes. Therefore we must recalculate the minutes to
394 ;; appointment variable. It is equal to the number of
395 ;; minutes before midnight plus the number of minutes after
396 ;; midnight our appointment is.
a675c749
IK
397 (if (and (< appt-comp-time appt-warn-time)
398 (> (+ cur-comp-time appt-warn-time)
ce5b3019
GM
399 appt-max-time))
400 (setq min-to-app (+ (- (1+ appt-max-time) cur-comp-time)
401 appt-comp-time)))
402 ;; Issue warning if the appointment time is within
403 ;; appt-message-warning time.
a675c749 404 (when (and (<= min-to-app appt-warn-time)
ce5b3019
GM
405 (>= min-to-app 0))
406 (setq appt-now-displayed t
407 appt-display-count (1+ prev-appt-display-count))
408 (unless mode-line-only
409 (appt-display-message (cadr (car appt-time-msg-list))
410 min-to-app))
411 (when appt-display-mode-line
412 (setq appt-mode-string
413 (concat " " (propertize
414 (format "App't in %s min." min-to-app)
415 'face 'mode-line-emphasis))))
416 ;; When an appointment is reached, delete it from the
417 ;; list. Reset the count to 0 in case we display another
418 ;; appointment on the next cycle.
419 (if (zerop min-to-app)
420 (setq appt-time-msg-list (cdr appt-time-msg-list)
421 appt-display-count nil))))
422 ;; If we have changed the mode line string, redisplay all mode lines.
423 (and appt-display-mode-line
424 (not (string-equal appt-mode-string
425 prev-appt-mode-string))
426 (progn
427 (force-mode-line-update t)
428 ;; If the string now has a notification, redisplay right now.
429 (if appt-mode-string
430 (sit-for 0))))))))
902a0e3c 431
902a0e3c 432(defun appt-disp-window (min-to-app new-time appt-msg)
754c5007
GM
433 "Display appointment due in MIN-TO-APP (a string) minutes.
434NEW-TIME is a string giving the date. Displays the appointment
435message APPT-MSG in a separate buffer."
8d638c1b 436 (let ((this-window (selected-window))
bc5777c1
MR
437 (appt-disp-buf (get-buffer-create appt-buffer-name)))
438 ;; Make sure we're not in the minibuffer before splitting the window.
439 ;; FIXME this seems needlessly complicated?
440 (when (minibufferp)
441 (other-window 1)
442 (and (minibufferp) (display-multi-frame-p) (other-frame 1)))
d5b22d88 443 (if (cdr (assq 'unsplittable (frame-parameters)))
debf91fd 444 ;; In an unsplittable frame, use something somewhere else.
0836e2c3
MR
445 (progn
446 (set-buffer appt-disp-buf)
447 (display-buffer appt-disp-buf))
058961dd 448 (unless (or (special-display-p (buffer-name appt-disp-buf))
debf91fd
GM
449 (same-window-p (buffer-name appt-disp-buf)))
450 ;; By default, split the bottom window and use the lower part.
451 (appt-select-lowest-window)
a291c1b7
GM
452 ;; Split the window, unless it's too small to do so.
453 (when (>= (window-height) (* 2 window-min-height))
454 (select-window (split-window))))
3b316424 455 (switch-to-buffer appt-disp-buf))
ce5b3019 456 ;; FIXME Link to diary entry?
3b316424 457 (calendar-set-mode-line
ce5b3019
GM
458 (format " Appointment %s. %s "
459 (if (string-equal "0" min-to-app) "now"
460 (format "in %s minute%s" min-to-app
461 (if (string-equal "1" min-to-app) "" "s")))
462 new-time))
463 (setq buffer-read-only nil
464 buffer-undo-list t)
efa434d9 465 (erase-buffer)
0e13751e 466 (insert appt-msg)
d5b22d88 467 (shrink-window-if-larger-than-buffer (get-buffer-window appt-disp-buf t))
5b586155 468 (set-buffer-modified-p nil)
ce5b3019 469 (setq buffer-read-only t)
725ec4bc 470 (raise-frame (selected-frame))
8d638c1b 471 (select-window this-window)))
a1506d29 472
5b586155
RS
473(defun appt-delete-window ()
474 "Function called to undisplay appointment messages.
475Usually just deletes the appointment buffer."
95cdbff5
RS
476 (let ((window (get-buffer-window appt-buffer-name t)))
477 (and window
debf91fd
GM
478 (or (eq window (frame-root-window (window-frame window)))
479 (delete-window window))))
5b586155
RS
480 (kill-buffer appt-buffer-name)
481 (if appt-audible
482 (beep 1)))
902a0e3c 483
902a0e3c 484(defun appt-select-lowest-window ()
debf91fd 485 "Select the lowest window on the frame."
7c0d9b89 486 (let ((lowest-window (selected-window))
debf91fd 487 (bottom-edge (nth 3 (window-edges)))
ce5b3019 488 next-bottom-edge)
7c0d9b89 489 (walk-windows (lambda (w)
debf91fd
GM
490 (when (< bottom-edge (setq next-bottom-edge
491 (nth 3 (window-edges w))))
492 (setq bottom-edge next-bottom-edge
493 lowest-window w))) 'nomini)
7c0d9b89 494 (select-window lowest-window)))
902a0e3c 495
0cb7f2c0
SM
496(defconst appt-time-regexp
497 "[0-9]?[0-9]\\(h\\([0-9][0-9]\\)?\\|[:.][0-9][0-9]\\)\\(am\\|pm\\)?")
498
f3e7c0dc 499;;;###autoload
d7cd4abb
GM
500(defun appt-add (time msg &optional warntime)
501 "Add an appointment for today at TIME with message MSG.
502The time should be in either 24 hour format or am/pm format.
503Optional argument WARNTIME is an integer (or string) giving the number
504of minutes before the appointment at which to start warning.
505The default is `appt-message-warning-time'."
a675c749 506 (interactive "sTime (hh:mm[am/pm]): \nsMessage:
d7cd4abb
GM
507sMinutes before the appointment to start warning: ")
508 (unless (string-match appt-time-regexp time)
902a0e3c 509 (error "Unacceptable time-string"))
d7cd4abb
GM
510 (and (stringp warntime)
511 (setq warntime (unless (string-equal warntime "")
512 (string-to-number warntime))))
513 (and warntime
514 (not (integerp warntime))
515 (error "Argument WARNTIME must be an integer, or nil"))
516 (let ((time-msg (list (list (appt-convert-time time))
517 (concat time " " msg) t)))
518 ;; It is presently non-sensical to have multiple warnings about
519 ;; the same appointment with just different delays, but it might
520 ;; not always be so. TODO
521 (if warntime (setq time-msg (append time-msg (list warntime))))
74139994
RW
522 (unless (member time-msg appt-time-msg-list)
523 (setq appt-time-msg-list
524 (appt-sort-list (nconc appt-time-msg-list (list time-msg)))))))
902a0e3c 525
f3e7c0dc 526;;;###autoload
902a0e3c
JB
527(defun appt-delete ()
528 "Delete an appointment from the list of appointments."
529 (interactive)
8d638c1b 530 (let ((tmp-msg-list appt-time-msg-list))
ce5b3019
GM
531 (dolist (element tmp-msg-list)
532 (if (y-or-n-p (concat "Delete "
533 ;; We want to quote any doublequotes in the
534 ;; string, as well as put doublequotes around it.
535 (prin1-to-string
536 (substring-no-properties (cadr element) 0))
537 " from list? "))
538 (setq appt-time-msg-list (delq element appt-time-msg-list)))))
539 (appt-check)
540 (message ""))
a1506d29 541
902a0e3c 542
11361a8b
SM
543(defvar number)
544(defvar original-date)
545(defvar diary-entries-list)
467f174b 546;; Autoload for the old way of using this package. Can be removed sometime.
637a8ae9 547;;;###autoload
902a0e3c 548(defun appt-make-list ()
5fac723a 549 "Update the appointments list from today's diary buffer.
d073fa5b 550The time must be at the beginning of a line for it to be
8d638c1b
GM
551put in the appointments list (see examples in documentation of
552the function `appt-check'). We assume that the variables DATE and
59b79385 553NUMBER hold the arguments that `diary-list-entries' received.
5fac723a
RS
554They specify the range of dates that the diary is being processed for.
555
ce5b3019 556Any appointments made with `appt-add' are not affected by this function.
871ce753
GM
557
558For backwards compatibility, this function activates the
559appointment package (if it is not already active)."
560 ;; See comments above appt-activate defun.
561 (if (not appt-timer)
562 (appt-activate 1)
563 ;; We have something to do if the range of dates that the diary is
564 ;; considering includes the current date.
565 (if (and (not (calendar-date-compare
566 (list (calendar-current-date))
567 (list original-date)))
568 (calendar-date-compare
569 (list (calendar-current-date))
570 (list (calendar-gregorian-from-absolute
571 (+ (calendar-absolute-from-gregorian original-date)
572 number)))))
573 (save-excursion
574 ;; Clear the appointments list, then fill it in from the diary.
575 (dolist (elt appt-time-msg-list)
576 ;; Delete any entries that were not made with appt-add.
577 (unless (nth 2 elt)
578 (setq appt-time-msg-list
579 (delq elt appt-time-msg-list))))
580 (if diary-entries-list
871ce753 581 ;; Cycle through the entry-list (diary-entries-list)
12b2a018 582 ;; looking for entries beginning with a time. If the
cb17eeae
GM
583 ;; entry begins with a time, add it to the
584 ;; appt-time-msg-list. Then sort the list.
871ce753 585 (let ((entry-list diary-entries-list)
ce5b3019
GM
586 (new-time-string "")
587 time-string)
ea7f9ebf
GM
588 ;; Below, we assume diary-entries-list was in date
589 ;; order. It is, unless something on
590 ;; diary-list-entries-hook has changed it, eg
591 ;; diary-include-other-files (bug#7019). It must be
592 ;; in date order if number = 1.
593 (and diary-list-entries-hook
594 appt-display-diary
595 (not (eq diary-number-of-entries 1))
596 (not (memq (car (last diary-list-entries-hook))
597 '(diary-sort-entries sort-diary-entries)))
598 (setq entry-list (sort entry-list 'diary-entry-compare)))
871ce753
GM
599 ;; Skip diary entries for dates before today.
600 (while (and entry-list
601 (calendar-date-compare
602 (car entry-list) (list (calendar-current-date))))
603 (setq entry-list (cdr entry-list)))
604 ;; Parse the entries for today.
605 (while (and entry-list
606 (calendar-date-equal
35471668 607 (calendar-current-date) (caar entry-list)))
ce5b3019
GM
608 (setq time-string (cadr (car entry-list)))
609 (while (string-match appt-time-regexp time-string)
610 (let* ((beg (match-beginning 0))
611 ;; Get just the time for this appointment.
612 (only-time (match-string 0 time-string))
613 ;; Find the end of this appointment
614 ;; (the start of the next).
615 (end (string-match
616 (concat "\n[ \t]*" appt-time-regexp)
617 time-string
618 (match-end 0)))
619 ;; Get the whole string for this appointment.
620 (appt-time-string
731a00fb 621 (substring time-string beg end))
ce5b3019
GM
622 (appt-time (list (appt-convert-time only-time)))
623 (time-msg (list appt-time appt-time-string)))
624 ;; Add this appointment to appt-time-msg-list.
625 (setq appt-time-msg-list
626 (nconc appt-time-msg-list (list time-msg))
627 ;; Discard this appointment from the string.
628 time-string
629 (if end (substring time-string end) ""))))
871ce753
GM
630 (setq entry-list (cdr entry-list)))))
631 (setq appt-time-msg-list (appt-sort-list appt-time-msg-list))
ce5b3019
GM
632 ;; Convert current time to minutes after midnight (12:01am = 1),
633 ;; so that elements in the list that are earlier than the
634 ;; present time can be removed.
871ce753 635 (let* ((now (decode-time))
ce5b3019 636 (cur-comp-time (+ (* 60 (nth 2 now)) (nth 1 now)))
35471668 637 (appt-comp-time (caar (car appt-time-msg-list))))
871ce753
GM
638 (while (and appt-time-msg-list (< appt-comp-time cur-comp-time))
639 (setq appt-time-msg-list (cdr appt-time-msg-list))
640 (if appt-time-msg-list
35471668 641 (setq appt-comp-time (caar (car appt-time-msg-list))))))))))
a1506d29 642
902a0e3c 643
902a0e3c 644(defun appt-sort-list (appt-list)
8d638c1b
GM
645 "Sort an appointment list, putting earlier items at the front.
646APPT-LIST is a list of the same format as `appt-time-msg-list'."
11361a8b 647 (sort appt-list (lambda (e1 e2) (< (caar e1) (caar e2)))))
902a0e3c
JB
648
649
650(defun appt-convert-time (time2conv)
754c5007 651 "Convert hour:min[am/pm] format TIME2CONV to minutes from midnight.
8d638c1b
GM
652A period (.) can be used instead of a colon (:) to separate the
653hour and minute parts."
0cb7f2c0
SM
654 ;; Formats that should be accepted:
655 ;; 10:00 10.00 10h00 10h 10am 10:00am 10.00am
656 (let ((min (if (string-match "[h:.]\\([0-9][0-9]\\)" time2conv)
657 (string-to-number (match-string 1 time2conv))
658 0))
659 (hr (if (string-match "[0-9]*[0-9]" time2conv)
660 (string-to-number (match-string 0 time2conv))
661 0)))
cb17eeae 662 ;; Convert the time appointment time into 24 hour time.
85bbde63 663 (cond ((and (string-match "pm" time2conv) (< hr 12))
debf91fd
GM
664 (setq hr (+ 12 hr)))
665 ((and (string-match "am" time2conv) (= hr 12))
85bbde63 666 (setq hr 0)))
cb17eeae 667 ;; Convert the actual time into minutes.
0cb7f2c0 668 (+ (* hr 60) min)))
902a0e3c 669
8d638c1b
GM
670(defun appt-update-list ()
671 "If the current buffer is visiting the diary, update appointments.
92b99a01
GM
672This function also acts on any file listed in `diary-included-files'.
673It is intended for use with `write-file-functions'."
674 (and (member buffer-file-name (append diary-included-files
675 (list (expand-file-name diary-file))))
8d638c1b
GM
676 appt-timer
677 (let ((appt-display-diary nil))
678 (appt-check t)))
679 nil)
680
871ce753
GM
681;; In Emacs-21.3, the manual documented the following procedure to
682;; activate this package:
683;; (display-time)
684;; (add-hook 'diary-hook 'appt-make-list)
685;; (diary 0)
686;; The display-time call was not necessary, AFAICS.
687;; What was really needed was to add the hook and load this file.
688;; Calling (diary 0) once the hook had been added was in some sense a
12b2a018 689;; roundabout way of loading this file. This file used to have code at
871ce753
GM
690;; the top-level that set up the appt-timer and global-mode-string.
691;; One way to maintain backwards compatibility would be to call
12b2a018 692;; (appt-activate 1) at top-level. However, this goes against the
871ce753 693;; convention that just loading an Emacs package should not activate
12b2a018
GM
694;; it. Instead, we make appt-make-list activate the package (after a
695;; suggestion from rms). This means that one has to call diary in
871ce753
GM
696;; order to get it to work, but that is in line with the old (weird,
697;; IMO) documented behavior for activating the package.
698;; Actually, since (diary 0) does not run diary-hook, I don't think
699;; the documented behavior in Emacs-21.3 would ever have worked.
700;; Oh well, at least with the changes to appt-make-list it will now
701;; work as well as it ever did.
702;; The new method is just to use (appt-activate 1).
703;; -- gmorris
704
8d638c1b
GM
705;;;###autoload
706(defun appt-activate (&optional arg)
debf91fd 707 "Toggle checking of appointments.
8d638c1b
GM
708With optional numeric argument ARG, turn appointment checking on if
709ARG is positive, otherwise off."
710 (interactive "P")
711 (let ((appt-active appt-timer))
712 (setq appt-active (if arg (> (prefix-numeric-value arg) 0)
713 (not appt-active)))
714 (remove-hook 'write-file-functions 'appt-update-list)
715 (or global-mode-string (setq global-mode-string '("")))
716 (delq 'appt-mode-string global-mode-string)
a19de628
GM
717 (when appt-timer
718 (cancel-timer appt-timer)
719 (setq appt-timer nil))
8d638c1b
GM
720 (when appt-active
721 (add-hook 'write-file-functions 'appt-update-list)
722 (setq appt-timer (run-at-time t 60 'appt-check)
723 global-mode-string
724 (append global-mode-string '(appt-mode-string)))
725 (appt-check t))))
726
efa434d9 727
8d638c1b 728(provide 'appt)
5b586155 729
0cb7f2c0 730;; arch-tag: bf5791c4-8921-499e-a26f-772b1788d347
efa434d9 731;;; appt.el ends here