Mercurial > emacs
annotate lisp/calendar/cal-x.el @ 24367:f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sun, 21 Feb 1999 16:36:07 +0000 |
parents | 905aab3037e8 |
children | 069cad4a56ef |
rev | line source |
---|---|
14269
af156af979be
Fix doc strings at top of file.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14169
diff
changeset
|
1 ;;; cal-x.el --- calendar windows in dedicated frames in X |
10088 | 2 |
13046
eafe26212f32
Moved stuff to calendar.el, as per RSM's request.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
12060
diff
changeset
|
3 ;; Copyright (C) 1994, 1995 Free Software Foundation, Inc. |
10088 | 4 |
5 ;; Author: Michael Kifer <kifer@cs.sunysb.edu> | |
6 ;; Edward M. Reingold <reingold@cs.uiuc.edu> | |
7 ;; Keywords: calendar | |
14269
af156af979be
Fix doc strings at top of file.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14169
diff
changeset
|
8 ;; Human-Keywords: calendar, dedicated frames, X Window System |
10088 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
10088 | 26 |
27 ;;; Commentary: | |
28 | |
14269
af156af979be
Fix doc strings at top of file.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14169
diff
changeset
|
29 ;; This collection of functions implements dedicated frames in X for |
10088 | 30 ;; calendar.el. |
31 | |
32 ;; Comments, corrections, and improvements should be sent to | |
33 ;; Edward M. Reingold Department of Computer Science | |
34 ;; (217) 333-6733 University of Illinois at Urbana-Champaign | |
35 ;; reingold@cs.uiuc.edu 1304 West Springfield Avenue | |
36 ;; Urbana, Illinois 61801 | |
37 | |
38 ;;; Code: | |
39 | |
13441 | 40 (require 'calendar) |
41 | |
10088 | 42 (defvar calendar-frame nil "Frame in which to display the calendar.") |
43 | |
44 (defvar diary-frame nil "Frame in which to display the diary.") | |
45 | |
15114
2151ff2428aa
(diary-frame-parameters, calendar-frame-parameters)
Richard M. Stallman <rms@gnu.org>
parents:
14269
diff
changeset
|
46 ;; This should not specify the font. That's up to the user. |
2151ff2428aa
(diary-frame-parameters, calendar-frame-parameters)
Richard M. Stallman <rms@gnu.org>
parents:
14269
diff
changeset
|
47 ;; Certainly it should not specify auto-lower and auto-raise |
2151ff2428aa
(diary-frame-parameters, calendar-frame-parameters)
Richard M. Stallman <rms@gnu.org>
parents:
14269
diff
changeset
|
48 ;; since most users won't like that. |
10088 | 49 (defvar diary-frame-parameters |
23552
905aab3037e8
Add title parameters to frames.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
22262
diff
changeset
|
50 '((name . "Diary") (title . "Diary") (height . 10) (width . 80) |
905aab3037e8
Add title parameters to frames.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
22262
diff
changeset
|
51 (unsplittable . t) (minibuffer . nil)) |
10088 | 52 "Parameters of the diary frame, if the diary is in its own frame. |
53 Location and color should be set in .Xdefaults.") | |
54 | |
55 (defvar calendar-frame-parameters | |
23552
905aab3037e8
Add title parameters to frames.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
22262
diff
changeset
|
56 '((name . "Calendar") (title . "Calendar") (minibuffer . nil) |
905aab3037e8
Add title parameters to frames.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
22262
diff
changeset
|
57 (height . 10) (width . 80) (unsplittable . t) (vertical-scroll-bars . nil)) |
10088 | 58 "Parameters of the calendar frame, if the calendar is in a separate frame. |
59 Location and color should be set in .Xdefaults.") | |
60 | |
61 (defvar calendar-and-diary-frame-parameters | |
23552
905aab3037e8
Add title parameters to frames.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
22262
diff
changeset
|
62 '((name . "Calendar") (title . "Calendar") (height . 28) (width . 80) |
905aab3037e8
Add title parameters to frames.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
22262
diff
changeset
|
63 (minibuffer . nil)) |
10088 | 64 "Parameters of the frame that displays both the calendar and the diary. |
65 Location and color should be set in .Xdefaults.") | |
66 | |
67 (defvar calendar-after-frame-setup-hooks nil | |
68 "Hooks to be run just after setting up a calendar frame. | |
69 Can be used to change frame parameters, such as font, color, location, etc.") | |
70 | |
71 (defun calendar-one-frame-setup (&optional arg) | |
72 "Start calendar and display it in a dedicated frame together with the diary." | |
73 (if (not window-system) | |
74 (calendar-basic-setup arg) | |
75 (if (frame-live-p calendar-frame) (delete-frame calendar-frame)) | |
76 (if (frame-live-p diary-frame) (delete-frame diary-frame)) | |
77 (let ((special-display-buffer-names nil) | |
78 (view-diary-entries-initially t)) | |
79 (save-window-excursion | |
80 (save-excursion | |
81 (setq calendar-frame | |
82 (make-frame calendar-and-diary-frame-parameters)) | |
83 (run-hooks 'calendar-after-frame-setup-hooks) | |
84 (select-frame calendar-frame) | |
85 (if (eq 'icon (cdr (assoc 'visibility | |
86 (frame-parameters calendar-frame)))) | |
87 (iconify-or-deiconify-frame)) | |
88 (calendar-basic-setup arg) | |
89 (set-window-dedicated-p (selected-window) 'calendar) | |
90 (set-window-dedicated-p | |
91 (display-buffer | |
12060
b163768a998f
Fix cal-x.el to create an empty fancy-diary-buffer, if needed.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
12049
diff
changeset
|
92 (if (not (memq 'fancy-diary-display diary-display-hook)) |
b163768a998f
Fix cal-x.el to create an empty fancy-diary-buffer, if needed.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
12049
diff
changeset
|
93 (get-file-buffer diary-file) |
b163768a998f
Fix cal-x.el to create an empty fancy-diary-buffer, if needed.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
12049
diff
changeset
|
94 (if (not (bufferp (get-buffer fancy-diary-buffer))) |
b163768a998f
Fix cal-x.el to create an empty fancy-diary-buffer, if needed.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
12049
diff
changeset
|
95 (make-fancy-diary-buffer)) |
b163768a998f
Fix cal-x.el to create an empty fancy-diary-buffer, if needed.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
12049
diff
changeset
|
96 fancy-diary-buffer)) |
10088 | 97 'diary)))))) |
12060
b163768a998f
Fix cal-x.el to create an empty fancy-diary-buffer, if needed.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
12049
diff
changeset
|
98 |
10088 | 99 (defun calendar-two-frame-setup (&optional arg) |
100 "Start calendar and diary in separate, dedicated frames." | |
101 (if (not window-system) | |
102 (calendar-basic-setup arg) | |
103 (if (frame-live-p calendar-frame) (delete-frame calendar-frame)) | |
104 (if (frame-live-p diary-frame) (delete-frame diary-frame)) | |
105 (let ((pop-up-windows nil) | |
106 (view-diary-entries-initially nil) | |
107 (special-display-buffer-names nil)) | |
108 (save-window-excursion | |
109 (save-excursion (calendar-basic-setup arg)) | |
110 (setq calendar-frame (make-frame calendar-frame-parameters)) | |
111 (run-hooks 'calendar-after-frame-setup-hooks) | |
112 (select-frame calendar-frame) | |
113 (if (eq 'icon (cdr (assoc 'visibility | |
114 (frame-parameters calendar-frame)))) | |
115 (iconify-or-deiconify-frame)) | |
116 (display-buffer calendar-buffer) | |
117 (set-window-dedicated-p (selected-window) 'calendar) | |
118 (setq diary-frame (make-frame diary-frame-parameters)) | |
119 (run-hooks 'calendar-after-frame-setup-hooks) | |
120 (select-frame diary-frame) | |
121 (if (eq 'icon (cdr (assoc 'visibility | |
122 (frame-parameters diary-frame)))) | |
123 (iconify-or-deiconify-frame)) | |
124 (save-excursion (diary)) | |
125 (set-window-dedicated-p | |
126 (display-buffer | |
12060
b163768a998f
Fix cal-x.el to create an empty fancy-diary-buffer, if needed.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
12049
diff
changeset
|
127 (if (not (memq 'fancy-diary-display diary-display-hook)) |
b163768a998f
Fix cal-x.el to create an empty fancy-diary-buffer, if needed.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
12049
diff
changeset
|
128 (get-file-buffer diary-file) |
b163768a998f
Fix cal-x.el to create an empty fancy-diary-buffer, if needed.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
12049
diff
changeset
|
129 (if (not (bufferp (get-buffer fancy-diary-buffer))) |
b163768a998f
Fix cal-x.el to create an empty fancy-diary-buffer, if needed.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
12049
diff
changeset
|
130 (make-fancy-diary-buffer)) |
b163768a998f
Fix cal-x.el to create an empty fancy-diary-buffer, if needed.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
12049
diff
changeset
|
131 fancy-diary-buffer)) |
10088 | 132 'diary))))) |
133 | |
134 (setq special-display-buffer-names | |
135 (append special-display-buffer-names | |
136 (list "*Yahrzeits*" lunar-phases-buffer holiday-buffer | |
137 fancy-diary-buffer (get-file-buffer diary-file) | |
22262
ac47a12e523c
Fix list of "special" buffers.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
15114
diff
changeset
|
138 other-calendars-buffer calendar-buffer))) |
10088 | 139 |
140 (run-hooks 'cal-x-load-hook) | |
141 | |
142 (provide 'cal-x) | |
143 | |
144 ;;; cal-x.el ends here |