]> code.delx.au - gnu-emacs/blob - lisp/calendar/calendar.el
Add 2009 to copyright years.
[gnu-emacs] / lisp / calendar / calendar.el
1 ;;; calendar.el --- calendar functions
2
3 ;; Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1997,
4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5 ;; Free Software Foundation, Inc.
6
7 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
8 ;; Maintainer: Glenn Morris <rgm@gnu.org>
9 ;; Keywords: calendar
10 ;; Human-Keywords: calendar, Gregorian calendar, diary, holidays
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26
27 ;;; Commentary:
28
29 ;; This collection of functions implements a calendar window. It
30 ;; generates a calendar for the current month, together with the
31 ;; previous and coming months, or for any other three-month period.
32 ;; The calendar can be scrolled forward and backward in the window to
33 ;; show months in the past or future; the cursor can move forward and
34 ;; backward by days, weeks, or months, making it possible, for
35 ;; instance, to jump to the date a specified number of days, weeks, or
36 ;; months from the date under the cursor. The user can display a list
37 ;; of holidays and other notable days for the period shown; the
38 ;; notable days can be marked on the calendar, if desired. The user
39 ;; can also specify that dates having corresponding diary entries (in
40 ;; a file that the user specifies) be marked; the diary entries for
41 ;; any date can be viewed in a separate window. The diary and the
42 ;; notable days can be viewed independently of the calendar. Dates
43 ;; can be translated from the (usual) Gregorian calendar to the day of
44 ;; the year/days remaining in year, to the ISO commercial calendar, to
45 ;; the Julian (old style) calendar, to the Hebrew calendar, to the
46 ;; Islamic calendar, to the Baha'i calendar, to the French
47 ;; Revolutionary calendar, to the Mayan calendar, to the Chinese
48 ;; calendar, to the Coptic calendar, to the Ethiopic calendar, and to
49 ;; the astronomical (Julian) day number. Times of sunrise/sunset can
50 ;; be displayed, as can the phases of the moon. Appointment
51 ;; notification for diary entries is available. Calendar printing via
52 ;; LaTeX is available.
53
54 ;; The following files are part of the calendar/diary code:
55
56 ;; appt.el Appointment notification
57 ;; cal-bahai.el Baha'i calendar
58 ;; cal-china.el Chinese calendar
59 ;; cal-coptic.el Coptic/Ethiopic calendars
60 ;; cal-dst.el Daylight saving time rules
61 ;; cal-french.el French revolutionary calendar
62 ;; cal-hebrew.el Hebrew calendar
63 ;; cal-html.el Calendars in HTML
64 ;; cal-islam.el Islamic calendar
65 ;; cal-iso.el ISO calendar
66 ;; cal-julian.el Julian/astronomical calendars
67 ;; cal-mayan.el Mayan calendars
68 ;; cal-menu.el Menu support
69 ;; cal-move.el Movement in the calendar
70 ;; cal-persia.el Persian calendar
71 ;; cal-tex.el Calendars in LaTeX
72 ;; cal-x.el Dedicated frame functions
73 ;; calendar.el This file
74 ;; diary-lib.el Diary functions
75 ;; holidays.el Holiday functions
76 ;; lunar.el Phases of the moon
77 ;; solar.el Sunrise/sunset, equinoxes/solstices
78
79 ;; Technical details of all the calendrical calculations can be found in
80 ;; ``Calendrical Calculations: The Millennium Edition'' by Edward M. Reingold
81 ;; and Nachum Dershowitz, Cambridge University Press (2001).
82
83 ;; An earlier version of the technical details appeared in
84 ;; ``Calendrical Calculations'' by Nachum Dershowitz and Edward M. Reingold,
85 ;; Software--Practice and Experience, Volume 20, Number 9 (September, 1990),
86 ;; pages 899-928, and in ``Calendrical Calculations, Part II: Three Historical
87 ;; Calendars'' by E. M. Reingold, N. Dershowitz, and S. M. Clamen,
88 ;; Software--Practice and Experience, Volume 23, Number 4 (April, 1993),
89 ;; pages 383-404.
90
91 ;; Hard copies of these two papers can be obtained by sending email to
92 ;; reingold@cs.uiuc.edu with the SUBJECT "send-paper-cal" (no quotes) and
93 ;; the message BODY containing your mailing address (snail).
94
95
96 ;; A note on free variables:
97
98 ;; The calendar passes around a few dynamically bound variables, which
99 ;; unfortunately have rather common names. They are meant to be
100 ;; available for external functions, so the names can't be changed.
101
102 ;; displayed-month, displayed-year: bound in calendar-generate, the
103 ;; central month of the 3 month calendar window
104 ;; original-date, number: bound in diary-list-entries, the arguments
105 ;; with which that function was called.
106 ;; date, entry: bound in diary-list-sexp-entries (qv)
107
108 ;; Bound in diary-list-entries:
109 ;; diary-entries-list: use in d-l, appt.el, and by diary-add-to-list
110 ;; diary-saved-point: only used in diary-lib.el, passed to the display func
111 ;; date-string: only used in diary-lib.el
112 ;; list-only: don't modify the diary-buffer, just return a list of entries
113 ;; file-glob-attrs: yuck
114
115 ;;; Code:
116
117 (require 'cal-loaddefs)
118
119 ;; Avoid recursive load of calendar when loading cal-menu. Yuck.
120 (provide 'calendar)
121 (require 'cal-menu)
122
123 (defgroup calendar nil
124 "Calendar and time management support."
125 :prefix "calendar-"
126 :group 'applications)
127
128 (defgroup calendar-hooks nil
129 "Calendar hooks."
130 :prefix "calendar-"
131 :group 'calendar)
132
133 (defgroup calendar-faces nil
134 "Calendar faces."
135 :prefix "calendar-"
136 :group 'calendar)
137
138 (defcustom calendar-offset 0
139 "The offset of the principal month from the center of the calendar window.
140 0 means the principal month is in the center (default), -1 means on the left,
141 +1 means on the right. Larger (or smaller) values push the principal month off
142 the screen."
143 :type 'integer
144 :group 'calendar)
145
146 (defcustom calendar-setup nil
147 "The frame setup of the calendar.
148 The choices are: `one-frame' (calendar and diary together in one separate,
149 dedicated frame); `two-frames' (calendar and diary in separate, dedicated
150 frames); `calendar-only' (calendar in a separate, dedicated frame); with
151 any other value the current frame is used. Using any of the first
152 three options overrides the value of `calendar-view-diary-initially-flag'."
153 :type '(choice
154 (const :tag "calendar and diary in separate frame" one-frame)
155 (const :tag "calendar and diary each in own frame" two-frames)
156 (const :tag "calendar in separate frame" calendar-only)
157 (const :tag "use current frame" nil))
158 :group 'calendar)
159
160 (defcustom calendar-minimum-window-height 8
161 "Minimum height `calendar-generate-window' should use for calendar window."
162 :type 'integer
163 :version "22.1"
164 :group 'calendar)
165
166 (defcustom calendar-week-start-day 0
167 "The day of the week on which a week in the calendar begins.
168 0 means Sunday (default), 1 means Monday, and so on.
169
170 If you change this variable directly (without using customize)
171 after starting `calendar', you should call `calendar-redraw' to
172 update the calendar display to reflect the change, otherwise
173 movement commands will not work correctly."
174 :type 'integer
175 ;; Change the initialize so that if you reload calendar.el, it will not
176 ;; cause a redraw (which may fail, e.g. with "invalid byte-code in
177 ;; calendar.elc" because of the "byte-compile-dynamic").
178 :initialize 'custom-initialize-default
179 :set (lambda (sym val)
180 (set sym val)
181 (calendar-redraw))
182 :group 'calendar)
183
184 (define-obsolete-variable-alias 'view-diary-entries-initially
185 'calendar-view-diary-initially-flag "23.1")
186
187 (defcustom calendar-view-diary-initially-flag nil
188 "Non-nil means display current date's diary entries on entry to calendar.
189 The diary is displayed in another window when the calendar is first displayed,
190 if the current date is visible. The number of days of diary entries displayed
191 is governed by the variable `diary-number-of-entries'. This variable can
192 be overridden by the value of `calendar-setup'."
193 :type 'boolean
194 :group 'diary)
195
196 (define-obsolete-variable-alias 'mark-diary-entries-in-calendar
197 'calendar-mark-diary-entries-flag "23.1")
198
199 (defcustom calendar-mark-diary-entries-flag nil
200 "Non-nil means mark dates with diary entries, in the calendar window.
201 The marking symbol is specified by the variable `diary-entry-marker'."
202 :type 'boolean
203 :group 'diary)
204
205 (defcustom calendar-remove-frame-by-deleting t
206 "Determine how the calendar mode removes a frame no longer needed.
207 If nil, make an icon of the frame. If non-nil, delete the frame."
208 :type 'boolean
209 :version "23.1" ; changed from nil to t
210 :group 'view
211 :group 'calendar)
212
213 (defface calendar-today
214 '((t (:underline t)))
215 "Face for indicating today's date in the calendar.
216 See `calendar-today-marker'."
217 :group 'calendar-faces)
218 ;; Backward-compatibility alias. FIXME make obsolete.
219 (put 'calendar-today-face 'face-alias 'calendar-today)
220
221 (defface diary
222 '((((min-colors 88) (class color) (background light))
223 :foreground "red1")
224 (((class color) (background light))
225 :foreground "red")
226 (((min-colors 88) (class color) (background dark))
227 :foreground "yellow1")
228 (((class color) (background dark))
229 :foreground "yellow")
230 (t
231 :weight bold))
232 "Face for highlighting diary entries.
233 Used to mark diary entries in the calendar (see `diary-entry-marker'),
234 and to highlight the date header in the fancy diary."
235 :group 'calendar-faces)
236 ;; Backward-compatibility alias. FIXME make obsolete.
237 (put 'diary-face 'face-alias 'diary)
238
239 (defface holiday
240 '((((class color) (background light))
241 :background "pink")
242 (((class color) (background dark))
243 :background "chocolate4")
244 (t
245 :inverse-video t))
246 "Face for indicating in the calendar dates that have holidays.
247 See `calendar-holiday-marker'."
248 :group 'calendar-faces)
249 ;; Backward-compatibility alias. FIXME make obsolete.
250 (put 'holiday-face 'face-alias 'holiday)
251
252 ;; These don't respect changes in font-lock-mode after loading.
253 (defcustom diary-entry-marker (if (and font-lock-mode (display-color-p))
254 'diary
255 "+")
256 "How to mark dates that have diary entries.
257 The value can be either a single-character string or a face."
258 :type '(choice string face)
259 :group 'diary)
260
261 (defcustom calendar-today-marker (if (and font-lock-mode (display-color-p))
262 'calendar-today
263 "=")
264 "How to mark today's date in the calendar.
265 The value can be either a single-character string or a face.
266 Used by `calendar-mark-today'."
267 :type '(choice string face)
268 :group 'calendar)
269
270 (defcustom calendar-holiday-marker (if (and font-lock-mode (display-color-p))
271 'holiday
272 "*")
273 "How to mark notable dates in the calendar.
274 The value can be either a single-character string or a face."
275 :type '(choice string face)
276 :group 'holidays)
277
278 (define-obsolete-variable-alias 'view-calendar-holidays-initially
279 'calendar-view-holidays-initially-flag "23.1")
280
281 (defcustom calendar-view-holidays-initially-flag nil
282 "Non-nil means display holidays for current three month period on entry.
283 The holidays are displayed in another window when the calendar is first
284 displayed."
285 :type 'boolean
286 :group 'holidays)
287
288 (define-obsolete-variable-alias 'mark-holidays-in-calendar
289 'calendar-mark-holidays-flag "23.1")
290
291 (defcustom calendar-mark-holidays-flag nil
292 "Non-nil means mark dates of holidays in the calendar window.
293 The marking symbol is specified by the variable `calendar-holiday-marker'."
294 :type 'boolean
295 :group 'holidays)
296
297 (defcustom calendar-mode-hook nil
298 "Hook run when entering `calendar-mode'."
299 :type 'hook
300 :group 'calendar-hooks)
301
302 (defcustom calendar-load-hook nil
303 "List of functions to be called after the calendar is first loaded.
304 This is the place to add key bindings to `calendar-mode-map'."
305 :type 'hook
306 :group 'calendar-hooks)
307
308 (define-obsolete-variable-alias 'initial-calendar-window-hook
309 'calendar-initial-window-hook "23.1")
310
311 (defcustom calendar-initial-window-hook nil
312 "List of functions to be called when the calendar window is created.
313 Quitting the calendar and re-entering it will cause these functions
314 to be called again."
315 :type 'hook
316 :group 'calendar-hooks)
317
318 (define-obsolete-variable-alias 'today-visible-calendar-hook
319 'calendar-today-visible-hook "23.1")
320
321 (defcustom calendar-today-visible-hook nil
322 "List of functions called whenever the current date is visible.
323 To mark today's date, add the function `calendar-mark-today'.
324 To replace the date with asterisks, add the function `calendar-star-date'.
325 See also `calendar-today-invisible-hook'.
326
327 In general, be careful about changing characters in the calendar buffer,
328 since it may cause the movement commands to fail."
329 :type 'hook
330 :options '(calendar-mark-today calendar-star-date)
331 :group 'calendar-hooks)
332
333 (define-obsolete-variable-alias 'today-invisible-calendar-hook
334 'calendar-today-invisible-hook "23.1")
335
336 (defcustom calendar-today-invisible-hook nil
337 "List of functions called whenever the current date is not visible.
338 See also `calendar-today-visible-hook'."
339 :type 'hook
340 :group 'calendar-hooks)
341
342 (defcustom calendar-move-hook nil
343 "List of functions called whenever the cursor moves in the calendar.
344 For example,
345
346 (add-hook 'calendar-move-hook (lambda () (diary-view-entries 1)))
347
348 redisplays the diary for whatever date the cursor is moved to."
349 :type 'hook
350 :options '(calendar-update-mode-line)
351 :group 'calendar-hooks)
352
353 (defcustom calendar-date-echo-text
354 "mouse-2: general menu\nmouse-3: menu for this date"
355 "String displayed when the cursor is over a date in the calendar.
356 Can be either a fixed string, or a lisp expression that returns one.
357 When this expression is evaluated, DAY, MONTH, and YEAR are
358 integers appropriate to the relevant date. For example, to
359 display the ISO date:
360
361 (setq calendar-date-echo-text '(format \"ISO date: %s\"
362 (calendar-iso-date-string
363 (list month day year))))
364 Changing this variable without using customize has no effect on
365 pre-existing calendar windows."
366 :group 'calendar
367 :initialize 'custom-initialize-default
368 :risky t
369 :set (lambda (sym val)
370 (set sym val)
371 (calendar-redraw))
372 :type '(choice (string :tag "Fixed string")
373 (sexp :value
374 (format "ISO date: %s"
375 (calendar-iso-date-string
376 (list month day year)))))
377 :version "23.1")
378
379
380 (defvar calendar-month-digit-width nil
381 "Width of the region with numbers in each month in the calendar.")
382
383 (defvar calendar-month-width nil
384 "Full width of each month in the calendar.")
385
386 (defvar calendar-right-margin nil
387 "Right margin of the calendar.")
388
389 (defvar calendar-month-edges nil
390 "Alist of month edge columns.
391 Each element has the form (N LEFT FIRST LAST RIGHT), where
392 LEFT is the leftmost column associated with month segment N,
393 FIRST and LAST are the first and last columns with day digits in,
394 and LAST is the rightmost column.")
395
396 (defun calendar-month-edges (segment)
397 "Compute the month edge columns for month SEGMENT.
398 Returns a list (LEFT FIRST LAST RIGHT), where LEFT is the
399 leftmost column associated with a month, FIRST and LAST are the
400 first and last columns with day digits in, and LAST is the
401 rightmost column."
402 ;; The leftmost column with a digit in it in this month segment.
403 (let* ((first (+ calendar-left-margin
404 (* segment calendar-month-width)))
405 ;; The rightmost column with a digit in it in this month segment.
406 (last (+ first (1- calendar-month-digit-width)))
407 (left (if (eq segment 0)
408 0
409 (+ calendar-left-margin
410 (* segment calendar-month-width)
411 (- (/ calendar-intermonth-spacing 2)))))
412 ;; The rightmost edge of this month segment, dividing the
413 ;; space between months in two.
414 (right (+ calendar-left-margin
415 (* (1+ segment) calendar-month-width)
416 (- (/ calendar-intermonth-spacing 2)))))
417 (list left first last right)))
418
419 (defun calendar-recompute-layout-variables ()
420 "Recompute some layout-related calendar \"constants\"."
421 (setq calendar-month-digit-width (+ (* 6 calendar-column-width)
422 calendar-day-digit-width)
423 calendar-month-width (+ (* 7 calendar-column-width)
424 calendar-intermonth-spacing)
425 calendar-right-margin (+ calendar-left-margin
426 (* 3 (* 7 calendar-column-width))
427 (* 2 calendar-intermonth-spacing))
428 calendar-month-edges nil)
429 (dotimes (i 3)
430 (push (cons i (calendar-month-edges i)) calendar-month-edges))
431 (setq calendar-month-edges (reverse calendar-month-edges)))
432
433 ;; FIXME add font-lock-keywords.
434 (defun calendar-set-layout-variable (symbol value &optional minmax)
435 "Set SYMBOL's value to VALUE, an integer.
436 A positive/negative MINMAX enforces a minimum/maximum value.
437 Then redraw the calendar, if necessary."
438 (let ((oldvalue (symbol-value symbol)))
439 (custom-set-default symbol (if minmax
440 (if (< minmax 0)
441 (min value (- minmax))
442 (max value minmax))
443 value))
444 (unless (equal value oldvalue)
445 (calendar-recompute-layout-variables)
446 (calendar-redraw))))
447
448 (defcustom calendar-left-margin 5
449 "Empty space to the left of the first month in the calendar."
450 :group 'calendar
451 :initialize 'custom-initialize-default
452 :set 'calendar-set-layout-variable
453 :type 'integer
454 :version "23.1")
455
456 ;; Or you can view it as columns of width 2, with 1 space, no space
457 ;; after the last column, and a 5 space gap between month.
458 ;; FIXME check things work if this is odd.
459 (defcustom calendar-intermonth-spacing 4
460 "Space between months in the calendar. Minimum value is 1."
461 :group 'calendar
462 :initialize 'custom-initialize-default
463 :set (lambda (sym val)
464 (calendar-set-layout-variable sym val 1))
465 :type 'integer
466 :version "23.1")
467
468 ;; FIXME calendar-month-column-width?
469 (defcustom calendar-column-width 3
470 "Width of each day column in the calendar. Minimum value is 3."
471 :initialize 'custom-initialize-default
472 :set (lambda (sym val)
473 (calendar-set-layout-variable sym val 3))
474 :type 'integer
475 :version "23.1")
476
477 (defcustom calendar-day-header-width 2
478 "Width of the day column headers in the calendar.
479 Must be at least one less than `calendar-column-width'."
480 :group 'calendar
481 :initialize 'custom-initialize-default
482 :set (lambda (sym val)
483 (calendar-set-layout-variable sym val (- 1 calendar-column-width)))
484 :type 'integer
485 :version "23.1")
486
487 ;; FIXME a format specifier instead?
488 (defcustom calendar-day-digit-width 2
489 "Width of the day digits in the calendar. Minimum value is 2."
490 :group 'calendar
491 :initialize 'custom-initialize-default
492 :set (lambda (sym val)
493 (calendar-set-layout-variable sym val 2))
494 :type 'integer
495 :version "23.1")
496
497 (defcustom calendar-intermonth-header nil
498 "Header text display in the space to the left of each calendar month.
499 See `calendar-intermonth-text'."
500 :group 'calendar
501 :initialize 'custom-initialize-default
502 :risky t
503 :set (lambda (sym val)
504 (set sym val)
505 (calendar-redraw))
506 :type '(choice (const nil :tag "Nothing")
507 (string :tag "Fixed string")
508 (sexp :value
509 (propertize "WK" 'font-lock-face
510 'font-lock-function-name-face)))
511 :version "23.1")
512
513 (defcustom calendar-intermonth-text nil
514 "Text to display in the space to the left of each calendar month.
515 Can be nil, a fixed string, or a lisp expression that returns a string.
516 When the expression is evaluated, the variables DAY, MONTH and YEAR
517 are integers appropriate for the first day in each week.
518 Will be truncated to the smaller of `calendar-left-margin' and
519 `calendar-intermonth-spacing'. The last character is forced to be a space.
520 For example, to display the ISO week numbers:
521
522 (setq calendar-week-start-day 1
523 calendar-intermonth-text
524 '(propertize
525 (format \"%2d\"
526 (car
527 (calendar-iso-from-absolute
528 (calendar-absolute-from-gregorian (list month day year)))))
529 'font-lock-face 'font-lock-function-name-face))
530
531 See also `calendar-intermonth-header'."
532 :group 'calendar
533 :initialize 'custom-initialize-default
534 :risky t
535 :set (lambda (sym val)
536 (set sym val)
537 (calendar-redraw))
538 :type '(choice (const nil :tag "Nothing")
539 (string :tag "Fixed string")
540 (sexp :value
541 (propertize
542 (format "%2d"
543 (car
544 (calendar-iso-from-absolute
545 (calendar-absolute-from-gregorian
546 (list month day year)))))
547 'font-lock-face 'font-lock-function-name-face)))
548 :version "23.1")
549
550 (defcustom diary-file "~/diary"
551 "Name of the file in which one's personal diary of dates is kept.
552
553 The file's entries are lines beginning with any of the forms
554 specified by the variable `diary-date-forms', which by default
555 uses the forms of `diary-american-date-forms':
556
557 MONTH/DAY
558 MONTH/DAY/YEAR
559 MONTHNAME DAY
560 MONTHNAME DAY, YEAR
561 DAYNAME
562
563 with the remainder of the line being the diary entry string for
564 that date. MONTH and DAY are one or two digit numbers, YEAR is a
565 number and may be written in full or abbreviated to the final two
566 digits (if `diary-abbreviated-year-flag' is non-nil). MONTHNAME
567 and DAYNAME can be spelled in full (as specified by the variables
568 `calendar-month-name-array' and `calendar-day-name-array'), or
569 abbreviated (as specified by `calendar-month-abbrev-array' and
570 `calendar-day-abbrev-array') with or without a period. Case is
571 ignored. Any of DAY, MONTH, or MONTHNAME, YEAR can be `*' which
572 matches any day, month, or year, respectively. If the date does
573 not contain a year, it is generic and applies to any year. A
574 DAYNAME entry applies to the appropriate day of the week in every week.
575
576 You can customize `diary-date-forms' to your preferred format.
577 Three default styles are provided: `diary-american-date-forms',
578 `diary-european-date-forms', and `diary-iso-date-forms'.
579 You can choose between these by setting `calendar-date-style' in your
580 .emacs file, or by using `calendar-set-date-style' when in the calendar.
581
582 A diary entry can be preceded by the character `diary-nonmarking-symbol'
583 \(ordinarily `&') to make that entry nonmarking--that is, it will not be
584 marked on dates in the calendar window but will appear in a diary window.
585
586 Multiline diary entries are made by indenting lines after the first with
587 either a TAB or one or more spaces.
588
589 Lines not in one the above formats are ignored. Here are some sample diary
590 entries (in the default American style):
591
592 12/22/1988 Twentieth wedding anniversary!!
593 &1/1. Happy New Year!
594 10/22 Ruth's birthday.
595 21: Payday
596 Tuesday--weekly meeting with grad students at 10am
597 Supowit, Shen, Bitner, and Kapoor to attend.
598 1/13/89 Friday the thirteenth!!
599 &thu 4pm squash game with Lloyd.
600 mar 16 Dad's birthday
601 April 15, 1989 Income tax due.
602 &* 15 time cards due.
603
604 If the first line of a diary entry consists only of the date or day name with
605 no trailing blanks or punctuation, then that line is not displayed in the
606 diary window; only the continuation lines is shown. For example, the
607 single diary entry
608
609 02/11/1989
610 Bill Blattner visits Princeton today
611 2pm Cognitive Studies Committee meeting
612 2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
613 4:00pm Jamie Tappenden
614 7:30pm Dinner at George and Ed's for Alan Ryan
615 7:30-10:00pm dance at Stewart Country Day School
616
617 will appear in the diary window without the date line at the beginning. This
618 facility allows the diary window to look neater, but can cause confusion if
619 used with more than one day's entries displayed.
620
621 Diary entries can be based on Lisp sexps. For example, the diary entry
622
623 %%(diary-block 11 1 1990 11 10 1990) Vacation
624
625 causes the diary entry \"Vacation\" to appear from November 1 through
626 November 10, 1990. See the documentation for the function
627 `diary-list-sexp-entries' for more details.
628
629 Diary entries based on the Hebrew, the Islamic and/or the Baha'i
630 calendar are also possible, but because these are somewhat slow, they
631 are ignored unless you set the `diary-nongregorian-listing-hook' and
632 the `diary-nongregorian-marking-hook' appropriately. See the
633 documentation of these hooks for details.
634
635 Diary files can contain directives to include the contents of other files; for
636 details, see the documentation for the variable `diary-list-entries-hook'."
637 :type 'file
638 :group 'diary)
639
640 ;; FIXME do these have to be single characters?
641 (defcustom diary-nonmarking-symbol "&"
642 "Symbol indicating that a diary entry is not to be marked in the calendar."
643 :type 'string
644 :group 'diary)
645
646 (define-obsolete-variable-alias 'hebrew-diary-entry-symbol
647 'diary-hebrew-entry-symbol "23.1")
648
649 (defcustom diary-hebrew-entry-symbol "H"
650 "Symbol indicating a diary entry according to the Hebrew calendar."
651 :type 'string
652 :group 'diary)
653
654 (define-obsolete-variable-alias 'islamic-diary-entry-symbol
655 'diary-islamic-entry-symbol "23.1")
656
657 (defcustom diary-islamic-entry-symbol "I"
658 "Symbol indicating a diary entry according to the Islamic calendar."
659 :type 'string
660 :group 'diary)
661
662 (define-obsolete-variable-alias 'bahai-diary-entry-symbol
663 'diary-bahai-entry-symbol "23.1")
664
665 (defcustom diary-bahai-entry-symbol "B"
666 "Symbol indicating a diary entry according to the Baha'i calendar."
667 :type 'string
668 :group 'diary)
669
670 (defcustom european-calendar-style nil
671 "Non-nil means use the European style of dates in the diary and display.
672 In this case, a date like 1/2/1990 would be interpreted as
673 February 1, 1990. See `diary-european-date-forms' for the
674 default European diary date styles.
675
676 Setting this variable directly does not take effect (if the
677 calendar package is already loaded). Rather, use either
678 \\[customize] or the function `calendar-set-date-style'."
679 :type 'boolean
680 ;; Without :initialize (require 'calendar) throws an error because
681 ;; calendar-set-date-style is undefined at this point.
682 :initialize 'custom-initialize-default
683 :set (lambda (symbol value)
684 (if value
685 (calendar-set-date-style 'european)
686 (calendar-set-date-style 'american)))
687 :group 'calendar)
688
689 (make-obsolete-variable 'european-calendar-style 'calendar-date-style "23.1")
690
691 ;; If this is autoloaded, c-d-s gets set before any customization of e-c-s.
692 (defcustom calendar-date-style (if european-calendar-style 'european
693 'american)
694 "Your preferred style for writing dates.
695 The options are:
696 `american' - month/day/year
697 `european' - day/month/year
698 `iso' - year/month/day
699 This affects how dates written in your diary are interpreted.
700 It also affects date display, as well as those calendar and diary
701 functions that take a date as an argument, e.g. `diary-date', by
702 changing the order in which the arguments are interpreted.
703
704 Setting this variable directly does not take effect (if the
705 calendar package is already loaded). Rather, use either
706 \\[customize] or the function `calendar-set-date-style'."
707 :version "23.1"
708 :type '(choice (const american :tag "Month/Day/Year")
709 (const european :tag "Day/Month/Year")
710 (const iso :tag "Year/Month/Day"))
711 :initialize 'custom-initialize-default
712 :set (lambda (symbol value)
713 (calendar-set-date-style value))
714 :group 'calendar)
715
716 ;; Next three are provided to aid in setting diary-date-forms.
717 ;; FIXME move to diary-lib?
718 (defcustom diary-iso-date-forms
719 '((month "[-/]" day "[^-/0-9]")
720 (year "[-/]" month "[-/]" day "[^0-9]")
721 (monthname "-" day "[^-0-9]")
722 (year "-" monthname "-" day "[^0-9]")
723 (dayname "\\W"))
724 "List of pseudo-patterns describing the ISO style of dates.
725 The defaults are: MONTH[-/]DAY; YEAR[-/]MONTH[-/]DAY; MONTHNAME-DAY;
726 YEAR-MONTHNAME-DAY; DAYNAME. Normally you should not customize this,
727 but `diary-date-forms' (which see)."
728 :version "23.1"
729 :type '(repeat (choice (cons :tag "Backup"
730 :value (backup . nil)
731 (const backup)
732 (repeat (list :inline t :format "%v"
733 (symbol :tag "Keyword")
734 (choice symbol regexp))))
735 (repeat (list :inline t :format "%v"
736 (symbol :tag "Keyword")
737 (choice symbol regexp)))))
738 :group 'diary)
739
740 (define-obsolete-variable-alias 'american-date-diary-pattern
741 'diary-american-date-forms "23.1")
742
743 (defcustom diary-american-date-forms
744 '((month "/" day "[^/0-9]")
745 (month "/" day "/" year "[^0-9]")
746 (monthname " *" day "[^,0-9]")
747 (monthname " *" day ", *" year "[^0-9]")
748 (dayname "\\W"))
749 "List of pseudo-patterns describing the American style of dates.
750 The defaults are: MONTH/DAY; MONTH/DAY/YEAR; MONTHNAME DAY;
751 MONTHNAME DAY, YEAR; DAYNAME. Normally you should not customize this,
752 but `diary-date-forms' (which see)."
753 :type '(repeat (choice (cons :tag "Backup"
754 :value (backup . nil)
755 (const backup)
756 (repeat (list :inline t :format "%v"
757 (symbol :tag "Keyword")
758 (choice symbol regexp))))
759 (repeat (list :inline t :format "%v"
760 (symbol :tag "Keyword")
761 (choice symbol regexp)))))
762 :group 'diary)
763
764 (define-obsolete-variable-alias 'european-date-diary-pattern
765 'diary-european-date-forms "23.1")
766
767 (defcustom diary-european-date-forms
768 '((day "/" month "[^/0-9]")
769 (day "/" month "/" year "[^0-9]")
770 (backup day " *" monthname "\\W+\\<\\([^*0-9]\\|\\([0-9]+[:aApP]\\)\\)")
771 (day " *" monthname " *" year "[^0-9]")
772 (dayname "\\W"))
773 "List of pseudo-patterns describing the European style of dates.
774 The defaults are: DAY/MONTH; DAY/MONTH/YEAR; DAY MONTHNAME;
775 DAY MONTHNAME YEAR; DAYNAME. Normally you should not customize this, but
776 `diary-date-forms' (which see)."
777 :type '(repeat (choice (cons :tag "Backup"
778 :value (backup . nil)
779 (const backup)
780 (repeat (list :inline t :format "%v"
781 (symbol :tag "Keyword")
782 (choice symbol regexp))))
783 (repeat (list :inline t :format "%v"
784 (symbol :tag "Keyword")
785 (choice symbol regexp)))))
786 :group 'diary)
787
788 (defvar diary-font-lock-keywords)
789
790 (defcustom diary-date-forms (cond ((eq calendar-date-style 'iso)
791 diary-iso-date-forms)
792 ((eq calendar-date-style 'european)
793 diary-european-date-forms)
794 (t diary-american-date-forms))
795 "List of pseudo-patterns describing the forms of date used in the diary.
796 The patterns on the list must be MUTUALLY EXCLUSIVE and should not match
797 any portion of the diary entry itself, just the date component.
798
799 A pseudo-pattern is a list of regular expressions and the keywords `month',
800 `day', `year', `monthname', and `dayname'. The keyword `monthname' will
801 match the name of the month (see `calendar-month-name-array'), capitalized
802 or not, or its user-specified abbreviation (see `calendar-month-abbrev-array'),
803 followed by a period or not; it will also match `*'. Similarly, `dayname'
804 will match the name of the day (see `calendar-day-name-array'), capitalized or
805 not, or its user-specified abbreviation (see `calendar-day-abbrev-array'),
806 followed by a period or not. The keywords `month', `day', and `year' will
807 match those numerical values, preceded by arbitrarily many zeros; they will
808 also match `*'.
809
810 The matching of the diary entries with the date forms is done with the
811 standard syntax table from Fundamental mode, but with the `*' changed so
812 that it is a word constituent.
813
814 If, to be mutually exclusive, a pseudo-pattern must match a portion of the
815 diary entry itself, the first element of the pattern MUST be `backup'. This
816 directive causes the date recognizer to back up to the beginning of the
817 current word of the diary entry, so in no case can the pattern match more than
818 a portion of the first word of the diary entry.
819
820 For examples of three common styles, see `diary-american-date-forms',
821 `diary-european-date-forms', and `diary-iso-date-forms'."
822 :type '(repeat (choice (cons :tag "Backup"
823 :value (backup . nil)
824 (const backup)
825 (repeat (list :inline t :format "%v"
826 (symbol :tag "Keyword")
827 (choice symbol regexp))))
828 (repeat (list :inline t :format "%v"
829 (symbol :tag "Keyword")
830 (choice symbol regexp)))))
831 :initialize 'custom-initialize-default
832 :set (lambda (symbol value)
833 (unless (equal value (eval symbol))
834 (custom-set-default symbol value)
835 (setq diary-font-lock-keywords (diary-font-lock-keywords))
836 ;; Need to redraw not just to get new font-locking, but also
837 ;; to pick up any newly recognized entries.
838 (and (diary-live-p)
839 (diary))))
840 :group 'diary)
841
842 ;; Next three are provided to aid in setting calendar-date-display-form.
843 (defcustom calendar-iso-date-display-form '((format "%s-%.2d-%.2d" year
844 (string-to-number month)
845 (string-to-number day)))
846 "Pseudo-pattern governing the way a date appears in the ISO style.
847 Normally you should not customize this, but `calendar-date-display-form'
848 \(which see)."
849 :type 'sexp
850 :version "23.1"
851 :group 'calendar)
852
853 (define-obsolete-variable-alias 'european-calendar-display-form
854 'calendar-european-date-display-form "23.1")
855
856 (defcustom calendar-european-date-display-form
857 '((if dayname (concat dayname ", ")) day " " monthname " " year)
858 "Pseudo-pattern governing the way a date appears in the European style.
859 Normally you should not customize this, but `calendar-date-display-form'
860 \(which see)."
861 :type 'sexp
862 :group 'calendar)
863
864 (define-obsolete-variable-alias 'american-calendar-display-form
865 'calendar-american-date-display-form "23.1")
866
867 (defcustom calendar-american-date-display-form
868 '((if dayname (concat dayname ", ")) monthname " " day ", " year)
869 "Pseudo-pattern governing the way a date appears in the American style.
870 Normally you should not customize this, but `calendar-date-display-form'
871 \(which see)."
872 :type 'sexp
873 :group 'calendar)
874
875 (defcustom calendar-date-display-form
876 (cond ((eq calendar-date-style 'iso)
877 calendar-iso-date-display-form)
878 ((eq calendar-date-style 'european)
879 calendar-european-date-display-form)
880 (t calendar-american-date-display-form))
881 "Pseudo-pattern governing the way a calendar date appears.
882 Used by the function `calendar-date-string' (which see), a pseudo-pattern
883 is a list of expressions that can involve the keywords `month', `day',
884 and `year' (all numbers in string form), and `monthname' and `dayname'
885 \(both alphabetic strings). For example, a typical American form would be
886
887 '(month \"/\" day \"/\" (substring year -2))
888
889 whereas
890
891 '((format \"%9s, %9s %2s, %4s\" dayname monthname day year))
892
893 would give the usual American style in fixed-length fields. The variables
894 `calendar-iso-date-display-form', `calendar-european-date-display-form', and
895 `calendar-american-date-display-form' provide some defaults for three common
896 styles."
897 :type 'sexp
898 :group 'calendar)
899
900 (defun calendar-set-date-style (style)
901 "Set the style of calendar and diary dates to STYLE (a symbol).
902 The valid styles are described in the documentation of `calendar-date-style'."
903 (interactive (list (intern
904 (completing-read "Date style: "
905 '("american" "european" "iso") nil t
906 nil nil "american"))))
907 (or (memq style '(american european iso))
908 (setq style 'american))
909 (setq calendar-date-style style
910 calendar-date-display-form
911 (symbol-value (intern-soft
912 (format "calendar-%s-date-display-form" style)))
913 diary-date-forms
914 (symbol-value (intern-soft (format "diary-%s-date-forms" style))))
915 (calendar-update-mode-line))
916
917 (defun european-calendar ()
918 "Set the interpretation and display of dates to the European style."
919 (interactive)
920 (calendar-set-date-style 'european))
921
922 (make-obsolete 'european-calendar 'calendar-set-date-style "23.1")
923
924 (defun american-calendar ()
925 "Set the interpretation and display of dates to the American style."
926 (interactive)
927 (calendar-set-date-style 'american))
928
929 (make-obsolete 'american-calendar 'calendar-set-date-style "23.1")
930
931 (define-obsolete-variable-alias 'holidays-in-diary-buffer
932 'diary-show-holidays-flag "23.1")
933
934 (defcustom diary-show-holidays-flag t
935 "Non-nil means include holidays in the diary display.
936 The holidays appear in the mode line of the diary buffer, or in the
937 fancy diary buffer next to the date. This slows down the diary functions
938 somewhat; setting it to nil makes the diary display faster."
939 :type 'boolean
940 :group 'holidays)
941
942 (defcustom calendar-debug-sexp nil
943 "Turn debugging on when evaluating a sexp in the diary or holiday list."
944 :type 'boolean
945 :group 'calendar)
946
947 (define-obsolete-variable-alias 'all-hebrew-calendar-holidays
948 'calendar-hebrew-all-holidays-flag "23.1")
949
950 (defcustom calendar-hebrew-all-holidays-flag nil
951 "If nil, show only major holidays from the Hebrew calendar.
952 This means only those Jewish holidays that appear on secular calendars.
953 Otherwise, show all the holidays that would appear in a complete Hebrew
954 calendar."
955 :type 'boolean
956 :group 'holidays)
957
958 (define-obsolete-variable-alias 'all-christian-calendar-holidays
959 'calendar-christian-all-holidays-flag "23.1")
960
961 (defcustom calendar-christian-all-holidays-flag nil
962 "If nil, show only major holidays from the Christian calendar.
963 This means only those Christian holidays that appear on secular calendars.
964 Otherwise, show all the holidays that would appear in a complete Christian
965 calendar."
966 :type 'boolean
967 :group 'holidays)
968
969 (define-obsolete-variable-alias 'all-islamic-calendar-holidays
970 'calendar-islamic-all-holidays-flag "23.1")
971
972 (defcustom calendar-islamic-all-holidays-flag nil
973 "If nil, show only major holidays from the Islamic calendar.
974 This means only those Islamic holidays that appear on secular calendars.
975 Otherwise, show all the holidays that would appear in a complete Islamic
976 calendar."
977 :type 'boolean
978 :group 'holidays)
979
980 (define-obsolete-variable-alias 'all-bahai-calendar-holidays
981 'calendar-bahai-all-holidays-flag "23.1")
982
983 (defcustom calendar-bahai-all-holidays-flag nil
984 "If nil, show only major holidays from the Baha'i calendar.
985 These are the days on which work and school must be suspended.
986 Otherwise, show all the holidays that would appear in a complete Baha'i
987 calendar."
988 :type 'boolean
989 :group 'holidays)
990
991 (defcustom calendar-chinese-all-holidays-flag nil
992 "If nil, show only the major holidays from the Chinese calendar."
993 :version "23.1"
994 :type 'boolean
995 :group 'holidays)
996
997 ;;; End of user options.
998
999 (calendar-recompute-layout-variables)
1000
1001 (defconst calendar-first-date-row 3
1002 "First row in the calendar with actual dates.")
1003
1004 (defconst calendar-buffer "*Calendar*"
1005 "Name of the buffer used for the calendar.")
1006
1007 (defconst holiday-buffer "*Holidays*"
1008 "Name of the buffer used for the displaying the holidays.")
1009
1010 (defconst diary-fancy-buffer "*Fancy Diary Entries*"
1011 "Name of the buffer used for the optional fancy display of the diary.")
1012
1013 (define-obsolete-variable-alias 'fancy-diary-buffer 'diary-fancy-buffer "23.1")
1014
1015 (defconst calendar-other-calendars-buffer "*Other Calendars*"
1016 "Name of the buffer used for the display of date on other calendars.")
1017
1018 (defconst lunar-phases-buffer "*Phases of Moon*"
1019 "Name of the buffer used for the lunar phases.")
1020
1021 (defconst solar-sunrises-buffer "*Sunrise/Sunset Times*"
1022 "Name of buffer used for sunrise/sunset times.")
1023
1024 (defconst calendar-hebrew-yahrzeit-buffer "*Yahrzeits*"
1025 "Name of the buffer used by `list-yahrzeit-dates'.")
1026
1027 (defmacro calendar-increment-month (mon yr n &optional nmonths)
1028 "Increment the variables MON and YR by N months.
1029 Forward if N is positive or backward if N is negative.
1030 A negative YR is interpreted as BC; -1 being 1 BC, and so on.
1031 Optional NMONTHS is the number of months per year (default 12)."
1032 ;; Can view this as a form of base-nmonths arithmetic, in which "a
1033 ;; year" = "ten", and we never bother to use hundreds.
1034 `(let ((nmonths (or ,nmonths 12))
1035 macro-y)
1036 (if (< ,yr 0) (setq ,yr (1+ ,yr))) ; -1 BC -> 0 AD, etc
1037 (setq macro-y (+ (* ,yr nmonths) ,mon -1 ,n)
1038 ,mon (1+ (mod macro-y nmonths))
1039 ,yr (/ macro-y nmonths))
1040 ;; Alternative:
1041 ;;; (setq macro-y (+ (* ,yr nmonths) ,mon -1 ,n)
1042 ;;; ,yr (/ macro-y nmonths)
1043 ;;; ,mon (- macro-y (* ,yr nmonths)))
1044 (and (< macro-y 0) (> ,mon 1) (setq ,yr (1- ,yr)))
1045 (if (< ,yr 1) (setq ,yr (1- ,yr))))) ; 0 AD -> -1 BC, etc
1046
1047 (define-obsolete-function-alias 'increment-calendar-month
1048 'calendar-increment-month "23.1")
1049
1050 (defvar displayed-month)
1051 (defvar displayed-year)
1052
1053 (defun calendar-increment-month-cons (n &optional mon yr)
1054 "Return the Nth month after MON/YR.
1055 The return value is a pair (MONTH . YEAR).
1056 MON defaults to `displayed-month'. YR defaults to `displayed-year'."
1057 (unless mon (setq mon displayed-month))
1058 (unless yr (setq yr displayed-year))
1059 (calendar-increment-month mon yr n)
1060 (cons mon yr))
1061
1062 (defmacro calendar-for-loop (var from init to final do &rest body)
1063 "Execute a for loop.
1064 Evaluate BODY with VAR bound to successive integers from INIT to FINAL,
1065 inclusive. The standard macro `dotimes' is preferable in most cases."
1066 (declare (debug (symbolp "from" form "to" form "do" body))
1067 (indent defun))
1068 `(let ((,var (1- ,init)))
1069 (while (>= ,final (setq ,var (1+ ,var)))
1070 ,@body)))
1071
1072 (make-obsolete 'calendar-for-loop "use `dotimes' or `while' instead." "23.1")
1073
1074 (defmacro calendar-sum (index initial condition expression)
1075 "For INDEX = INITIAL, +1, ... (as long as CONDITION holds), sum EXPRESSION."
1076 (declare (debug (symbolp form form form)))
1077 `(let ((,index ,initial)
1078 (sum 0))
1079 (while ,condition
1080 (setq sum (+ sum ,expression)
1081 ,index (1+ ,index)))
1082 sum))
1083
1084 ;; FIXME bind q to bury-buffer?
1085 (defmacro calendar-in-read-only-buffer (buffer &rest body)
1086 "Switch to BUFFER and executes the forms in BODY.
1087 First creates or erases BUFFER as needed. Leaves BUFFER read-only,
1088 with disabled undo. Leaves point at point-min, displays BUFFER."
1089 (declare (indent 1) (debug t))
1090 `(progn
1091 (set-buffer (get-buffer-create ,buffer))
1092 (setq buffer-read-only nil
1093 buffer-undo-list t)
1094 (erase-buffer)
1095 ,@body
1096 (goto-char (point-min))
1097 (set-buffer-modified-p nil)
1098 (setq buffer-read-only t)
1099 (display-buffer ,buffer)))
1100
1101 ;; The following are in-line for speed; they can be called thousands of times
1102 ;; when looking up holidays or processing the diary. Here, for example, are
1103 ;; the numbers of calls to calendar/diary/holiday functions in preparing the
1104 ;; fancy diary display, for a moderately complex diary file, with functions
1105 ;; used instead of macros. There were a total of 10000 such calls:
1106 ;;
1107 ;; 1934 calendar-extract-month
1108 ;; 1852 calendar-extract-year
1109 ;; 1819 calendar-extract-day
1110 ;; 845 calendar-leap-year-p
1111 ;; 837 calendar-day-number
1112 ;; 775 calendar-absolute-from-gregorian
1113 ;; 346 calendar-last-day-of-month
1114 ;; 286 calendar-hebrew-last-day-of-month
1115 ;; 188 calendar-hebrew-leap-year-p
1116 ;; 180 calendar-hebrew-elapsed-days
1117 ;; 163 calendar-hebrew-last-month-of-year
1118 ;; 66 calendar-date-compare
1119 ;; 65 calendar-hebrew-days-in-year
1120 ;; 60 calendar-julian-to-absolute
1121 ;; 50 calendar-hebrew-to-absolute
1122 ;; 43 calendar-date-equal
1123 ;; 38 calendar-gregorian-from-absolute
1124 ;; .
1125 ;;
1126 ;; The use of these seven macros eliminates the overhead of 92% of the function
1127 ;; calls; it's faster this way.
1128
1129 (defsubst calendar-extract-month (date)
1130 "Extract the month part of DATE which has the form (month day year)."
1131 (car date))
1132
1133 (define-obsolete-function-alias 'extract-calendar-month
1134 'calendar-extract-month "23.1")
1135
1136 ;; Note gives wrong answer for result of (calendar-read-date 'noday),
1137 ;; but that is only used by `calendar-other-month'.
1138 (defsubst calendar-extract-day (date)
1139 "Extract the day part of DATE which has the form (month day year)."
1140 (cadr date))
1141
1142 (define-obsolete-function-alias 'extract-calendar-day
1143 'calendar-extract-day "23.1")
1144
1145 (defsubst calendar-extract-year (date)
1146 "Extract the year part of DATE which has the form (month day year)."
1147 (nth 2 date))
1148
1149 (define-obsolete-function-alias 'extract-calendar-year
1150 'calendar-extract-year "23.1")
1151
1152 (defsubst calendar-leap-year-p (year)
1153 "Return t if YEAR is a Gregorian leap year.
1154 A negative year is interpreted as BC; -1 being 1 BC, and so on."
1155 ;; 1 BC = 0 AD, 2 BC acts like 1 AD, etc.
1156 (if (< year 0) (setq year (1- (abs year))))
1157 (and (zerop (% year 4))
1158 (or (not (zerop (% year 100)))
1159 (zerop (% year 400)))))
1160
1161 ;; The foregoing is a bit faster, but not as clear as the following:
1162 ;;
1163 ;;(defsubst calendar-leap-year-p (year)
1164 ;; "Return t if YEAR is a Gregorian leap year."
1165 ;; (or
1166 ;; (and (zerop (% year 4))
1167 ;; (not (zerop (% year 100))))
1168 ;; (zerop (% year 400)))
1169
1170 (defsubst calendar-last-day-of-month (month year)
1171 "The last day in MONTH during YEAR."
1172 (if (and (= month 2) (calendar-leap-year-p year))
1173 29
1174 (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month))))
1175
1176 ;; An explanation of the calculation can be found in PascAlgorithms by
1177 ;; Edward and Ruth Reingold, Scott-Foresman/Little, Brown, 1988.
1178
1179 (defsubst calendar-day-number (date)
1180 "Return the day number within the year of the date DATE.
1181 For example, (calendar-day-number '(1 1 1987)) returns the value 1,
1182 while (calendar-day-number '(12 31 1980)) returns 366."
1183 (let* ((month (calendar-extract-month date))
1184 (day (calendar-extract-day date))
1185 (year (calendar-extract-year date))
1186 (day-of-year (+ day (* 31 (1- month)))))
1187 (when (> month 2)
1188 (setq day-of-year (- day-of-year (/ (+ 23 (* 4 month)) 10)))
1189 (if (calendar-leap-year-p year)
1190 (setq day-of-year (1+ day-of-year))))
1191 day-of-year))
1192
1193 (defsubst calendar-absolute-from-gregorian (date)
1194 "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE.
1195 The Gregorian date Sunday, December 31, 1 BC is imaginary.
1196 DATE is a list of the form (month day year). A negative year is
1197 interpreted as BC; -1 being 1 BC, and so on. Dates before 12/31/1 BC
1198 return negative results."
1199 (let ((year (calendar-extract-year date))
1200 offset-years)
1201 (cond ((zerop year)
1202 (error "There was no year zero"))
1203 ((> year 0)
1204 (setq offset-years (1- year))
1205 (+ (calendar-day-number date) ; days this year
1206 (* 365 offset-years) ; + days in prior years
1207 (/ offset-years 4) ; + Julian leap years
1208 (- (/ offset-years 100)) ; - century years
1209 (/ offset-years 400))) ; + Gregorian leap years
1210 (t
1211 ;; Years between date and 1 BC, excluding 1 BC (1 for 2 BC, etc).
1212 (setq offset-years (abs (1+ year)))
1213 (- (calendar-day-number date)
1214 (* 365 offset-years)
1215 (/ offset-years 4)
1216 (- (/ offset-years 100))
1217 (/ offset-years 400)
1218 (calendar-day-number '(12 31 -1))))))) ; days in year 1 BC
1219
1220 ;;;###autoload
1221 (defun calendar (&optional arg)
1222 "Display a three-month Gregorian calendar.
1223 The three months appear side by side, with the current month in
1224 the middle surrounded by the previous and next months. The
1225 cursor is put on today's date. If optional prefix argument ARG
1226 is non-nil, prompts for the central month and year.
1227
1228 Once in the calendar window, future or past months can be moved
1229 into view. Arbitrary months can be displayed, or the calendar
1230 can be scrolled forward or backward. The cursor can be moved
1231 forward or backward by one day, one week, one month, or one year.
1232 All of these commands take prefix arguments which, when negative,
1233 cause movement in the opposite direction. For convenience, the
1234 digit keys and the minus sign are automatically prefixes. Use
1235 \\[describe-mode] for details of the key bindings in the calendar
1236 window.
1237
1238 Displays the calendar in a separate window, or optionally in a
1239 separate frame, depending on the value of `calendar-setup'.
1240
1241 If `calendar-view-diary-initially-flag' is non-nil, also displays the
1242 diary entries for the current date (or however many days
1243 `diary-number-of-entries' specifies). This variable can be
1244 overridden by `calendar-setup'. As well as being displayed,
1245 diary entries can also be marked on the calendar (see
1246 `calendar-mark-diary-entries-flag').
1247
1248 Runs the following hooks:
1249
1250 `calendar-load-hook' - after loading calendar.el
1251 `calendar-today-visible-hook', `calendar-today-invisible-hook' - after
1252 generating a calendar, if today's date is visible or not, respectively
1253 `calendar-initial-window-hook' - after first creating a calendar
1254
1255 This function is suitable for execution in a .emacs file."
1256 (interactive "P")
1257 ;; Avoid loading cal-x unless it will be used.
1258 (if (and (memq calendar-setup '(one-frame two-frames calendar-only))
1259 (display-multi-frame-p))
1260 (calendar-frame-setup calendar-setup arg)
1261 (calendar-basic-setup arg)))
1262
1263 (defun calendar-basic-setup (&optional arg nodisplay)
1264 "Create a three-month calendar.
1265 If optional prefix argument ARG is non-nil, prompts for the month
1266 and year, else uses the current date. If NODISPLAY is non-nil, don't
1267 display the generated calendar."
1268 (interactive "P")
1269 (set-buffer (get-buffer-create calendar-buffer))
1270 (calendar-mode)
1271 (let* ((pop-up-windows t)
1272 (split-height-threshold 1000)
1273 (date (if arg (calendar-read-date t)
1274 (calendar-current-date)))
1275 (month (calendar-extract-month date))
1276 (year (calendar-extract-year date)))
1277 (calendar-increment-month month year (- calendar-offset))
1278 ;; Display the buffer before calling calendar-generate-window so that it
1279 ;; can get a chance to adjust the window sizes to the frame size.
1280 (or nodisplay (pop-to-buffer calendar-buffer))
1281 (calendar-generate-window month year)
1282 (if (and calendar-view-diary-initially-flag
1283 (calendar-date-is-visible-p date))
1284 (diary-view-entries)))
1285 (if calendar-view-holidays-initially-flag
1286 (let* ((diary-buffer (get-file-buffer diary-file))
1287 (diary-window (if diary-buffer (get-buffer-window diary-buffer)))
1288 (split-height-threshold (if diary-window 2 1000)))
1289 ;; FIXME display buffer?
1290 (calendar-list-holidays)))
1291 (run-hooks 'calendar-initial-window-hook))
1292
1293 (defun calendar-generate-window (&optional mon yr)
1294 "Generate the calendar window for the current date.
1295 Optional integers MON and YR are used instead of today's date."
1296 (let* ((inhibit-read-only t)
1297 (today (calendar-current-date))
1298 (month (calendar-extract-month today))
1299 (day (calendar-extract-day today))
1300 (year (calendar-extract-year today))
1301 (today-visible (or (not mon)
1302 (<= (abs (calendar-interval mon yr month year)) 1)))
1303 (day-in-week (calendar-day-of-week today))
1304 (in-calendar-window (eq (window-buffer (selected-window))
1305 (get-buffer calendar-buffer))))
1306 (calendar-generate (or mon month) (or yr year))
1307 (calendar-update-mode-line)
1308 (calendar-cursor-to-visible-date
1309 (if today-visible today (list displayed-month 1 displayed-year)))
1310 (set-buffer-modified-p nil)
1311 ;; Don't do any window-related stuff if we weren't called from a
1312 ;; window displaying the calendar.
1313 (when in-calendar-window
1314 (if (or (one-window-p t) (not (window-full-width-p)))
1315 ;; Don't mess with the window size, but ensure that the first
1316 ;; line is fully visible.
1317 (set-window-vscroll nil 0)
1318 ;; Adjust the window to exactly fit the displayed calendar.
1319 (fit-window-to-buffer nil nil calendar-minimum-window-height))
1320 (sit-for 0))
1321 (and (bound-and-true-p font-lock-mode)
1322 (font-lock-fontify-buffer))
1323 (and calendar-mark-holidays-flag
1324 ;;; (calendar-date-is-valid-p today) ; useful for BC dates
1325 (calendar-mark-holidays)
1326 (and in-calendar-window (sit-for 0)))
1327 (unwind-protect
1328 (if calendar-mark-diary-entries-flag (diary-mark-entries))
1329 (if today-visible
1330 (run-hooks 'calendar-today-visible-hook)
1331 (run-hooks 'calendar-today-invisible-hook)))))
1332
1333 (defun calendar-generate (month year)
1334 "Generate a three-month Gregorian calendar centered around MONTH, YEAR."
1335 ;; A negative YEAR is interpreted as BC; -1 being 1 BC, and so on.
1336 ;; Note that while calendars for years BC could be displayed as it
1337 ;; stands, almost all other calendar functions (eg holidays) would
1338 ;; at best have unpredictable results for such dates.
1339 (if (< (+ month (* 12 (1- year))) 2)
1340 (error "Months before January, 1 AD cannot be displayed"))
1341 (setq displayed-month month
1342 displayed-year year)
1343 (erase-buffer)
1344 (calendar-increment-month month year -1)
1345 (dotimes (i 3)
1346 (calendar-generate-month month year
1347 (+ calendar-left-margin
1348 (* calendar-month-width i)))
1349 (calendar-increment-month month year 1)))
1350
1351 (defun calendar-move-to-column (indent)
1352 "Like `move-to-column', but indents if the line is too short."
1353 (if (< (move-to-column indent) indent)
1354 (indent-to indent)))
1355
1356 (defun calendar-ensure-newline ()
1357 "Move to the next line, adding a newline if necessary."
1358 (or (zerop (forward-line 1))
1359 (insert "\n")))
1360
1361 (defun calendar-insert-at-column (indent string truncate)
1362 "Move to column INDENT, adding spaces as needed.
1363 Inserts STRING so that it ends at INDENT. STRING is either a
1364 literal string, or a sexp to evaluate to return such. Truncates
1365 STRING to length TRUNCATE, ensure a trailing space."
1366 (if (not (ignore-errors (stringp (setq string (eval string)))))
1367 (calendar-move-to-column indent)
1368 (if (> (length string) truncate)
1369 (setq string (substring string 0 truncate)))
1370 (or (string-match " $" string)
1371 (if (= (length string) truncate)
1372 (aset string (1- truncate) ?\s)
1373 (setq string (concat string " "))))
1374 (calendar-move-to-column (- indent (length string)))
1375 (insert string)))
1376
1377 (defun calendar-generate-month (month year indent)
1378 "Produce a calendar for MONTH, YEAR on the Gregorian calendar.
1379 The calendar is inserted at the top of the buffer in which point is currently
1380 located, but indented INDENT spaces. The indentation is done from the first
1381 character on the line and does not disturb the first INDENT characters on the
1382 line."
1383 (let ((blank-days ; at start of month
1384 (mod
1385 (- (calendar-day-of-week (list month 1 year))
1386 calendar-week-start-day)
1387 7))
1388 (last (calendar-last-day-of-month month year))
1389 (trunc (min calendar-intermonth-spacing
1390 (1- calendar-left-margin)))
1391 (day 1)
1392 string)
1393 (goto-char (point-min))
1394 (calendar-move-to-column indent)
1395 (insert
1396 (calendar-string-spread
1397 (list (format "%s %d" (calendar-month-name month) year))
1398 ?\s calendar-month-digit-width))
1399 (calendar-ensure-newline)
1400 (calendar-insert-at-column indent calendar-intermonth-header trunc)
1401 ;; Use the first two characters of each day to head the columns.
1402 (dotimes (i 7)
1403 (insert
1404 (progn
1405 (setq string
1406 (calendar-day-name (mod (+ calendar-week-start-day i) 7) nil t))
1407 (if enable-multibyte-characters
1408 (truncate-string-to-width string calendar-day-header-width)
1409 (substring string 0 calendar-day-header-width)))
1410 (make-string (- calendar-column-width calendar-day-header-width) ?\s)))
1411 (calendar-ensure-newline)
1412 (calendar-insert-at-column indent calendar-intermonth-text trunc)
1413 ;; Add blank days before the first of the month.
1414 (insert (make-string (* blank-days calendar-column-width) ?\s))
1415 ;; Put in the days of the month.
1416 (dotimes (i last)
1417 (setq day (1+ i))
1418 ;; TODO should numbers be left-justified, centered...?
1419 (insert (format (format "%%%dd%%s" calendar-day-digit-width) day
1420 (make-string
1421 (- calendar-column-width calendar-day-digit-width) ?\s)))
1422 ;; 'date property prevents intermonth text confusing re-searches.
1423 ;; (Tried intangible, it did not really work.)
1424 (set-text-properties
1425 (- (point) (1+ calendar-day-digit-width)) (1- (point))
1426 `(mouse-face highlight help-echo ,(eval calendar-date-echo-text)
1427 date t))
1428 (when (and (zerop (mod (+ day blank-days) 7))
1429 (/= day last))
1430 (calendar-ensure-newline)
1431 (setq day (1+ day)) ; first day of next week
1432 (calendar-insert-at-column indent calendar-intermonth-text trunc)))))
1433
1434 (defun calendar-redraw ()
1435 "Redraw the calendar display, if `calendar-buffer' is live."
1436 (interactive)
1437 (if (get-buffer calendar-buffer)
1438 (with-current-buffer calendar-buffer
1439 (let ((cursor-date (calendar-cursor-to-nearest-date)))
1440 (calendar-generate-window displayed-month displayed-year)
1441 (calendar-cursor-to-visible-date cursor-date)))))
1442
1443 (defvar calendar-mode-map
1444 (let ((map (make-keymap)))
1445 (suppress-keymap map)
1446 (dolist (c '(narrow-to-region mark-word mark-sexp mark-paragraph
1447 mark-defun mark-whole-buffer mark-page
1448 downcase-region upcase-region kill-region
1449 copy-region-as-kill capitalize-region write-region))
1450 (define-key map (vector 'remap c) 'calendar-not-implemented))
1451 (define-key map "<" 'calendar-scroll-right)
1452 (define-key map "\C-x<" 'calendar-scroll-right)
1453 (define-key map [prior] 'calendar-scroll-right-three-months)
1454 (define-key map "\ev" 'calendar-scroll-right-three-months)
1455 (define-key map ">" 'calendar-scroll-left)
1456 (define-key map "\C-x>" 'calendar-scroll-left)
1457 (define-key map [next] 'calendar-scroll-left-three-months)
1458 (define-key map "\C-v" 'calendar-scroll-left-three-months)
1459 (define-key map "\C-b" 'calendar-backward-day)
1460 (define-key map "\C-p" 'calendar-backward-week)
1461 (define-key map "\e{" 'calendar-backward-month)
1462 (define-key map "\C-x[" 'calendar-backward-year)
1463 (define-key map "\C-f" 'calendar-forward-day)
1464 (define-key map "\C-n" 'calendar-forward-week)
1465 (define-key map [left] 'calendar-backward-day)
1466 (define-key map [up] 'calendar-backward-week)
1467 (define-key map [right] 'calendar-forward-day)
1468 (define-key map [down] 'calendar-forward-week)
1469 (define-key map "\e}" 'calendar-forward-month)
1470 (define-key map "\C-x]" 'calendar-forward-year)
1471 (define-key map "\C-a" 'calendar-beginning-of-week)
1472 (define-key map "\C-e" 'calendar-end-of-week)
1473 (define-key map "\ea" 'calendar-beginning-of-month)
1474 (define-key map "\ee" 'calendar-end-of-month)
1475 (define-key map "\e<" 'calendar-beginning-of-year)
1476 (define-key map "\e>" 'calendar-end-of-year)
1477 (define-key map "\C-@" 'calendar-set-mark)
1478 ;; Many people are used to typing C-SPC and getting C-@.
1479 (define-key map [?\C-\s] 'calendar-set-mark)
1480 (define-key map "\C-x\C-x" 'calendar-exchange-point-and-mark)
1481 (define-key map "\e=" 'calendar-count-days-region)
1482 (define-key map "gd" 'calendar-goto-date)
1483 (define-key map "gD" 'calendar-goto-day-of-year)
1484 (define-key map "gj" 'calendar-julian-goto-date)
1485 (define-key map "ga" 'calendar-astro-goto-day-number)
1486 (define-key map "gh" 'calendar-hebrew-goto-date)
1487 (define-key map "gi" 'calendar-islamic-goto-date)
1488 (define-key map "gb" 'calendar-bahai-goto-date)
1489 (define-key map "gC" 'calendar-chinese-goto-date)
1490 (define-key map "gk" 'calendar-coptic-goto-date)
1491 (define-key map "ge" 'calendar-ethiopic-goto-date)
1492 (define-key map "gp" 'calendar-persian-goto-date)
1493 (define-key map "gc" 'calendar-iso-goto-date)
1494 (define-key map "gw" 'calendar-iso-goto-week)
1495 (define-key map "gf" 'calendar-french-goto-date)
1496 (define-key map "gml" 'calendar-mayan-goto-long-count-date)
1497 (define-key map "gmpc" 'calendar-mayan-previous-round-date)
1498 (define-key map "gmnc" 'calendar-mayan-next-round-date)
1499 (define-key map "gmph" 'calendar-mayan-previous-haab-date)
1500 (define-key map "gmnh" 'calendar-mayan-next-haab-date)
1501 (define-key map "gmpt" 'calendar-mayan-previous-tzolkin-date)
1502 (define-key map "gmnt" 'calendar-mayan-next-tzolkin-date)
1503 (define-key map "Aa" 'appt-add)
1504 (define-key map "Ad" 'appt-delete)
1505 (define-key map "S" 'calendar-sunrise-sunset)
1506 (define-key map "M" 'calendar-lunar-phases)
1507 (define-key map " " 'scroll-other-window)
1508 (define-key map "\d" 'scroll-other-window-down)
1509 (define-key map "\C-c\C-l" 'calendar-redraw)
1510 (define-key map "." 'calendar-goto-today)
1511 (define-key map "o" 'calendar-other-month)
1512 (define-key map "q" 'calendar-exit)
1513 (define-key map "a" 'calendar-list-holidays)
1514 (define-key map "h" 'calendar-cursor-holidays)
1515 (define-key map "x" 'calendar-mark-holidays)
1516 (define-key map "u" 'calendar-unmark)
1517 (define-key map "m" 'diary-mark-entries)
1518 (define-key map "d" 'diary-view-entries)
1519 (define-key map "D" 'diary-view-other-diary-entries)
1520 (define-key map "s" 'diary-show-all-entries)
1521 (define-key map "pd" 'calendar-print-day-of-year)
1522 (define-key map "pC" 'calendar-chinese-print-date)
1523 (define-key map "pk" 'calendar-coptic-print-date)
1524 (define-key map "pe" 'calendar-ethiopic-print-date)
1525 (define-key map "pp" 'calendar-persian-print-date)
1526 (define-key map "pc" 'calendar-iso-print-date)
1527 (define-key map "pj" 'calendar-julian-print-date)
1528 (define-key map "pa" 'calendar-astro-print-day-number)
1529 (define-key map "ph" 'calendar-hebrew-print-date)
1530 (define-key map "pi" 'calendar-islamic-print-date)
1531 (define-key map "pb" 'calendar-bahai-print-date)
1532 (define-key map "pf" 'calendar-french-print-date)
1533 (define-key map "pm" 'calendar-mayan-print-date)
1534 (define-key map "po" 'calendar-print-other-dates)
1535 (define-key map "id" 'diary-insert-entry)
1536 (define-key map "iw" 'diary-insert-weekly-entry)
1537 (define-key map "im" 'diary-insert-monthly-entry)
1538 (define-key map "iy" 'diary-insert-yearly-entry)
1539 (define-key map "ia" 'diary-insert-anniversary-entry)
1540 (define-key map "ib" 'diary-insert-block-entry)
1541 (define-key map "ic" 'diary-insert-cyclic-entry)
1542 (define-key map "ihd" 'diary-hebrew-insert-entry)
1543 (define-key map "ihm" 'diary-hebrew-insert-monthly-entry)
1544 (define-key map "ihy" 'diary-hebrew-insert-yearly-entry)
1545 (define-key map "iid" 'diary-islamic-insert-entry)
1546 (define-key map "iim" 'diary-islamic-insert-monthly-entry)
1547 (define-key map "iiy" 'diary-islamic-insert-yearly-entry)
1548 (define-key map "iBd" 'diary-bahai-insert-entry)
1549 (define-key map "iBm" 'diary-bahai-insert-monthly-entry)
1550 (define-key map "iBy" 'diary-bahai-insert-yearly-entry)
1551 (define-key map "?" 'calendar-goto-info-node)
1552 (define-key map "Hm" 'cal-html-cursor-month)
1553 (define-key map "Hy" 'cal-html-cursor-year)
1554 (define-key map "tm" 'cal-tex-cursor-month)
1555 (define-key map "tM" 'cal-tex-cursor-month-landscape)
1556 (define-key map "td" 'cal-tex-cursor-day)
1557 (define-key map "tw1" 'cal-tex-cursor-week)
1558 (define-key map "tw2" 'cal-tex-cursor-week2)
1559 (define-key map "tw3" 'cal-tex-cursor-week-iso)
1560 (define-key map "tw4" 'cal-tex-cursor-week-monday)
1561 (define-key map "tfd" 'cal-tex-cursor-filofax-daily)
1562 (define-key map "tfw" 'cal-tex-cursor-filofax-2week)
1563 (define-key map "tfW" 'cal-tex-cursor-filofax-week)
1564 (define-key map "tfy" 'cal-tex-cursor-filofax-year)
1565 (define-key map "ty" 'cal-tex-cursor-year)
1566 (define-key map "tY" 'cal-tex-cursor-year-landscape)
1567
1568 (define-key map [menu-bar edit] 'undefined)
1569 (define-key map [menu-bar search] 'undefined)
1570
1571 (easy-menu-define nil map nil cal-menu-sunmoon-menu)
1572 (easy-menu-define nil map nil cal-menu-diary-menu)
1573 (easy-menu-define nil map nil cal-menu-holidays-menu)
1574 (easy-menu-define nil map nil cal-menu-goto-menu)
1575 (easy-menu-define nil map nil cal-menu-scroll-menu)
1576
1577 ;; These are referenced in the default calendar-date-echo-text.
1578 (define-key map [down-mouse-3]
1579 (easy-menu-binding cal-menu-context-mouse-menu))
1580 (define-key map [down-mouse-2]
1581 (easy-menu-binding cal-menu-global-mouse-menu))
1582
1583 map)
1584 "Keymap for `calendar-mode'.")
1585
1586 ;; Calendar mode is suitable only for specially formatted data.
1587 (put 'calendar-mode 'mode-class 'special)
1588
1589 (defun calendar-mode-line-entry (command echo &optional key string)
1590 "Return a propertized string for `calendar-mode-line-format'.
1591 COMMAND is a command to run, ECHO is the help-echo text, KEY
1592 is COMMAND's keybinding, STRING describes the binding."
1593 (propertize (or key
1594 (substitute-command-keys
1595 (format "\\<calendar-mode-map>\\[%s] %s" command string)))
1596 'help-echo (format "mouse-1: %s" echo)
1597 'mouse-face 'mode-line-highlight
1598 'keymap (make-mode-line-mouse-map 'mouse-1 command)))
1599
1600 ;; After calendar-mode-map.
1601 (defcustom calendar-mode-line-format
1602 (list
1603 (calendar-mode-line-entry 'calendar-scroll-right "previous month" "<")
1604 "Calendar"
1605 (concat
1606 (calendar-mode-line-entry 'calendar-goto-info-node "read Info on Calendar"
1607 nil "info")
1608 " / "
1609 (calendar-mode-line-entry 'calendar-other-month "choose another month"
1610 nil "other")
1611 " / "
1612 (calendar-mode-line-entry 'calendar-goto-today "go to today's date"
1613 nil "today"))
1614 '(calendar-date-string (calendar-current-date) t)
1615 (calendar-mode-line-entry 'calendar-scroll-left "next month" ">"))
1616 "The mode line of the calendar buffer.
1617 This is a list of items that evaluate to strings. The elements
1618 are evaluated and concatenated, evenly separated by blanks.
1619 During evaluation, the variable `date' is available as the date
1620 nearest the cursor (or today's date if that fails). To update
1621 the mode-line as the cursor moves, add `calendar-update-mode-line'
1622 to `calendar-move-hook'. Here is an example that has the Hebrew date,
1623 the day number/days remaining in the year, and the ISO week/year numbers:
1624
1625 (list
1626 \"\"
1627 '(calendar-hebrew-date-string date)
1628 '(let* ((year (calendar-extract-year date))
1629 (d (calendar-day-number date))
1630 (days-remaining
1631 (- (calendar-day-number (list 12 31 year)) d)))
1632 (format \"%d/%d\" d days-remaining))
1633 '(let* ((d (calendar-absolute-from-gregorian date))
1634 (iso-date (calendar-iso-from-absolute d)))
1635 (format \"ISO week %d of %d\"
1636 (calendar-extract-month iso-date)
1637 (calendar-extract-year iso-date)))
1638 \"\"))"
1639 :risky t
1640 :type 'sexp
1641 :group 'calendar)
1642
1643 (defun calendar-goto-info-node ()
1644 "Go to the info node for the calendar."
1645 (interactive)
1646 (info "(emacs)Calendar/Diary")
1647 (fit-window-to-buffer))
1648
1649 (defvar calendar-mark-ring nil
1650 "Used by `calendar-set-mark'.")
1651
1652 (define-derived-mode calendar-mode nil "Calendar"
1653 "A major mode for the calendar window.
1654 For a complete description, see the info node `Calendar/Diary'.
1655
1656 \\<calendar-mode-map>\\{calendar-mode-map}"
1657 (setq buffer-read-only t
1658 buffer-undo-list t
1659 indent-tabs-mode nil)
1660 (calendar-update-mode-line)
1661 (make-local-variable 'calendar-mark-ring)
1662 (make-local-variable 'displayed-month) ; month in middle of window
1663 (make-local-variable 'displayed-year) ; year in middle of window
1664 ;; Most functions only work if displayed-month and displayed-year are set,
1665 ;; so let's make sure they're always set. Most likely, this will be reset
1666 ;; soon in calendar-generate, but better safe than sorry.
1667 (unless (boundp 'displayed-month) (setq displayed-month 1))
1668 (unless (boundp 'displayed-year) (setq displayed-year 2001))
1669 (set (make-local-variable 'font-lock-defaults)
1670 '(calendar-font-lock-keywords t)))
1671
1672 (defun calendar-string-spread (strings char length)
1673 "Concatenate list of STRINGS separated with copies of CHAR to fill LENGTH.
1674 The effect is like mapconcat but the separating pieces are as balanced as
1675 possible. Each item of STRINGS is evaluated before concatenation so it can
1676 actually be an expression that evaluates to a string. If LENGTH is too short,
1677 the STRINGS are just concatenated and the result truncated."
1678 ;; The algorithm is based on equation (3.25) on page 85 of Concrete
1679 ;; Mathematics by Ronald L. Graham, Donald E. Knuth, and Oren Patashnik,
1680 ;; Addison-Wesley, Reading, MA, 1989.
1681 (let* ((strings (mapcar 'eval
1682 (if (< (length strings) 2)
1683 (append (list "") strings (list ""))
1684 strings)))
1685 (n (- length (length (apply 'concat strings))))
1686 (m (1- (length strings)))
1687 (s (car strings))
1688 (strings (cdr strings))
1689 (i 0))
1690 (dolist (string strings)
1691 (setq s (concat s
1692 (make-string (max 0 (/ (+ n i) m)) char)
1693 string)
1694 i (1+ i)))
1695 (substring s 0 length)))
1696
1697 (defun calendar-update-mode-line ()
1698 "Update the calendar mode line with the current date and date style."
1699 (if (bufferp (get-buffer calendar-buffer))
1700 (with-current-buffer calendar-buffer
1701 (let ((start (- calendar-left-margin 2))
1702 (date (condition-case nil
1703 (calendar-cursor-to-nearest-date)
1704 (error (calendar-current-date)))))
1705 (setq mode-line-format
1706 (concat (make-string (max 0 (+ start
1707 (- (car (window-inside-edges))
1708 (car (window-edges))))) ?\s)
1709 (calendar-string-spread
1710 (mapcar 'eval calendar-mode-line-format)
1711 ?\s (- calendar-right-margin (1- start))))))
1712 (force-mode-line-update))))
1713
1714 (defun calendar-window-list ()
1715 "List of all calendar-related windows."
1716 (let ((calendar-buffers (calendar-buffer-list))
1717 list)
1718 (walk-windows (lambda (w)
1719 (if (memq (window-buffer w) calendar-buffers)
1720 (push w list)))
1721 nil t)
1722 list))
1723
1724 (defun calendar-buffer-list ()
1725 "List of all calendar-related buffers (as buffers, not strings)."
1726 (let (buffs)
1727 (dolist (b (list calendar-hebrew-yahrzeit-buffer lunar-phases-buffer
1728 holiday-buffer diary-fancy-buffer solar-sunrises-buffer
1729 (get-file-buffer diary-file)
1730 calendar-buffer calendar-other-calendars-buffer))
1731 (and b (setq b (get-buffer b))
1732 (push b buffs)))
1733 buffs))
1734
1735 (defun calendar-exit ()
1736 "Get out of the calendar window and hide it and related buffers."
1737 (interactive)
1738 (let ((diary-buffer (get-file-buffer diary-file)))
1739 (if (or (not diary-buffer)
1740 (not (buffer-modified-p diary-buffer))
1741 (yes-or-no-p
1742 "Diary modified; do you really want to exit the calendar? "))
1743 ;; Need to do this multiple times because one time can replace some
1744 ;; calendar-related buffers with other calendar-related buffers.
1745 (mapc (lambda (x)
1746 (mapc 'calendar-hide-window (calendar-window-list)))
1747 (calendar-window-list)))))
1748
1749 (define-obsolete-function-alias 'exit-calendar 'calendar-exit "23.1")
1750
1751 (defun calendar-hide-window (window)
1752 "Hide WINDOW if it is calendar-related."
1753 (let ((buffer (if (window-live-p window) (window-buffer window))))
1754 (if (memq buffer (calendar-buffer-list))
1755 (cond
1756 ((and (display-multi-frame-p)
1757 (eq 'icon (cdr (assoc 'visibility
1758 (frame-parameters
1759 (window-frame window))))))
1760 nil)
1761 ((and (display-multi-frame-p) (window-dedicated-p window))
1762 (if calendar-remove-frame-by-deleting
1763 (delete-frame (window-frame window))
1764 (iconify-frame (window-frame window))))
1765 ((not (and (select-window window) (one-window-p window)))
1766 (delete-window window))
1767 (t (set-buffer buffer)
1768 (bury-buffer))))))
1769
1770 (defun calendar-current-date ()
1771 "Return the current date in a list (month day year)."
1772 (let ((now (decode-time)))
1773 (list (nth 4 now) (nth 3 now) (nth 5 now))))
1774
1775 (defun calendar-column-to-segment ()
1776 "Convert current column to calendar month \"segment\".
1777 The left-most month returns 0, the next right 1, and so on."
1778 (let ((col (max 0 (+ (current-column)
1779 (/ calendar-intermonth-spacing 2)
1780 (- calendar-left-margin)))))
1781 (/ col (+ (* 7 calendar-column-width) calendar-intermonth-spacing))))
1782
1783 (defun calendar-cursor-to-date (&optional error event)
1784 "Return a list (month day year) of current cursor position.
1785 If cursor is not on a specific date, signals an error if optional parameter
1786 ERROR is non-nil, otherwise just returns nil.
1787 If EVENT is non-nil, it's an event indicating the buffer position to
1788 use instead of point."
1789 (with-current-buffer
1790 (if event (window-buffer (posn-window (event-start event)))
1791 (current-buffer))
1792 (save-excursion
1793 (and event (setq event (event-start event))
1794 (goto-char (posn-point event)))
1795 (let* ((segment (calendar-column-to-segment))
1796 (month (% (+ displayed-month (1- segment)) 12)))
1797 ;; Call with point on either of the two digits in a 2-digit date,
1798 ;; or on or before the digit of a 1-digit date.
1799 (if (not (and (looking-at "[ 0-9]?[0-9][^0-9]")
1800 (get-text-property (point) 'date)))
1801 (if error (error "Not on a date!"))
1802 ;; Convert segment to real month and year.
1803 (if (zerop month) (setq month 12))
1804 ;; Go back to before the first date digit.
1805 (or (looking-at " ")
1806 (re-search-backward "[^0-9]"))
1807 (list month
1808 (string-to-number
1809 (buffer-substring (1+ (point))
1810 (+ 1 calendar-day-digit-width (point))))
1811 (cond
1812 ((and (= 12 month) (zerop segment)) (1- displayed-year))
1813 ((and (= 1 month) (= segment 2)) (1+ displayed-year))
1814 (t displayed-year))))))))
1815
1816 (add-to-list 'debug-ignored-errors "Not on a date!")
1817
1818 ;; The following version of calendar-gregorian-from-absolute is preferred for
1819 ;; reasons of clarity, BUT it's much slower than the version that follows it.
1820
1821 ;;(defun calendar-gregorian-from-absolute (date)
1822 ;; "Compute the list (month day year) corresponding to the absolute DATE.
1823 ;;The absolute date is the number of days elapsed since the (imaginary)
1824 ;;Gregorian date Sunday, December 31, 1 BC."
1825 ;; (let* ((approx (/ date 366)) ; approximation from below
1826 ;; (year ; search forward from the approximation
1827 ;; (+ approx
1828 ;; (calendar-sum y approx
1829 ;; (>= date (calendar-absolute-from-gregorian (list 1 1 (1+ y))))
1830 ;; 1)))
1831 ;; (month ; search forward from January
1832 ;; (1+ (calendar-sum m 1
1833 ;; (> date
1834 ;; (calendar-absolute-from-gregorian
1835 ;; (list m (calendar-last-day-of-month m year) year)))
1836 ;; 1)))
1837 ;; (day ; calculate the day by subtraction
1838 ;; (- date
1839 ;; (1- (calendar-absolute-from-gregorian (list month 1 year))))))
1840 ;; (list month day year)))
1841
1842 (defun calendar-gregorian-from-absolute (date)
1843 "Compute the list (month day year) corresponding to the absolute DATE.
1844 The absolute date is the number of days elapsed since the (imaginary)
1845 Gregorian date Sunday, December 31, 1 BC. This function does not
1846 handle dates in years BC."
1847 ;; See the footnote on page 384 of ``Calendrical Calculations, Part II:
1848 ;; Three Historical Calendars'' by E. M. Reingold, N. Dershowitz, and S. M.
1849 ;; Clamen, Software--Practice and Experience, Volume 23, Number 4
1850 ;; (April, 1993), pages 383-404 for an explanation.
1851 (let* ((d0 (1- date))
1852 (n400 (/ d0 146097))
1853 (d1 (% d0 146097))
1854 (n100 (/ d1 36524))
1855 (d2 (% d1 36524))
1856 (n4 (/ d2 1461))
1857 (d3 (% d2 1461))
1858 (n1 (/ d3 365))
1859 (day (1+ (% d3 365)))
1860 (year (+ (* 400 n400) (* 100 n100) (* n4 4) n1))
1861 (month 1)
1862 mdays)
1863 (if (or (= n100 4) (= n1 4))
1864 (list 12 31 year)
1865 (setq year (1+ year))
1866 (while (< (setq mdays (calendar-last-day-of-month month year)) day)
1867 (setq day (- day mdays)
1868 month (1+ month)))
1869 (list month day year))))
1870
1871 (defun calendar-other-month (month year &optional event)
1872 "Display a three-month calendar centered around MONTH and YEAR.
1873 EVENT is an event like `last-nonmenu-event'."
1874 (interactive (let ((event (list last-nonmenu-event)))
1875 (append (calendar-read-date 'noday) event)))
1876 (save-selected-window
1877 (and event
1878 (setq event (event-start event))
1879 (select-window (posn-window event)))
1880 (unless (and (= month displayed-month)
1881 (= year displayed-year))
1882 (let ((old-date (calendar-cursor-to-date))
1883 (today (calendar-current-date)))
1884 (calendar-generate-window month year)
1885 (calendar-cursor-to-visible-date
1886 (cond
1887 ((calendar-date-is-visible-p old-date) old-date)
1888 ((calendar-date-is-visible-p today) today)
1889 (t (list month 1 year))))))))
1890
1891 (defun calendar-set-mark (arg &optional event)
1892 "Mark the date under the cursor, or jump to marked date.
1893 With no prefix argument, push current date onto marked date ring.
1894 With argument ARG, jump to mark, pop it, and put point at end of ring."
1895 (interactive
1896 (list current-prefix-arg last-nonmenu-event))
1897 (let ((date (calendar-cursor-to-date t event)))
1898 (if arg
1899 (if (null calendar-mark-ring)
1900 (error "No mark set in this buffer")
1901 (calendar-goto-date (car calendar-mark-ring))
1902 (setq calendar-mark-ring
1903 (cdr (nconc calendar-mark-ring (list date)))))
1904 (push date calendar-mark-ring)
1905 ;; Since the top of the mark ring is the marked date in the
1906 ;; calendar, the mark ring in the calendar is one longer than
1907 ;; in other buffers to get the same effect.
1908 (if (> (length calendar-mark-ring) (1+ mark-ring-max))
1909 (setcdr (nthcdr mark-ring-max calendar-mark-ring) nil))
1910 (message "Mark set"))))
1911
1912 (defun calendar-exchange-point-and-mark ()
1913 "Exchange the current cursor position with the marked date."
1914 (interactive)
1915 (let ((mark (car calendar-mark-ring))
1916 (date (calendar-cursor-to-date t)))
1917 (if (null mark)
1918 (error "No mark set in this buffer")
1919 (setq calendar-mark-ring (cons date (cdr calendar-mark-ring)))
1920 (calendar-goto-date mark))))
1921
1922 (defun calendar-count-days-region ()
1923 "Count the number of days (inclusive) between point and the mark."
1924 (interactive)
1925 (let* ((days (- (calendar-absolute-from-gregorian
1926 (calendar-cursor-to-date t))
1927 (calendar-absolute-from-gregorian
1928 (or (car calendar-mark-ring)
1929 (error "No mark set in this buffer")))))
1930 (days (1+ (if (> days 0) days (- days)))))
1931 (message "Region has %d day%s (inclusive)"
1932 days (if (> days 1) "s" ""))))
1933
1934 (defun calendar-not-implemented ()
1935 "Not implemented."
1936 (interactive)
1937 (error "%s not available in the calendar"
1938 (global-key-binding (this-command-keys))))
1939
1940 (defun calendar-read (prompt acceptable &optional initial-contents)
1941 "Return an object read from the minibuffer.
1942 Prompt with the string PROMPT and use the function ACCEPTABLE to decide if
1943 entered item is acceptable. If non-nil, optional third arg INITIAL-CONTENTS
1944 is a string to insert in the minibuffer before reading."
1945 (let ((value (read-minibuffer prompt initial-contents)))
1946 (while (not (funcall acceptable value))
1947 (setq value (read-minibuffer prompt initial-contents)))
1948 value))
1949
1950
1951 (defvar calendar-abbrev-length 3
1952 "*Length of abbreviations to be used for day and month names.
1953 See also `calendar-day-abbrev-array' and `calendar-month-abbrev-array'.")
1954
1955 ;; FIXME does it have to start from Sunday?
1956 (defcustom calendar-day-name-array
1957 ["Sunday" "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday"]
1958 "Array of capitalized strings giving, in order, the day names.
1959 The first two characters of each string will be used to head the
1960 day columns in the calendar. See also the variable
1961 `calendar-day-abbrev-array'."
1962 :group 'calendar
1963 :type '(vector (string :tag "Sunday")
1964 (string :tag "Monday")
1965 (string :tag "Tuesday")
1966 (string :tag "Wednesday")
1967 (string :tag "Thursday")
1968 (string :tag "Friday")
1969 (string :tag "Saturday")))
1970
1971 (defvar calendar-day-abbrev-array
1972 [nil nil nil nil nil nil nil]
1973 "*Array of capitalized strings giving the abbreviated day names.
1974 The order should be the same as that of the full names specified
1975 in `calendar-day-name-array'. These abbreviations may be used
1976 instead of the full names in the diary file. Do not include a
1977 trailing `.' in the strings specified in this variable, though
1978 you may use such in the diary file. If any element of this array
1979 is nil, then the abbreviation will be constructed as the first
1980 `calendar-abbrev-length' characters of the corresponding full name.")
1981
1982 (defcustom calendar-month-name-array
1983 ["January" "February" "March" "April" "May" "June"
1984 "July" "August" "September" "October" "November" "December"]
1985 "Array of capitalized strings giving, in order, the month names.
1986 See also the variable `calendar-month-abbrev-array'."
1987 :group 'calendar
1988 :type '(vector (string :tag "January")
1989 (string :tag "February")
1990 (string :tag "March")
1991 (string :tag "April")
1992 (string :tag "May")
1993 (string :tag "June")
1994 (string :tag "July")
1995 (string :tag "August")
1996 (string :tag "September")
1997 (string :tag "October")
1998 (string :tag "November")
1999 (string :tag "December")))
2000
2001 (defvar calendar-month-abbrev-array
2002 [nil nil nil nil nil nil nil nil nil nil nil nil]
2003 "*Array of capitalized strings giving the abbreviated month names.
2004 The order should be the same as that of the full names specified
2005 in `calendar-month-name-array'. These abbreviations are used in
2006 the calendar menu entries, and can also be used in the diary
2007 file. Do not include a trailing `.' in the strings specified in
2008 this variable, though you may use such in the diary file. If any
2009 element of this array is nil, then the abbreviation will be
2010 constructed as the first `calendar-abbrev-length' characters of the
2011 corresponding full name.")
2012
2013 (defun calendar-make-alist (sequence &optional start-index filter abbrevs)
2014 "Make an assoc list corresponding to SEQUENCE.
2015 Each element of sequence will be associated with an integer, starting
2016 from 1, or from START-INDEX if that is non-nil. If a sequence ABBREVS
2017 is supplied, the function `calendar-abbrev-construct' is used to
2018 construct abbreviations corresponding to the elements in SEQUENCE.
2019 Each abbreviation is entered into the alist with the same
2020 association index as the full name it represents.
2021 If FILTER is provided, apply it to each key in the alist."
2022 (let ((index 0)
2023 (offset (or start-index 1))
2024 (aseq (if abbrevs (calendar-abbrev-construct abbrevs sequence)))
2025 (aseqp (if abbrevs (calendar-abbrev-construct abbrevs sequence
2026 'period)))
2027 alist elem)
2028 (dotimes (i (length sequence) (reverse alist))
2029 (setq index (+ i offset)
2030 elem (elt sequence i)
2031 alist
2032 (cons (cons (if filter (funcall filter elem) elem) index) alist))
2033 (if aseq
2034 (setq elem (elt aseq i)
2035 alist (cons (cons (if filter (funcall filter elem) elem)
2036 index) alist)))
2037 (if aseqp
2038 (setq elem (elt aseqp i)
2039 alist (cons (cons (if filter (funcall filter elem) elem)
2040 index) alist))))))
2041
2042 (defun calendar-read-date (&optional noday)
2043 "Prompt for Gregorian date. Return a list (month day year).
2044 If optional NODAY is t, does not ask for day, but just returns
2045 \(month 1 year); if NODAY is any other non-nil value the value returned is
2046 \(month year)"
2047 (let* ((year (calendar-read
2048 "Year (>0): "
2049 (lambda (x) (> x 0))
2050 (number-to-string (calendar-extract-year
2051 (calendar-current-date)))))
2052 (month-array calendar-month-name-array)
2053 (completion-ignore-case t)
2054 (month (cdr (assoc-string
2055 (completing-read
2056 "Month name: "
2057 (mapcar 'list (append month-array nil))
2058 nil t)
2059 (calendar-make-alist month-array 1) t)))
2060 (last (calendar-last-day-of-month month year)))
2061 (if noday
2062 (if (eq noday t)
2063 (list month 1 year)
2064 (list month year))
2065 (list month
2066 (calendar-read (format "Day (1-%d): " last)
2067 (lambda (x) (and (< 0 x) (<= x last))))
2068 year))))
2069
2070 (defun calendar-interval (mon1 yr1 mon2 yr2)
2071 "The number of months difference between MON1, YR1 and MON2, YR2.
2072 The result is positive if the second date is later than the first.
2073 Negative years are interpreted as years BC; -1 being 1 BC, and so on."
2074 (if (< yr1 0) (setq yr1 (1+ yr1))) ; -1 BC -> 0 AD, etc
2075 (if (< yr2 0) (setq yr2 (1+ yr2)))
2076 (+ (* 12 (- yr2 yr1))
2077 (- mon2 mon1)))
2078
2079 (defun calendar-abbrev-construct (abbrev full &optional period)
2080 "Internal calendar function to return a complete abbreviation array.
2081 ABBREV is an array of abbreviations, FULL the corresponding array
2082 of full names. The return value is the ABBREV array, with any nil
2083 elements replaced by the first three characters taken from the
2084 corresponding element of FULL. If optional argument PERIOD is non-nil,
2085 each element returned has a final `.' character."
2086 (let (elem array name)
2087 (dotimes (i (length full))
2088 (setq name (aref full i)
2089 elem (or (aref abbrev i)
2090 (substring name 0
2091 (min calendar-abbrev-length (length name))))
2092 elem (format "%s%s" elem (if period "." ""))
2093 array (append array (list elem))))
2094 (vconcat array)))
2095
2096 (defvar calendar-font-lock-keywords
2097 `((,(concat (regexp-opt (mapcar 'identity calendar-month-name-array) t)
2098 " -?[0-9]+")
2099 . font-lock-function-name-face) ; month and year
2100 (,(regexp-opt
2101 (list (substring (aref calendar-day-name-array 6)
2102 0 calendar-day-header-width)
2103 (substring (aref calendar-day-name-array 0)
2104 0 calendar-day-header-width)))
2105 ;; Saturdays and Sundays are highlighted differently.
2106 . font-lock-comment-face)
2107 ;; First two chars of each day are used in the calendar.
2108 (,(regexp-opt (mapcar (lambda (x) (substring x 0 calendar-day-header-width))
2109 calendar-day-name-array))
2110 . font-lock-reference-face))
2111 "Default keywords to highlight in Calendar mode.")
2112
2113 (defun calendar-day-name (date &optional abbrev absolute)
2114 "Return a string with the name of the day of the week of DATE.
2115 DATE should be a list in the format (MONTH DAY YEAR), unless the
2116 optional argument ABSOLUTE is non-nil, in which case DATE should
2117 be an integer in the range 0 to 6 corresponding to the day of the
2118 week. Day names are taken from the variable `calendar-day-name-array',
2119 unless the optional argument ABBREV is non-nil, in which case
2120 the variable `calendar-day-abbrev-array' is used."
2121 (aref (if abbrev
2122 (calendar-abbrev-construct calendar-day-abbrev-array
2123 calendar-day-name-array)
2124 calendar-day-name-array)
2125 (if absolute date (calendar-day-of-week date))))
2126
2127 (defun calendar-month-name (month &optional abbrev)
2128 "Return a string with the name of month number MONTH.
2129 Months are numbered from one. Month names are taken from the
2130 variable `calendar-month-name-array', unless the optional
2131 argument ABBREV is non-nil, in which case
2132 `calendar-month-abbrev-array' is used."
2133 (aref (if abbrev
2134 (calendar-abbrev-construct calendar-month-abbrev-array
2135 calendar-month-name-array)
2136 calendar-month-name-array)
2137 (1- month)))
2138
2139 (defun calendar-day-of-week (date)
2140 "Return the day-of-the-week index of DATE, 0 for Sunday, 1 for Monday, etc.
2141 DATE is a list of the form (month day year). A negative year is
2142 interpreted as BC; -1 being 1 BC, and so on."
2143 (mod (calendar-absolute-from-gregorian date) 7))
2144
2145 (defun calendar-unmark ()
2146 "Delete all diary/holiday marks/highlighting from the calendar."
2147 (interactive)
2148 (setq calendar-mark-holidays-flag nil
2149 calendar-mark-diary-entries-flag nil)
2150 (with-current-buffer calendar-buffer
2151 (mapc 'delete-overlay (overlays-in (point-min) (point-max)))))
2152
2153 (defun calendar-date-is-visible-p (date)
2154 "Return non-nil if DATE is valid and is visible in the calendar window."
2155 (and (calendar-date-is-valid-p date)
2156 (< (abs (calendar-interval
2157 displayed-month displayed-year
2158 (calendar-extract-month date) (calendar-extract-year date)))
2159 2)))
2160
2161 ;; FIXME can this be generalized for holiday-chinese?
2162 (defun calendar-nongregorian-visible-p (month day toabs fromabs switch)
2163 "Return non-nil if MONTH, DAY is visible in the calendar window.
2164 MONTH and DAY are in some non-Gregorian calendar system. The
2165 functions TOABS and FROMABS convert that system to and from
2166 absolute, respectively. SWITCH is a function that takes a single
2167 argument (a local month number). It applies when the local year
2168 changes across the calendar window, and returns non-nil if the
2169 specified month should be associated with the higher year.
2170 Returns the corresponding Gregorian date."
2171 ;; We need to choose the local year associated with month and day
2172 ;; that might make them visible.
2173 (let* ((m1 displayed-month)
2174 (y1 displayed-year)
2175 (m2 displayed-month)
2176 (y2 displayed-year)
2177 ;; Absolute date of first/last dates in calendar window.
2178 (start-date (progn
2179 (calendar-increment-month m1 y1 -1)
2180 (calendar-absolute-from-gregorian (list m1 1 y1))))
2181 (end-date (progn
2182 (calendar-increment-month m2 y2 1)
2183 (calendar-absolute-from-gregorian
2184 (list m2 (calendar-last-day-of-month m2 y2) y2))))
2185 ;; Local date of first/last date in calendar window.
2186 (local-start (funcall fromabs start-date))
2187 (local-end (funcall fromabs end-date))
2188 ;; Local year of first/last dates.
2189 ;; Can only differ if displayed-month = 12, 1, 2.
2190 (local-y1 (calendar-extract-year local-start))
2191 (local-y2 (calendar-extract-year local-end))
2192 ;; Choose which year might be visible in the window.
2193 ;; Obviously it only matters when y1 and y2 differ, ie
2194 ;; when the _local_ new year is visible.
2195 (year (if (funcall switch month) local-y2 local-y1))
2196 (date (calendar-gregorian-from-absolute
2197 (funcall toabs (list month day year)))))
2198 (if (calendar-date-is-visible-p date)
2199 date)))
2200
2201 (defun calendar-date-is-valid-p (date)
2202 "Return t if DATE is a valid date."
2203 (let ((month (calendar-extract-month date))
2204 (day (calendar-extract-day date))
2205 (year (calendar-extract-year date)))
2206 (and (<= 1 month) (<= month 12)
2207 ;; (calendar-read-date t) used to return a date with day = nil.
2208 ;; Should not be valid (?), since many funcs prob assume integer.
2209 ;; (calendar-read-date 'noday) returns (month year), which
2210 ;; currently results in calendar-extract-year returning nil.
2211 day year (<= 1 day) (<= day (calendar-last-day-of-month month year))
2212 ;; BC dates left as non-valid, to suppress errors from
2213 ;; complex holiday algorithms not suitable for years BC.
2214 ;; Note there are side effects on calendar navigation.
2215 (<= 1 year))))
2216
2217 (define-obsolete-function-alias 'calendar-date-is-legal-p
2218 'calendar-date-is-valid-p "23.1")
2219
2220 (defun calendar-date-equal (date1 date2)
2221 "Return t if the DATE1 and DATE2 are the same."
2222 (and
2223 (= (calendar-extract-month date1) (calendar-extract-month date2))
2224 (= (calendar-extract-day date1) (calendar-extract-day date2))
2225 (= (calendar-extract-year date1) (calendar-extract-year date2))))
2226
2227 (defun calendar-make-temp-face (attrlist)
2228 "Return a temporary face based on the attributes in ATTRLIST.
2229 ATTRLIST is a list with elements of the form :face face :foreground color."
2230 (let ((attrs attrlist)
2231 faceinfo face temp-face)
2232 ;; Separate :face from the other attributes. Use the last :face
2233 ;; if there are more than one. FIXME is merging meaningful?
2234 (while attrs
2235 (if (eq (car attrs) :face)
2236 (setq face (intern-soft (cadr attrs))
2237 attrs (cddr attrs))
2238 (push (car attrs) faceinfo)
2239 (setq attrs (cdr attrs))))
2240 (or (facep face) (setq face 'default))
2241 (if (not faceinfo)
2242 ;; No attributes to apply, so just use an existing-face.
2243 face
2244 ;; FIXME should we be using numbered temp-faces, re-using where poss?
2245 (setq temp-face
2246 (make-symbol
2247 (concat ":caltemp"
2248 (mapconcat (lambda (sym)
2249 (cond
2250 ((symbolp sym) (symbol-name sym))
2251 ((numberp sym) (number-to-string sym))
2252 (t sym)))
2253 attrlist ""))))
2254 (make-face temp-face)
2255 (copy-face face temp-face)
2256 ;; Apply the font aspects.
2257 (apply 'set-face-attribute temp-face nil (nreverse faceinfo))
2258 temp-face)))
2259
2260 (defun calendar-mark-visible-date (date &optional mark)
2261 "Mark DATE in the calendar window with MARK.
2262 MARK is a single-character string, a list of face attributes/values, or a face.
2263 MARK defaults to `diary-entry-marker'."
2264 (if (calendar-date-is-valid-p date)
2265 (with-current-buffer calendar-buffer
2266 (save-excursion
2267 (calendar-cursor-to-visible-date date)
2268 (setq mark
2269 (or (and (stringp mark) (= (length mark) 1) mark) ; single-char
2270 (and font-lock-mode
2271 (or
2272 (and (listp mark) (> (length mark) 0) mark) ; attrs
2273 (and (facep mark) mark))) ; face-name
2274 diary-entry-marker))
2275 (cond
2276 ;; Face or an attr-list that contained a face.
2277 ((facep mark)
2278 (overlay-put
2279 (make-overlay (1- (point)) (1+ (point))) 'face mark))
2280 ;; Single-character mark, goes after the date.
2281 ((and (stringp mark) (= (length mark) 1))
2282 (overlay-put
2283 (make-overlay (1+ (point)) (+ 2 (point))) 'display mark))
2284 (t ; attr list
2285 (overlay-put
2286 (make-overlay (1- (point)) (1+ (point))) 'face
2287 (calendar-make-temp-face mark))))))))
2288
2289 (define-obsolete-function-alias 'mark-visible-calendar-date
2290 'calendar-mark-visible-date "23.1")
2291
2292 (defun calendar-star-date ()
2293 "Replace the date under the cursor in the calendar window with asterisks.
2294 You might want to add this function to `calendar-today-visible-hook'."
2295 (unless (catch 'found
2296 (dolist (ol (overlays-at (point)))
2297 (and (overlay-get ol 'calendar-star)
2298 (throw 'found t))))
2299 (let ((ol (make-overlay (1- (point)) (point))))
2300 (overlay-put ol 'display "*")
2301 (overlay-put ol 'calendar-star t)
2302 ;; Use copy-sequence to avoid merging of identical 'display props.
2303 ;; Use two overlays so as not to mess up
2304 ;; calendar-cursor-to-nearest-date (and calendar-forward-day).
2305 (overlay-put (setq ol (make-overlay (point) (1+ (point))))
2306 'display (copy-sequence "*"))
2307 (overlay-put ol 'calendar-star t))))
2308
2309 (defun calendar-mark-today ()
2310 "Mark the date under the cursor in the calendar window.
2311 The date is marked with `calendar-today-marker'. You might want to add
2312 this function to `calendar-today-visible-hook'."
2313 (calendar-mark-visible-date (calendar-cursor-to-date) calendar-today-marker))
2314
2315 (defun calendar-date-compare (date1 date2)
2316 "Return t if DATE1 is before DATE2, nil otherwise.
2317 The actual dates are in the car of DATE1 and DATE2."
2318 (< (calendar-absolute-from-gregorian (car date1))
2319 (calendar-absolute-from-gregorian (car date2))))
2320
2321 (defun calendar-date-string (date &optional abbreviate nodayname)
2322 "A string form of DATE, driven by the variable `calendar-date-display-form'.
2323 An optional parameter ABBREVIATE, when non-nil, causes the month
2324 and day names to be abbreviated as specified by
2325 `calendar-month-abbrev-array' and `calendar-day-abbrev-array',
2326 respectively. An optional parameter NODAYNAME, when t, omits the
2327 name of the day of the week."
2328 (let* ((dayname (unless nodayname (calendar-day-name date abbreviate)))
2329 (month (calendar-extract-month date))
2330 (monthname (calendar-month-name month abbreviate))
2331 (day (number-to-string (calendar-extract-day date)))
2332 (month (number-to-string month))
2333 (year (number-to-string (calendar-extract-year date))))
2334 (mapconcat 'eval calendar-date-display-form "")))
2335
2336 (defun calendar-dayname-on-or-before (dayname date)
2337 "Return the absolute date of the DAYNAME on or before absolute DATE.
2338 DAYNAME=0 means Sunday, DAYNAME=1 means Monday, and so on.
2339
2340 Note: Applying this function to d+6 gives us the DAYNAME on or after an
2341 absolute day d. Similarly, applying it to d+3 gives the DAYNAME nearest to
2342 absolute date d, applying it to d-1 gives the DAYNAME previous to absolute
2343 date d, and applying it to d+7 gives the DAYNAME following absolute date d."
2344 (- date (% (- date dayname) 7)))
2345
2346 (defun calendar-nth-named-absday (n dayname month year &optional day)
2347 "Absolute date of the Nth DAYNAME after/before MONTH YEAR DAY.
2348 A DAYNAME of 0 means Sunday, 1 means Monday, and so on.
2349 If N>0, return the Nth DAYNAME after MONTH DAY, YEAR (inclusive).
2350 If N<0, return the Nth DAYNAME before MONTH DAY, YEAR (inclusive).
2351 DAY defaults to 1 if N>0, and MONTH's last day otherwise."
2352 (if (> n 0)
2353 (+ (* 7 (1- n))
2354 (calendar-dayname-on-or-before
2355 dayname
2356 (+ 6 (calendar-absolute-from-gregorian
2357 (list month (or day 1) year)))))
2358 (+ (* 7 (1+ n))
2359 (calendar-dayname-on-or-before
2360 dayname
2361 (calendar-absolute-from-gregorian
2362 (list month
2363 (or day (calendar-last-day-of-month month year))
2364 year))))))
2365
2366 (defun calendar-nth-named-day (n dayname month year &optional day)
2367 "Date of the Nth DAYNAME after/before MONTH YEAR DAY.
2368 Like `calendar-nth-named-absday', but returns a Gregorian date."
2369 (calendar-gregorian-from-absolute
2370 (calendar-nth-named-absday n dayname month year day)))
2371
2372 (defun calendar-day-of-year-string (&optional date)
2373 "String of day number of year of Gregorian DATE.
2374 Defaults to today's date if DATE is not given."
2375 (let* ((d (or date (calendar-current-date)))
2376 (year (calendar-extract-year d))
2377 (day (calendar-day-number d))
2378 (days-remaining (- (calendar-day-number (list 12 31 year)) day)))
2379 (format "Day %d of %d; %d day%s remaining in the year"
2380 day year days-remaining (if (= days-remaining 1) "" "s"))))
2381
2382 (defun calendar-other-dates (date)
2383 "Return a list of strings giving Gregorian DATE in other calendars.
2384 DATE is (month day year). Calendars that do not apply are omitted."
2385 (let (odate)
2386 (delq nil
2387 (list
2388 (calendar-day-of-year-string date)
2389 (format "ISO date: %s" (calendar-iso-date-string date))
2390 (format "Julian date: %s"
2391 (calendar-julian-date-string date))
2392 (format "Astronomical (Julian) day number (at noon UTC): %s.0"
2393 (calendar-astro-date-string date))
2394 (format "Fixed (RD) date: %s"
2395 (calendar-absolute-from-gregorian date))
2396 (format "Hebrew date (before sunset): %s"
2397 (calendar-hebrew-date-string date))
2398 (format "Persian date: %s"
2399 (calendar-persian-date-string date))
2400 (unless (string-equal
2401 (setq odate (calendar-islamic-date-string date))
2402 "")
2403 (format "Islamic date (before sunset): %s" odate))
2404 (unless (string-equal
2405 (setq odate (calendar-bahai-date-string date))
2406 "")
2407 (format "Baha'i date: %s" odate))
2408 (format "Chinese date: %s"
2409 (calendar-chinese-date-string date))
2410 (unless (string-equal
2411 (setq odate (calendar-coptic-date-string date))
2412 "")
2413 (format "Coptic date: %s" odate))
2414 (unless (string-equal
2415 (setq odate (calendar-ethiopic-date-string date))
2416 "")
2417 (format "Ethiopic date: %s" odate))
2418 (unless (string-equal
2419 (setq odate (calendar-french-date-string date))
2420 "")
2421 (format "French Revolutionary date: %s" odate))
2422 (format "Mayan date: %s"
2423 (calendar-mayan-date-string date))))))
2424
2425 (declare-function x-popup-menu "xmenu.c" (position menu))
2426
2427 (defun calendar-print-other-dates (&optional event)
2428 "Show dates on other calendars for date under the cursor.
2429 If called by a mouse-event, pops up a menu with the result."
2430 (interactive (list last-nonmenu-event))
2431 (let* ((date (calendar-cursor-to-date t event))
2432 (title (format "%s (Gregorian)" (calendar-date-string date)))
2433 (others (calendar-other-dates date))
2434 selection)
2435 (if (mouse-event-p event)
2436 (and (setq selection (cal-menu-x-popup-menu event title
2437 (mapcar 'list others)))
2438 (call-interactively selection))
2439 (calendar-in-read-only-buffer calendar-other-calendars-buffer
2440 (calendar-set-mode-line title)
2441 (insert (mapconcat 'identity others "\n"))))))
2442
2443 (defun calendar-print-day-of-year ()
2444 "Show day number in year/days remaining in year for date under the cursor."
2445 (interactive)
2446 (message "%s" (calendar-day-of-year-string (calendar-cursor-to-date t))))
2447
2448 (defun calendar-set-mode-line (str)
2449 "Set mode line to STR, centered, surrounded by dashes."
2450 (let* ((edges (window-edges))
2451 ;; As per doc of window-width, total visible mode-line length.
2452 (width (- (nth 2 edges) (car edges))))
2453 (setq mode-line-format
2454 (if buffer-file-name
2455 `("-" mode-line-modified
2456 ,(calendar-string-spread (list str) ?- (- width 6))
2457 "---")
2458 (calendar-string-spread (list str) ?- width)))))
2459
2460 (defun calendar-version ()
2461 "Display the Calendar version."
2462 (interactive)
2463 (message "GNU Emacs %s" emacs-version))
2464
2465 (make-obsolete 'calendar-version 'emacs-version "23.1")
2466
2467
2468 (run-hooks 'calendar-load-hook)
2469
2470 (provide 'calendar)
2471
2472 ;; Local variables:
2473 ;; byte-compile-dynamic: t
2474 ;; End:
2475
2476 ;; arch-tag: 19c61596-c8fb-4c69-bcf1-7dd739919cd8
2477 ;;; calendar.el ends here