(appt-check): Use diary-display-function rather than diary-display-hook.
[bpt/emacs.git] / lisp / calendar / cal-x.el
1 ;;; cal-x.el --- calendar windows in dedicated frames
2
3 ;; Copyright (C) 1994, 1995, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 ;; 2008 Free Software Foundation, Inc.
5
6 ;; Author: Michael Kifer <kifer@cs.sunysb.edu>
7 ;; Edward M. Reingold <reingold@cs.uiuc.edu>
8 ;; Maintainer: Glenn Morris <rgm@gnu.org>
9 ;; Keywords: calendar
10 ;; Human-Keywords: calendar, dedicated frames
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26
27 ;;; Commentary:
28
29 ;; See calendar.el.
30
31 ;;; Code:
32
33 (require 'calendar)
34
35 (defcustom diary-frame-parameters
36 '((name . "Diary") (title . "Diary") (height . 10) (width . 80)
37 (unsplittable . t) (minibuffer . nil))
38 "Parameters of the diary frame, if the diary is in its own frame.
39 Relevant if `calendar-setup' has the value `two-frames'."
40 :type 'alist
41 :options '((name string) (title string) (height integer) (width integer)
42 (unsplittable boolean) (minibuffer boolean)
43 (vertical-scroll-bars boolean))
44 :group 'calendar)
45
46 (defcustom calendar-frame-parameters
47 '((name . "Calendar") (title . "Calendar") (height . 10) (width . 80)
48 (unsplittable . t) (minibuffer . nil) (vertical-scroll-bars . nil))
49 "Parameters of the calendar frame, if the calendar is in a separate frame.
50 Relevant if `calendar-setup' has the value `calendar-only' or `two-frames'."
51 :type 'alist
52 :options '((name string) (title string) (height integer) (width integer)
53 (unsplittable boolean) (minibuffer boolean)
54 (vertical-scroll-bars boolean))
55 :group 'calendar)
56
57 (defcustom calendar-and-diary-frame-parameters
58 '((name . "Calendar") (title . "Calendar") (height . 28) (width . 80)
59 (minibuffer . nil))
60 "Parameters of the frame that displays both the calendar and the diary.
61 Relevant if `calendar-setup' has the value `one-frame'."
62 :type 'alist
63 :options '((name string) (title string) (height integer) (width integer)
64 (unsplittable boolean) (minibuffer boolean)
65 (vertical-scroll-bars boolean))
66 :group 'calendar)
67
68 (define-obsolete-variable-alias 'calendar-after-frame-setup-hooks
69 'calendar-after-frame-setup-hook "23.1")
70
71 (defcustom calendar-after-frame-setup-hook nil
72 "List of functions to be run after creating a calendar and/or diary frame."
73 :type 'hook
74 :group 'calendar-hooks)
75
76 ;;; End of user options.
77
78 (defvar calendar-frame nil
79 "Frame in which the calendar was last displayed.")
80
81 (defvar diary-frame nil
82 "Frame in which the diary was last displayed.")
83
84 (defun calendar-frame-1 (frame)
85 "Subroutine used by `calendar-frame-setup'.
86 Runs `calendar-after-frame-setup-hook', selects frame, iconifies if needed."
87 (run-hooks 'calendar-after-frame-setup-hook)
88 (select-frame frame)
89 (if (eq 'icon (cdr (assoc 'visibility (frame-parameters frame))))
90 (iconify-or-deiconify-frame)))
91
92 ;; c-d-d is only called after (diary) has been run.
93 (defvar diary-display-hook)
94
95 (defun calendar-dedicate-diary ()
96 "Display and dedicate the window associated with the diary buffer."
97 (set-window-dedicated-p
98 (display-buffer
99 (if (not (or (memq 'diary-fancy-display diary-display-hook)
100 (memq 'fancy-diary-display diary-display-hook)))
101 (get-file-buffer diary-file)
102 ;; If there are no diary entries, there won't be a fancy-diary
103 ;; to dedicate, so make a basic one.
104 (or (get-buffer diary-fancy-buffer)
105 (calendar-in-read-only-buffer diary-fancy-buffer
106 (calendar-set-mode-line "Diary Entries")))
107 diary-fancy-buffer))
108 t))
109
110 ;;;###cal-autoload
111 (defun calendar-frame-setup (config &optional prompt)
112 "Display the calendar, and optionally the diary, in a separate frame.
113 CONFIG should be one of:
114 `calendar-only' - just the calendar, no diary
115 `one-frame' - calendar and diary in a single frame
116 `two-frames' - calendar and diary each in a separate frame
117
118 If CONFIG has any other value, or if the display is not capable of
119 multiple frames, then `calendar-basic-setup' is called.
120
121 If PROMPT is non-nil, prompt for the month and year to use."
122 (if (not (and (display-multi-frame-p)
123 (memq config '(calendar-only one-frame two-frames))))
124 (calendar-basic-setup prompt)
125 (if (frame-live-p calendar-frame) (delete-frame calendar-frame))
126 (unless (eq config 'calendar-only)
127 (if (frame-live-p diary-frame) (delete-frame diary-frame)))
128 (let ((calendar-view-diary-initially-flag (eq config 'one-frame))
129 ;; For calendar-dedicate-diary in two-frames case.
130 (pop-up-windows nil))
131 (save-window-excursion
132 ;; Do diary first so that calendar is always left current.
133 (when (eq config 'two-frames)
134 (calendar-frame-1
135 (setq diary-frame (make-frame diary-frame-parameters)))
136 (diary)
137 (calendar-dedicate-diary))
138 (calendar-frame-1
139 (setq calendar-frame
140 (make-frame (if (eq config 'one-frame)
141 calendar-and-diary-frame-parameters
142 calendar-frame-parameters))))
143 (calendar-basic-setup prompt (not (eq config 'one-frame)))
144 (set-window-buffer (selected-window) calendar-buffer)
145 (set-window-dedicated-p (selected-window) t)
146 (if (eq config 'one-frame)
147 (calendar-dedicate-diary))))))
148
149
150 ;;;###cal-autoload
151 (defun calendar-one-frame-setup (&optional prompt)
152 "Display calendar and diary in a single dedicated frame.
153 See `calendar-frame-setup' for more information."
154 (calendar-frame-setup 'one-frame prompt))
155
156 (make-obsolete 'calendar-one-frame-setup 'calendar-frame-setup "23.1")
157
158
159 ;;;###cal-autoload
160 (defun calendar-only-one-frame-setup (&optional prompt)
161 "Display calendar in a dedicated frame.
162 See `calendar-frame-setup' for more information."
163 (calendar-frame-setup 'calendar-only prompt))
164
165 (make-obsolete 'calendar-only-one-frame-setup 'calendar-frame-setup "23.1")
166
167
168 ;;;###cal-autoload
169 (defun calendar-two-frame-setup (&optional prompt)
170 "Display calendar and diary in separate, dedicated frames.
171 See `calendar-frame-setup' for more information."
172 (calendar-frame-setup 'two-frames prompt))
173
174 (make-obsolete 'calendar-two-frame-setup 'calendar-frame-setup "23.1")
175
176
177 ;; Undocumented and probably useless.
178 (defvar cal-x-load-hook nil
179 "Hook run on loading of the `cal-x' package.")
180 (make-obsolete-variable 'cal-x-load-hook "it will be removed in future." "23.1")
181
182 (run-hooks 'cal-x-load-hook)
183
184
185 (provide 'cal-x)
186
187 ;; arch-tag: c6dbddca-ae84-442d-87fc-244b76e38e17
188 ;;; cal-x.el ends here