462
|
1 ;;; dialog-gtk.el --- Dialog-box support for XEmacs w/GTK primitives
|
|
2
|
|
3 ;; Copyright (C) 2000 Free Software Foundation, Inc.
|
|
4
|
|
5 ;; Maintainer: William M. Perry <wmperry@gnu.org>
|
|
6 ;; Keywords: extensions, internal, dumped
|
|
7
|
|
8 ;; This file is part of XEmacs.
|
|
9
|
|
10 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
11 ;; under the terms of the GNU General Public License as published by
|
|
12 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
13 ;; any later version.
|
|
14
|
|
15 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
18 ;; General Public License for more details.
|
|
19
|
|
20 ;; You should have received a copy of the GNU General Public License
|
|
21 ;; along with XEmacs; see the file COPYING. If not, write to the
|
|
22 ;; Free Software Foundation, 59 Temple Place - Suite 330,
|
|
23 ;; Boston, MA 02111-1307, USA.
|
|
24
|
|
25 ;;; Synched up with: Not in FSF.
|
|
26
|
|
27 ;;; Commentary:
|
|
28
|
|
29 ;; This file is dumped with XEmacs (when dialog boxes are compiled in).
|
|
30
|
|
31 (require 'cl)
|
|
32 (require 'gtk-password-dialog)
|
|
33 (require 'gtk-file-dialog)
|
|
34
|
502
|
35 (globally-declare-fboundp
|
|
36 '(gtk-signal-connect
|
|
37 gtk-main-quit gtk-window-set-transient-for
|
|
38 gtk-widget-show-all gtk-main gtk-color-selection-dialog-new
|
|
39 gtk-color-selection-dialog-ok-button gtk-widget-hide-all
|
|
40 gtk-color-selection-get-color
|
|
41 gtk-color-selection-dialog-colorsel
|
|
42 gtk-color-selection-dialog-cancel-button gtk-widget-show-now
|
|
43 gtk-widget-grab-focus gtk-widget-destroy gtk-dialog-new
|
|
44 gtk-window-set-title gtk-container-set-border-width
|
|
45 gtk-box-set-spacing gtk-dialog-vbox gtk-container-add
|
|
46 gtk-label-new gtk-button-new-with-label
|
|
47 gtk-widget-set-sensitive gtk-widget-show gtk-dialog-action-area))
|
|
48
|
462
|
49 (defun popup-builtin-open-dialog (keys)
|
|
50 ;; Allowed keywords are:
|
|
51 ;;
|
|
52 ;; :initial-filename fname
|
|
53 ;; :initial-directory dir
|
|
54 ;; :filter-list (filter-desc filter ...)
|
|
55 ;; :directory t/nil
|
|
56 ;; :title string
|
|
57 ;; :allow-multi-select t/nil
|
|
58 ;; :create-prompt-on-nonexistent t/nil
|
|
59 ;; :overwrite-prompt t/nil
|
|
60 ;; :file-must-exist t/nil
|
|
61 ;; :no-network-button t/nil
|
|
62 ;; :no-read-only-return t/nil
|
|
63 (let ((initial-filename (plist-get keys :initial-filename))
|
|
64 (clicked-ok nil)
|
|
65 (widget nil))
|
|
66 (setq widget (gtk-file-dialog-new
|
|
67 :directory (plist-get keys :directory)
|
|
68 :callback `(lambda (f)
|
|
69 (setq clicked-ok t
|
|
70 filename f))
|
|
71 :initial-directory (or (plist-get keys :initial-directory nil)
|
|
72 (if initial-filename
|
|
73 (file-name-directory initial-filename)
|
|
74 default-directory))
|
|
75 :filter-list (plist-to-alist
|
|
76 (plist-get keys :filter-list nil))
|
|
77 :file-must-exist (plist-get keys :file-must-exist nil)))
|
|
78
|
|
79 (gtk-signal-connect widget 'destroy (lambda (obj data) (gtk-main-quit)))
|
|
80
|
|
81 (gtk-window-set-transient-for widget (frame-property nil 'shell-widget))
|
|
82 (gtk-widget-show-all widget)
|
|
83 (gtk-main)
|
|
84 (if (not clicked-ok)
|
|
85 (signal 'quit nil))))
|
|
86
|
|
87 (defalias 'popup-builtin-save-as-dialog 'popup-builtin-open-dialog)
|
|
88
|
|
89 (defun popup-builtin-color-dialog (keys)
|
|
90 ;; Allowed keys:
|
|
91 ;; :initial-color COLOR
|
502
|
92 (let (;(initial-color (or (plist-get keys :initial-color) "white"))
|
462
|
93 (title (or (plist-get keys :title "Select color...")))
|
|
94 (dialog nil)
|
|
95 (clicked-ok nil)
|
|
96 (color nil))
|
|
97 (setq dialog (gtk-color-selection-dialog-new title))
|
|
98 (gtk-signal-connect
|
|
99 (gtk-color-selection-dialog-ok-button dialog) 'clicked
|
|
100 (lambda (button colorsel)
|
|
101 (gtk-widget-hide-all dialog)
|
|
102 (setq color (gtk-color-selection-get-color colorsel)
|
|
103 clicked-ok t)
|
|
104 (gtk-main-quit))
|
|
105 (gtk-color-selection-dialog-colorsel dialog))
|
|
106
|
|
107 (gtk-signal-connect
|
|
108 (gtk-color-selection-dialog-cancel-button dialog) 'clicked
|
|
109 (lambda (&rest ignored)
|
|
110 (gtk-main-quit)))
|
|
111
|
|
112 (put dialog 'modal t)
|
|
113 (put dialog 'type 'dialog)
|
|
114 (gtk-window-set-transient-for dialog (frame-property nil 'shell-widget))
|
|
115
|
|
116 (unwind-protect
|
|
117 (progn
|
|
118 (gtk-widget-show-now dialog)
|
|
119 (gtk-main))
|
|
120 '(gtk-widget-destroy dialog))
|
|
121 (if (not clicked-ok)
|
|
122 (signal 'quit nil))
|
|
123 ;; Need to convert from (R G B A) to #rrggbb
|
|
124 (format "#%02x%02x%02x"
|
|
125 (* 256 (nth 0 color))
|
|
126 (* 256 (nth 1 color))
|
|
127 (* 256 (nth 2 color)))))
|
|
128
|
|
129 (defun popup-builtin-password-dialog (keys)
|
|
130 ;; Format is (default callback :keyword value)
|
|
131 ;; Allowed keywords are:
|
|
132 ;;
|
|
133 ;; :title string
|
|
134 :; :prompt string
|
|
135 ;; :default string
|
|
136 ;; :verify boolean
|
|
137 ;; :verify-prompt string
|
|
138 (let* ((default (plist-get keys :default))
|
|
139 (dialog nil)
|
|
140 (clicked-ok nil)
|
|
141 (passwd nil)
|
|
142 (info nil)
|
|
143 (generic-cb (lambda (x)
|
|
144 (setq clicked-ok t
|
|
145 passwd x))))
|
|
146
|
|
147 ;; Convert the descriptor to keywords and create the dialog
|
|
148 (setq info (copy-list keys)
|
|
149 info (plist-put info :callback generic-cb)
|
|
150 info (plist-put info :default default)
|
|
151 dialog (apply 'gtk-password-dialog-new info))
|
|
152
|
|
153 ;; Clicking any button or closing the box exits the main loop.
|
|
154 (gtk-signal-connect (gtk-password-dialog-ok-button dialog)
|
|
155 'clicked
|
|
156 (lambda (&rest ignored)
|
|
157 (gtk-main-quit)))
|
|
158
|
|
159 (gtk-signal-connect (gtk-password-dialog-cancel-button dialog)
|
|
160 'clicked
|
|
161 (lambda (&rest ignored)
|
|
162 (gtk-main-quit)))
|
|
163
|
|
164 (gtk-signal-connect dialog
|
|
165 'delete-event
|
|
166 (lambda (&rest ignored)
|
|
167 (gtk-main-quit)))
|
|
168
|
|
169 (gtk-widget-grab-focus (gtk-password-dialog-entry-widget dialog))
|
|
170
|
|
171 ;; Make us modal...
|
|
172 (put dialog 'modal t)
|
|
173 (gtk-window-set-transient-for dialog (frame-property nil 'shell-widget))
|
|
174
|
|
175 ;; Realize the damn thing & wait for some action...
|
|
176 (gtk-widget-show-all dialog)
|
|
177 (gtk-main)
|
|
178
|
|
179 (if (not clicked-ok)
|
|
180 (signal 'quit nil))
|
|
181
|
|
182 (gtk-widget-destroy dialog)
|
|
183 passwd))
|
|
184
|
|
185 (defun popup-builtin-question-dialog (keys)
|
|
186 ;; Allowed keywords:
|
|
187 ;; :question STRING
|
|
188 ;; :buttons BUTTONDESC
|
|
189 (let ((title (or (plist-get keys :title) "Question"))
|
|
190 (buttons-descr (plist-get keys :buttons))
|
|
191 (question (or (plist-get keys :question) "Question goes here..."))
|
|
192 (dialog nil) ; GtkDialog
|
|
193 (buttons nil) ; List of GtkButton objects
|
|
194 (activep t)
|
|
195 (flushrightp nil)
|
|
196 (errp t))
|
|
197 (if (not buttons-descr)
|
|
198 (error 'syntax-error
|
|
199 "Dialog descriptor must supply at least one button"))
|
|
200
|
|
201 ;; Do the basics - create the dialog, set the window title, and
|
|
202 ;; add the label asking the question.
|
|
203 (unwind-protect
|
|
204 (progn
|
|
205 (setq dialog (gtk-dialog-new))
|
|
206 (gtk-window-set-title dialog title)
|
|
207 (gtk-container-set-border-width dialog 3)
|
|
208 (gtk-box-set-spacing (gtk-dialog-vbox dialog) 5)
|
|
209 (gtk-container-add (gtk-dialog-vbox dialog) (gtk-label-new question))
|
|
210
|
|
211 ;; Create the buttons.
|
|
212 (mapc (lambda (button)
|
|
213 ;; Handle flushright buttons
|
|
214 (if (null button)
|
|
215 (setq flushrightp t)
|
|
216
|
|
217 ;; More sanity checking first of all.
|
|
218 (if (not (vectorp button))
|
|
219 (error "Button descriptor is not a vector: %S" button))
|
|
220
|
|
221 (if (< (length button) 3)
|
|
222 (error "Button descriptor is too small: %S" button))
|
|
223
|
|
224 (push (gtk-button-new-with-label (aref button 0)) buttons)
|
|
225
|
|
226 ;; Need to detect what flavor of descriptor it is.
|
|
227 (if (not (keywordp (aref button 2)))
|
|
228 ;; Simple style... just [ name callback activep ]
|
|
229 ;; We ignore the 'suffix' entry, because that is what
|
|
230 ;; the X code does.
|
|
231 (setq activep (aref button 2))
|
|
232 (let ((ctr 2)
|
|
233 (len (length button)))
|
|
234 (if (logand len 1)
|
|
235 (error
|
|
236 "Button descriptor has an odd number of keywords and values: %S"
|
|
237 button))
|
|
238 (while (< ctr len)
|
|
239 (if (eq (aref button ctr) :active)
|
|
240 (setq activep (aref button (1+ ctr))
|
|
241 ctr len))
|
|
242 (setq ctr (+ ctr 2)))))
|
|
243 (gtk-widget-set-sensitive (car buttons) (eval activep))
|
|
244
|
|
245 ;; Apply the callback
|
|
246 (gtk-signal-connect
|
|
247 (car buttons) 'clicked
|
|
248 (lambda (button data)
|
|
249 (push (make-event 'misc-user
|
|
250 (list 'object (car data)
|
|
251 'function
|
|
252 (if (symbolp (car data))
|
|
253 'call-interactively
|
|
254 'eval)))
|
|
255 unread-command-events)
|
|
256 (gtk-main-quit)
|
|
257 t)
|
|
258 (cons (aref button 1) dialog))
|
|
259
|
|
260 (gtk-widget-show (car buttons))
|
|
261 (funcall (if flushrightp 'gtk-box-pack-end 'gtk-box-pack-start)
|
|
262 (gtk-dialog-action-area dialog) (car buttons)
|
|
263 nil t 2)))
|
|
264 buttons-descr)
|
|
265
|
|
266 ;; Make sure they can't close it with the window manager
|
|
267 (gtk-signal-connect dialog 'delete-event (lambda (&rest ignored) t))
|
|
268 (gtk-window-set-transient-for dialog (frame-property nil 'shell-widget))
|
|
269 (put dialog 'type 'dialog)
|
|
270 (put dialog 'modal t)
|
|
271 (gtk-widget-show-all dialog)
|
|
272 (gtk-main)
|
|
273 (gtk-widget-destroy dialog)
|
|
274 (setq errp nil))
|
|
275 (if (not errp)
|
|
276 ;; Nothing, we successfully showed the dialog
|
|
277 nil
|
|
278 ;; We need to destroy all the widgets, just in case.
|
|
279 (mapc 'gtk-widget-destroy buttons)
|
|
280 (gtk-widget-destroy dialog)))))
|
|
281
|
|
282 (defun gtk-make-dialog-box-internal (type keys)
|
|
283 (case type
|
|
284 (file
|
|
285 (popup-builtin-open-dialog keys))
|
|
286 (password
|
|
287 (popup-builtin-password-dialog keys))
|
|
288 (question
|
|
289 (popup-builtin-question-dialog keys))
|
|
290 (color
|
|
291 (popup-builtin-color-dialog keys))
|
|
292 (find
|
|
293 )
|
|
294 (font
|
|
295 )
|
|
296 (replace
|
|
297 )
|
|
298 (mswindows-message
|
|
299 ;; This should really be renamed!
|
|
300 )
|
|
301 (print
|
|
302 )
|
|
303 (page-setup
|
|
304 )
|
|
305 (print-setup
|
|
306 )
|
|
307 (default
|
|
308 (error "Unknown type of dialog: %S" type))))
|
|
309
|
|
310 (provide 'dialog-gtk)
|