123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- (defgroup gmm nil
- "Utility functions for Gnus, Message and MML."
- :prefix "gmm-"
- :version "22.1"
- :group 'lisp)
- (defcustom gmm-verbose 7
- "Integer that says how verbose gmm should be.
- The higher the number, the more messages will flash to say what
- it did. At zero, it will be totally mute; at five, it will
- display most important messages; and at ten, it will keep on
- jabbering all the time."
- :type 'integer
- :group 'gmm)
- (defun gmm-regexp-concat (regexp)
- "Potentially concat a list of regexps into a single one.
- The concatenation is done with logical ORs."
- (cond ((null regexp)
- nil)
- ((stringp regexp)
- regexp)
- ((listp regexp)
- (mapconcat (lambda (elt) (concat "\\(" elt "\\)"))
- regexp
- "\\|"))))
- (defun gmm-message (level &rest args)
- "If LEVEL is lower than `gmm-verbose' print ARGS using `message'.
- Guideline for numbers:
- 1 - error messages
- 3 - non-serious error messages
- 5 - messages for things that take a long time
- 7 - not very important messages on stuff
- 9 - messages inside loops."
- (if (<= level gmm-verbose)
- (apply 'message args)
-
-
-
- (apply 'format args)))
- (defun gmm-error (level &rest args)
- "Beep an error if LEVEL is equal to or less than `gmm-verbose'.
- ARGS are passed to `message'."
- (when (<= (floor level) gmm-verbose)
- (apply 'message args)
- (ding)
- (let (duration)
- (when (and (floatp level)
- (not (zerop (setq duration (* 10 (- level (floor level)))))))
- (sit-for duration))))
- nil)
- (defun gmm-widget-p (symbol)
- "Non-nil if SYMBOL is a widget."
- (get symbol 'widget-type))
- (autoload 'widget-create-child-value "wid-edit")
- (autoload 'widget-convert "wid-edit")
- (autoload 'widget-default-get "wid-edit")
- (define-widget 'gmm-lazy 'default
- "Base widget for recursive datastructures.
- This is a copy of the `lazy' widget in Emacs 22.1 provided for compatibility."
- :format "%{%t%}: %v"
- :convert-widget 'widget-value-convert-widget
- :value-create (lambda (widget)
- (let ((value (widget-get widget :value))
- (type (widget-get widget :type)))
- (widget-put widget :children
- (list (widget-create-child-value
- widget (widget-convert type) value)))))
- :value-delete 'widget-children-value-delete
- :value-get (lambda (widget)
- (widget-value (car (widget-get widget :children))))
- :value-inline (lambda (widget)
- (widget-apply (car (widget-get widget :children))
- :value-inline))
- :default-get (lambda (widget)
- (widget-default-get
- (widget-convert (widget-get widget :type))))
- :match (lambda (widget value)
- (widget-apply (widget-convert (widget-get widget :type))
- :match value))
- :validate (lambda (widget)
- (widget-apply (car (widget-get widget :children)) :validate)))
- (define-widget 'gmm-tool-bar-item (if (gmm-widget-p 'lazy) 'lazy 'gmm-lazy)
- "Tool bar list item."
- :tag "Tool bar item"
- :type '(choice
- (list :tag "Command and Icon"
- (function :tag "Command")
- (string :tag "Icon file")
- (choice
- (const :tag "Default map" nil)
-
- (const :tag "No menu" t)
- (sexp :tag "Other map"))
- (plist :inline t :tag "Properties"))
- (list :tag "Separator"
- (const :tag "No command" gmm-ignore)
- (string :tag "Icon file")
- (const :tag "No map")
- (plist :inline t :tag "Properties"))))
- (define-widget 'gmm-tool-bar-zap-list (if (gmm-widget-p 'lazy) 'lazy 'gmm-lazy)
- "Tool bar zap list."
- :tag "Tool bar zap list"
- :type '(choice (const :tag "Zap all" t)
- (const :tag "Keep all" nil)
- (list
-
-
-
-
-
- (set :inline t
- (const new-file)
- (const open-file)
- (const dired)
- (const kill-buffer)
- (const save-buffer)
- (const write-file)
- (const undo)
- (const cut)
- (const copy)
- (const paste)
- (const search-forward)
- (const print-buffer)
- (const customize)
- (const help))
- (repeat :inline t
- :tag "Other"
- (symbol :tag "Icon item")))))
- (defcustom gmm-tool-bar-style
- (if (and (boundp 'tool-bar-mode)
- tool-bar-mode
- (and (fboundp 'display-visual-class)
- (not (memq (display-visual-class)
- (list 'static-gray 'gray-scale
- 'static-color 'pseudo-color)))))
- 'gnome
- 'retro)
- "Preferred tool bar style."
- :type '(choice (const :tag "GNOME style" gnome)
- (const :tag "Retro look" retro))
- :group 'gmm)
- (defvar tool-bar-map)
- (defun gmm-tool-bar-from-list (icon-list zap-list default-map)
- "Make a tool bar from ICON-LIST.
- Within each entry of ICON-LIST, the first element is a menu
- command, the second element is an icon file name and the third
- element is a test function. You can use \\[describe-key]
- <menu-entry> to find out the name of a menu command. The fourth
- and all following elements are passed as the PROPS argument to the
- function `tool-bar-local-item'.
- If ZAP-LIST is a list, remove those item from the default
- `tool-bar-map'. If it is t, start with a new sparse map. You
- can use \\[describe-key] <icon> to find out the name of an icon
- item. When \\[describe-key] <icon> shows \"<tool-bar> <new-file>
- runs the command find-file\", then use `new-file' in ZAP-LIST.
- DEFAULT-MAP specifies the default key map for ICON-LIST."
- (let (
-
- (tool-bar-map (if (eq zap-list t)
- (make-sparse-keymap)
- (copy-keymap tool-bar-map))))
- (when (listp zap-list)
-
- (dolist (key zap-list)
- (define-key tool-bar-map (vector key) nil)))
- (mapc (lambda (el)
- (let ((command (car el))
- (icon (nth 1 el))
- (fmap (or (nth 2 el) default-map))
- (props (cdr (cdr (cdr el)))) )
-
- (cond ((eq command 'gmm-ignore)
-
-
- (if (fboundp 'tool-bar-local-item)
- (apply 'tool-bar-local-item icon nil nil
- tool-bar-map :enable nil props)
-
-
- (apply 'tool-bar-add-item icon nil nil :enable nil props)))
- ((equal fmap t)
- (apply 'tool-bar-local-item
- icon command
- (intern icon)
- tool-bar-map props))
- (t
- (apply 'tool-bar-local-item-from-menu
-
-
- command icon tool-bar-map (symbol-value fmap)
- props)))
- t))
- (if (symbolp icon-list)
- (eval icon-list)
- icon-list))
- tool-bar-map))
- (defmacro defun-gmm (name function arg-list &rest body)
- "Create function NAME.
- If FUNCTION exists, then NAME becomes an alias for FUNCTION.
- Otherwise, create function NAME with ARG-LIST and BODY."
- (let ((defined-p (fboundp function)))
- (if defined-p
- `(defalias ',name ',function)
- `(defun ,name ,arg-list ,@body))))
- (defun-gmm gmm-image-search-load-path
- image-search-load-path (file &optional path)
- "Emacs 21 and XEmacs don't have `image-search-load-path'.
- This function returns nil on those systems."
- nil)
- (defun-gmm gmm-image-load-path-for-library
- image-load-path-for-library (library image &optional path no-error)
- "Return a suitable search path for images used by LIBRARY.
- It searches for IMAGE in `image-load-path' (excluding
- \"`data-directory'/images\") and `load-path', followed by a path
- suitable for LIBRARY, which includes \"../../etc/images\" and
- \"../etc/images\" relative to the library file itself, and then
- in \"`data-directory'/images\".
- Then this function returns a list of directories which contains
- first the directory in which IMAGE was found, followed by the
- value of `load-path'. If PATH is given, it is used instead of
- `load-path'.
- If NO-ERROR is non-nil and a suitable path can't be found, don't
- signal an error. Instead, return a list of directories as before,
- except that nil appears in place of the image directory.
- Here is an example that uses a common idiom to provide
- compatibility with versions of Emacs that lack the variable
- `image-load-path':
- ;; Shush compiler.
- (defvar image-load-path)
- (let* ((load-path (image-load-path-for-library \"mh-e\" \"mh-logo.xpm\"))
- (image-load-path (cons (car load-path)
- (when (boundp 'image-load-path)
- image-load-path))))
- (mh-tool-bar-folder-buttons-init))"
- (unless library (error "No library specified"))
- (unless image (error "No image specified"))
- (let (image-directory image-directory-load-path)
-
- (let ((img image)
- (dir (or
-
- (gmm-image-search-load-path image)
-
- (locate-library image)))
- parent)
-
-
-
- (when dir
- (setq dir (file-name-directory dir))
- (while (setq parent (file-name-directory img))
- (setq img (directory-file-name parent)
- dir (expand-file-name "../" dir))))
- (setq image-directory-load-path dir))
-
-
-
-
- (cond
-
- ((and image-directory-load-path
- (not (equal image-directory-load-path
- (file-name-as-directory
- (expand-file-name "images" data-directory)))))
- (setq image-directory image-directory-load-path))
-
- ((let (library-name d1ei d2ei)
-
- (setq library-name (locate-library library))
- (if (not library-name)
- (error "Cannot find library %s in load-path" library))
-
- (setq
-
- d2ei (file-name-as-directory
- (expand-file-name
- (concat (file-name-directory library-name) "../../etc/images")))
-
- d1ei (file-name-as-directory
- (expand-file-name
- (concat (file-name-directory library-name) "../etc/images"))))
- (setq image-directory
-
- (cond ((file-exists-p (expand-file-name image d2ei)) d2ei)
- ((file-exists-p (expand-file-name image d1ei)) d1ei)))))
-
- (image-directory-load-path
- (setq image-directory image-directory-load-path))
- (no-error
- (message "Could not find image %s for library %s" image library))
- (t
- (error "Could not find image %s for library %s" image library)))
-
- (nconc (list image-directory)
- (delete image-directory (copy-sequence (or path load-path))))))
- (defun gmm-customize-mode (&optional mode)
- "Customize customization group for MODE.
- If mode is nil, use `major-mode' of the current buffer."
- (interactive)
- (customize-group
- (or mode
- (intern (let ((mode (symbol-name major-mode)))
- (string-match "^\\(.+\\)-mode$" mode)
- (match-string 1 mode))))))
- (defun gmm-write-region (start end filename &optional append visit
- lockname mustbenew)
- "Compatibility function for `write-region'.
- In XEmacs, the seventh argument of `write-region' specifies the
- coding-system."
- (if (and mustbenew (featurep 'xemacs))
- (if (file-exists-p filename)
- (signal 'file-already-exists (list "File exists" filename))
- (write-region start end filename append visit lockname))
- (write-region start end filename append visit lockname mustbenew)))
- (provide 'gmm-utils)
|