annotate lisp/dialog-gtk.el @ 502:7039e6323819

[xemacs-hg @ 2001-05-04 22:41:46 by ben] ----------------------- byte-comp warning fixes ----------------- New functions for cleanly eliminating byte-compiler warnings. Their definitions require no changes at all in bytecomp.el, meaning that any package that wants to use them and be compatible with older versions of XEmacs need only copy the code and rename the functions (i.e. prefix them with the package name). Eliminate byte-compiler warnings using the new functions in bytecomp-runtime.el. Move coding-system-put,get,category, since they're not Mule-specific and are used in prefer-coding-system. font.el was incredibly ugly. Clean it up. Avoid using defsubst for any exported functions, to avoid possible compatibility problems if we later change the internal interface. (It happened before, with face accessors, between 19.8 and 19.9). Fix tons of warnings. Clean up (new function gpm-is-supported-p eliminates duplicate code in gpm-create/delete-device-hook) and eliminate warnings. ---------- make byte-recompile-directory work in the --------- core `lisp' dir, even in the absence of a Mule XEmacs (i.e. make it skip the Mule files rather than trying to compile them). now you should be able to do `touch *.el' in the `lisp' dir, then M-x byte-recompile-directory, and get no warnings. Avoid trying to compile Mule files in byte-recompile-directory when we're not in a Mule XEmacs, since we're highly likely to get syntax errors. Add a coding-system cookie to all Mule files so that byte-recompile-directory ignores them. Magic cookie function moved to files.el from code-files.el (for use by bytecomp even in a non-coding-system XEmacs), and changed names and semantics for use by bytecomp. NOTE: IMO this is an internal function that we can change as we like (and there is absolutely no code anywhere else using the function). ---------------- GUI improvements: menus, help ------------------- Rearrange order of keymap declarations to be alphabetical. Improve help on help to include all bindings, and group by category. Add bindings for new Info commands. Remove warnings. Use command-hyper-apropos in place of command-apropos. Add a function to do the equivalent of command-apropos. Evals its help-text argument so you can put expressions there. Used now by help-for-help. Add binding to continue text searches. Expand index searches to work over multiple info documents. Add commands to search text/index in User and Lispref. Add new entry, "Uncomment Region" (parallels "Comment Out Region"). Redo Help menu; add bindings for new Info commands to search the index or text of the User and Lispref manuals. Add command for mark-paragraph, activate-region. Make Edit->R accelerator be rectangle, not register (more commonly used), and put rectangle first. Fix the Edit Init File entry to never load the .elc file. Simplify the default-popup-menu. Add Cmds->Tabs menu. Use kp-left not kp_left, etc. ---------------- Miscellaneous bug fixes/cleanup ------------------- byte-compiler-options: Correct doc string. easy-menu-do-define: fix extra quote. fill-paragraph-or-region:Rewrite to be more correct -- use call-interactively so that we always get exactly the same behavior as if the functions were called directly. No need to fiddle with zmacs-region-stays, now that bogus clearing of it (2001-04-28 src/ChangeLog) is removed. Put dialog titles back in -- this time correctly. Fix various other problems with leaks and such. key-sequence-list-description: Clean up fun to always correctly canonicalize. Clean up Kinsoku comments, synch comment-region with FSF 20.7. * simple.el (region-exists-p): * simple.el (region-active-p): Add comment about which one is correct to use in menu specs. * sound.el (load-sound-file): Minor code clean up. * startup.el: * startup.el (command-line-early): * startup.el (initial-scratch-message): Comment changes. Add info about sample.init.el to splash screen. Improve initial-scratch-message and clarify purpose of Scratch buffer. Fix byte-compile warning. ------------------------ Added features ------------------------- Add new variable to control whether etags checks all parent directories for tag files. (On by default.) * hash-table.el: New file, useful utility functions. * dumped-lisp.el (preloaded-file-list): Dump hash-table.el. ------------ notable bug fix: Windows event code -------------- Get critical quit working. ------------ notable bug fix and new feature: regex code -------------- Shy groups were implemented in a horrible, half-assed way that would cause them to screw up regex searching in most cases. Fixed to work correctly. Also extended back-reference syntax past 9. Only is recognized as such if there are at least that many non-shy groups; and optionally will warn about such uses, to catch old code that might be using them differently. (Added variable to control this in search.c -- `warn-about-possibly-incompatible-back- references', on by default for the moment. Declared in lisp.h. ---------------- process/SIGIO improvements ------------------- define USE_GETADDRINFO to replace more complex conditional, and use it. the code conditionalized on this in unix_open_network_stream had *serious* problems handling errors. it's now fixed, and major amounts of duplicate code between the two versions were combined. don't disable SIGIO and other interrupts unless CONNECT_NEEDS_SLOWED_INTERRUPTS is defined -- don't penalize OS's without bugs. similarly for a freebsd bug that was affecting all OS's. * s\ultrix.h: define CONNECT_NEEDS_SLOWED_INTERRUPTS, since that's the OS mentioned as having a kernel bug. * sysdep.c (request_sigio_on_device): * sysdep.c (unrequest_sigio_on_device): fix SIGIO problems on Linux. add check for O_ASYNC in case it's defined and FASYNC isn't. add comment about other ways to do SIGIO on Linux. * callproc.c (Fold_call_process_internal): * process.c (Fstart_process_internal): Deal with the possibility that `default-directory' doesn't have terminating slash. Correct comments about vfork. ---------------- Miscellaneous bug fixes/cleanup ------------------- * callint.c (Finteractive): Add lots of documentation -- exactly what the Lisp equivalents of all the interactive specs are. * console.h (struct console): change type of quit_char to Emchar. * event-msw.c (lstream_type_create_mswindows_selectable): spacing change. Eliminate events-mod.h and combine into events.h. * emacs.c: * emacs.c (make_arg_list_1): * emacs.c (main_1): A couple of char->Extbyte changes, add a comment. * glyphs-msw.c: Correct indentation of function defns to not exceed 80 cols. Try (sort of) to fix some code that sets the colors of the progress gauge. (Commented out) * keymap.c (syms_of_keymap): use DEFSYMBOL. * process.c (read_process_output): No need to fiddle with zmacs_region_stays, now that bogus clearing of it (see below) is removed. * search.c (Freplace_match): warning fix.
author ben
date Fri, 04 May 2001 22:42:35 +0000
parents 0784d089fdc9
children 4d7fdf497470
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1 ;;; dialog-gtk.el --- Dialog-box support for XEmacs w/GTK primitives
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
3 ;; Copyright (C) 2000 Free Software Foundation, Inc.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
4
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
5 ;; Maintainer: William M. Perry <wmperry@gnu.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
6 ;; Keywords: extensions, internal, dumped
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
7
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
8 ;; This file is part of XEmacs.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
9
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
10 ;; XEmacs is free software; you can redistribute it and/or modify it
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
11 ;; under the terms of the GNU General Public License as published by
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
13 ;; any later version.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
14
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
15 ;; XEmacs is distributed in the hope that it will be useful, but
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
18 ;; General Public License for more details.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
19
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
21 ;; along with XEmacs; see the file COPYING. If not, write to the
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
22 ;; Free Software Foundation, 59 Temple Place - Suite 330,
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
23 ;; Boston, MA 02111-1307, USA.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
24
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
25 ;;; Synched up with: Not in FSF.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
26
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
27 ;;; Commentary:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
28
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
29 ;; This file is dumped with XEmacs (when dialog boxes are compiled in).
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
30
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
31 (require 'cl)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
32 (require 'gtk-password-dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
33 (require 'gtk-file-dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
34
502
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
35 (globally-declare-fboundp
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
36 '(gtk-signal-connect
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
37 gtk-main-quit gtk-window-set-transient-for
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
38 gtk-widget-show-all gtk-main gtk-color-selection-dialog-new
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
39 gtk-color-selection-dialog-ok-button gtk-widget-hide-all
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
40 gtk-color-selection-get-color
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
41 gtk-color-selection-dialog-colorsel
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
42 gtk-color-selection-dialog-cancel-button gtk-widget-show-now
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
43 gtk-widget-grab-focus gtk-widget-destroy gtk-dialog-new
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
44 gtk-window-set-title gtk-container-set-border-width
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
45 gtk-box-set-spacing gtk-dialog-vbox gtk-container-add
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
46 gtk-label-new gtk-button-new-with-label
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
47 gtk-widget-set-sensitive gtk-widget-show gtk-dialog-action-area))
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
48
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
49 (defun popup-builtin-open-dialog (keys)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
50 ;; Allowed keywords are:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
51 ;;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
52 ;; :initial-filename fname
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
53 ;; :initial-directory dir
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
54 ;; :filter-list (filter-desc filter ...)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
55 ;; :directory t/nil
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
56 ;; :title string
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
57 ;; :allow-multi-select t/nil
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
58 ;; :create-prompt-on-nonexistent t/nil
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
59 ;; :overwrite-prompt t/nil
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
60 ;; :file-must-exist t/nil
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
61 ;; :no-network-button t/nil
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
62 ;; :no-read-only-return t/nil
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
63 (let ((initial-filename (plist-get keys :initial-filename))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
64 (clicked-ok nil)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
65 (widget nil))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
66 (setq widget (gtk-file-dialog-new
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
67 :directory (plist-get keys :directory)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
68 :callback `(lambda (f)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
69 (setq clicked-ok t
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
70 filename f))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
71 :initial-directory (or (plist-get keys :initial-directory nil)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
72 (if initial-filename
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
73 (file-name-directory initial-filename)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
74 default-directory))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
75 :filter-list (plist-to-alist
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
76 (plist-get keys :filter-list nil))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
77 :file-must-exist (plist-get keys :file-must-exist nil)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
78
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
79 (gtk-signal-connect widget 'destroy (lambda (obj data) (gtk-main-quit)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
80
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
81 (gtk-window-set-transient-for widget (frame-property nil 'shell-widget))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
82 (gtk-widget-show-all widget)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
83 (gtk-main)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
84 (if (not clicked-ok)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
85 (signal 'quit nil))))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
86
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
87 (defalias 'popup-builtin-save-as-dialog 'popup-builtin-open-dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
88
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
89 (defun popup-builtin-color-dialog (keys)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
90 ;; Allowed keys:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
91 ;; :initial-color COLOR
502
7039e6323819 [xemacs-hg @ 2001-05-04 22:41:46 by ben]
ben
parents: 462
diff changeset
92 (let (;(initial-color (or (plist-get keys :initial-color) "white"))
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
93 (title (or (plist-get keys :title "Select color...")))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
94 (dialog nil)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
95 (clicked-ok nil)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
96 (color nil))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
97 (setq dialog (gtk-color-selection-dialog-new title))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
98 (gtk-signal-connect
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
99 (gtk-color-selection-dialog-ok-button dialog) 'clicked
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
100 (lambda (button colorsel)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
101 (gtk-widget-hide-all dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
102 (setq color (gtk-color-selection-get-color colorsel)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
103 clicked-ok t)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
104 (gtk-main-quit))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
105 (gtk-color-selection-dialog-colorsel dialog))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
106
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
107 (gtk-signal-connect
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
108 (gtk-color-selection-dialog-cancel-button dialog) 'clicked
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
109 (lambda (&rest ignored)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
110 (gtk-main-quit)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
111
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
112 (put dialog 'modal t)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
113 (put dialog 'type 'dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
114 (gtk-window-set-transient-for dialog (frame-property nil 'shell-widget))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
115
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
116 (unwind-protect
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
117 (progn
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
118 (gtk-widget-show-now dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
119 (gtk-main))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
120 '(gtk-widget-destroy dialog))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
121 (if (not clicked-ok)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
122 (signal 'quit nil))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
123 ;; Need to convert from (R G B A) to #rrggbb
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
124 (format "#%02x%02x%02x"
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
125 (* 256 (nth 0 color))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
126 (* 256 (nth 1 color))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
127 (* 256 (nth 2 color)))))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
128
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
129 (defun popup-builtin-password-dialog (keys)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
130 ;; Format is (default callback :keyword value)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
131 ;; Allowed keywords are:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
132 ;;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
133 ;; :title string
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
134 :; :prompt string
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
135 ;; :default string
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
136 ;; :verify boolean
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
137 ;; :verify-prompt string
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
138 (let* ((default (plist-get keys :default))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
139 (dialog nil)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
140 (clicked-ok nil)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
141 (passwd nil)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
142 (info nil)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
143 (generic-cb (lambda (x)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
144 (setq clicked-ok t
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
145 passwd x))))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
146
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
147 ;; Convert the descriptor to keywords and create the dialog
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
148 (setq info (copy-list keys)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
149 info (plist-put info :callback generic-cb)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
150 info (plist-put info :default default)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
151 dialog (apply 'gtk-password-dialog-new info))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
152
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
153 ;; Clicking any button or closing the box exits the main loop.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
154 (gtk-signal-connect (gtk-password-dialog-ok-button dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
155 'clicked
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
156 (lambda (&rest ignored)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
157 (gtk-main-quit)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
158
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
159 (gtk-signal-connect (gtk-password-dialog-cancel-button dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
160 'clicked
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
161 (lambda (&rest ignored)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
162 (gtk-main-quit)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
163
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
164 (gtk-signal-connect dialog
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
165 'delete-event
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
166 (lambda (&rest ignored)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
167 (gtk-main-quit)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
168
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
169 (gtk-widget-grab-focus (gtk-password-dialog-entry-widget dialog))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
170
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
171 ;; Make us modal...
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
172 (put dialog 'modal t)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
173 (gtk-window-set-transient-for dialog (frame-property nil 'shell-widget))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
174
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
175 ;; Realize the damn thing & wait for some action...
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
176 (gtk-widget-show-all dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
177 (gtk-main)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
178
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
179 (if (not clicked-ok)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
180 (signal 'quit nil))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
181
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
182 (gtk-widget-destroy dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
183 passwd))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
184
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
185 (defun popup-builtin-question-dialog (keys)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
186 ;; Allowed keywords:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
187 ;; :question STRING
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
188 ;; :buttons BUTTONDESC
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
189 (let ((title (or (plist-get keys :title) "Question"))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
190 (buttons-descr (plist-get keys :buttons))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
191 (question (or (plist-get keys :question) "Question goes here..."))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
192 (dialog nil) ; GtkDialog
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
193 (buttons nil) ; List of GtkButton objects
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
194 (activep t)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
195 (flushrightp nil)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
196 (errp t))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
197 (if (not buttons-descr)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
198 (error 'syntax-error
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
199 "Dialog descriptor must supply at least one button"))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
200
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
201 ;; Do the basics - create the dialog, set the window title, and
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
202 ;; add the label asking the question.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
203 (unwind-protect
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
204 (progn
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
205 (setq dialog (gtk-dialog-new))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
206 (gtk-window-set-title dialog title)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
207 (gtk-container-set-border-width dialog 3)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
208 (gtk-box-set-spacing (gtk-dialog-vbox dialog) 5)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
209 (gtk-container-add (gtk-dialog-vbox dialog) (gtk-label-new question))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
210
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
211 ;; Create the buttons.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
212 (mapc (lambda (button)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
213 ;; Handle flushright buttons
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
214 (if (null button)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
215 (setq flushrightp t)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
216
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
217 ;; More sanity checking first of all.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
218 (if (not (vectorp button))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
219 (error "Button descriptor is not a vector: %S" button))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
220
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
221 (if (< (length button) 3)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
222 (error "Button descriptor is too small: %S" button))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
223
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
224 (push (gtk-button-new-with-label (aref button 0)) buttons)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
225
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
226 ;; Need to detect what flavor of descriptor it is.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
227 (if (not (keywordp (aref button 2)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
228 ;; Simple style... just [ name callback activep ]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
229 ;; We ignore the 'suffix' entry, because that is what
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
230 ;; the X code does.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
231 (setq activep (aref button 2))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
232 (let ((ctr 2)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
233 (len (length button)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
234 (if (logand len 1)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
235 (error
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
236 "Button descriptor has an odd number of keywords and values: %S"
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
237 button))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
238 (while (< ctr len)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
239 (if (eq (aref button ctr) :active)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
240 (setq activep (aref button (1+ ctr))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
241 ctr len))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
242 (setq ctr (+ ctr 2)))))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
243 (gtk-widget-set-sensitive (car buttons) (eval activep))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
244
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
245 ;; Apply the callback
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
246 (gtk-signal-connect
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
247 (car buttons) 'clicked
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
248 (lambda (button data)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
249 (push (make-event 'misc-user
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
250 (list 'object (car data)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
251 'function
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
252 (if (symbolp (car data))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
253 'call-interactively
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
254 'eval)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
255 unread-command-events)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
256 (gtk-main-quit)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
257 t)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
258 (cons (aref button 1) dialog))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
259
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
260 (gtk-widget-show (car buttons))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
261 (funcall (if flushrightp 'gtk-box-pack-end 'gtk-box-pack-start)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
262 (gtk-dialog-action-area dialog) (car buttons)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
263 nil t 2)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
264 buttons-descr)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
265
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
266 ;; Make sure they can't close it with the window manager
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
267 (gtk-signal-connect dialog 'delete-event (lambda (&rest ignored) t))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
268 (gtk-window-set-transient-for dialog (frame-property nil 'shell-widget))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
269 (put dialog 'type 'dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
270 (put dialog 'modal t)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
271 (gtk-widget-show-all dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
272 (gtk-main)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
273 (gtk-widget-destroy dialog)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
274 (setq errp nil))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
275 (if (not errp)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
276 ;; Nothing, we successfully showed the dialog
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
277 nil
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
278 ;; We need to destroy all the widgets, just in case.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
279 (mapc 'gtk-widget-destroy buttons)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
280 (gtk-widget-destroy dialog)))))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
281
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
282 (defun gtk-make-dialog-box-internal (type keys)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
283 (case type
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
284 (file
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
285 (popup-builtin-open-dialog keys))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
286 (password
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
287 (popup-builtin-password-dialog keys))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
288 (question
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
289 (popup-builtin-question-dialog keys))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
290 (color
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
291 (popup-builtin-color-dialog keys))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
292 (find
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
293 )
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
294 (font
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
295 )
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
296 (replace
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
297 )
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
298 (mswindows-message
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
299 ;; This should really be renamed!
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
300 )
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
301 (print
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
302 )
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
303 (page-setup
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
304 )
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
305 (print-setup
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
306 )
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
307 (default
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
308 (error "Unknown type of dialog: %S" type))))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
309
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
310 (provide 'dialog-gtk)