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