[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r104583: Print theme summaries in *Cu
From: |
Chong Yidong |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r104583: Print theme summaries in *Custom Themes* buffer. |
Date: |
Tue, 14 Jun 2011 01:06:26 -0400 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 104583
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Tue 2011-06-14 01:06:26 -0400
message:
Print theme summaries in *Custom Themes* buffer.
* lisp/cus-theme.el (describe-theme-1): Use custom-theme-p.
(custom-theme-summary): New function.
(customize-themes): Use it.
* etc/themes/light-blue-theme.el:
* etc/themes/misterioso-theme.el:
* etc/themes/tango-dark-theme.el:
* etc/themes/tango-theme.el:
* etc/themes/tsdh-dark-theme.el:
* etc/themes/tsdh-light-theme.el:
* etc/themes/wheatgrass-theme.el:
* etc/themes/wombat-theme.el: Tweak summaries for better listability.
modified:
etc/themes/light-blue-theme.el
etc/themes/misterioso-theme.el
etc/themes/tango-dark-theme.el
etc/themes/tango-theme.el
etc/themes/tsdh-dark-theme.el
etc/themes/tsdh-light-theme.el
etc/themes/wheatgrass-theme.el
etc/themes/wombat-theme.el
lisp/ChangeLog
lisp/cus-theme.el
=== modified file 'etc/themes/light-blue-theme.el'
--- a/etc/themes/light-blue-theme.el 2011-02-12 23:10:18 +0000
+++ b/etc/themes/light-blue-theme.el 2011-06-14 05:06:26 +0000
@@ -26,7 +26,7 @@
;;; Code:
(deftheme light-blue
- "Theme with a light blue backgound.")
+ "Face colors utilizing a light blue backgound.")
(let ((class '((class color) (min-colors 89))))
(custom-theme-set-faces
=== modified file 'etc/themes/misterioso-theme.el'
--- a/etc/themes/misterioso-theme.el 2011-03-22 18:59:50 +0000
+++ b/etc/themes/misterioso-theme.el 2011-06-14 05:06:26 +0000
@@ -22,7 +22,7 @@
;;; Code:
(deftheme misterioso
- "Theme for faces, using light colors on a dark gray background.")
+ "Predominantly blue/cyan faces on a dark cyan background.")
(let ((class '((class color) (min-colors 89))))
=== modified file 'etc/themes/tango-dark-theme.el'
--- a/etc/themes/tango-dark-theme.el 2011-02-21 05:59:20 +0000
+++ b/etc/themes/tango-dark-theme.el 2011-06-14 05:06:26 +0000
@@ -28,7 +28,7 @@
;;; Code:
(deftheme tango-dark
- "Theme for faces, based on the Tango palette with a dark background.
+ "Face colors using the Tango palette (dark background).
Basic, Font Lock, Isearch, Gnus, Message, Ediff, Flyspell,
Semantic, and Ansi-Color faces are included.")
=== modified file 'etc/themes/tango-theme.el'
--- a/etc/themes/tango-theme.el 2011-02-02 17:26:04 +0000
+++ b/etc/themes/tango-theme.el 2011-06-14 05:06:26 +0000
@@ -28,7 +28,7 @@
;;; Code:
(deftheme tango
- "Theme for faces, based on the Tango palette with a light background.
+ "Face colors using the Tango palette (light background).
Basic, Font Lock, Isearch, Gnus, Message, Ediff, Flyspell,
Semantic, and Ansi-Color faces are included.")
=== modified file 'etc/themes/tsdh-dark-theme.el'
--- a/etc/themes/tsdh-dark-theme.el 2011-03-08 02:47:55 +0000
+++ b/etc/themes/tsdh-dark-theme.el 2011-06-14 05:06:26 +0000
@@ -20,7 +20,8 @@
;;; Code:
(deftheme tsdh-dark
- "Theme with dark background used and created by Tassilo Horn.")
+ "Minor tweaks to the Emacs dark-background defaults.
+Used and created by Tassilo Horn.")
(custom-theme-set-faces
'tsdh-dark
=== modified file 'etc/themes/tsdh-light-theme.el'
--- a/etc/themes/tsdh-light-theme.el 2011-03-08 02:47:55 +0000
+++ b/etc/themes/tsdh-light-theme.el 2011-06-14 05:06:26 +0000
@@ -20,7 +20,8 @@
;;; Code:
(deftheme tsdh-light
- "Black on white theme used and created by Tassilo Horn.")
+ "Minor tweaks to the Emacs white-background defaults.
+Used and created by Tassilo Horn.")
(custom-theme-set-faces
'tsdh-light
=== modified file 'etc/themes/wheatgrass-theme.el'
--- a/etc/themes/wheatgrass-theme.el 2011-02-02 03:36:29 +0000
+++ b/etc/themes/wheatgrass-theme.el 2011-06-14 05:06:26 +0000
@@ -20,7 +20,7 @@
;;; Code:
(deftheme wheatgrass
- "A high-contrast theme with a black background.
+ "High-contrast green/blue/brown faces on a black background.
Basic, Font Lock, Isearch, Gnus, and Message faces are included.
The default face foreground is wheat, with other faces in shades
of green, brown, and blue.")
=== modified file 'etc/themes/wombat-theme.el'
--- a/etc/themes/wombat-theme.el 2011-03-08 02:47:55 +0000
+++ b/etc/themes/wombat-theme.el 2011-06-14 05:06:26 +0000
@@ -22,7 +22,7 @@
;;; Code:
(deftheme wombat
- "Theme for faces, using easy-on-the eyes colors on a dark gray background.
+ "Medium-contrast faces with a dark gray background.
Adapted, with permission, from a Vim color scheme by Lars H. Nielsen.
Basic, Font Lock, Isearch, Gnus, Message, and Ansi-Color faces
are included.")
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2011-06-13 21:42:40 +0000
+++ b/lisp/ChangeLog 2011-06-14 05:06:26 +0000
@@ -1,3 +1,9 @@
+2011-06-14 Chong Yidong <address@hidden>
+
+ * cus-theme.el (describe-theme-1): Use custom-theme-p.
+ (custom-theme-summary): New function.
+ (customize-themes): Use it.
+
2011-06-13 Glenn Morris <address@hidden>
* cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
=== modified file 'lisp/cus-theme.el'
--- a/lisp/cus-theme.el 2011-04-19 13:44:55 +0000
+++ b/lisp/cus-theme.el 2011-06-14 05:06:26 +0000
@@ -483,25 +483,24 @@
'help-theme-def fn)
(princ "'"))
(princ ".\n")
- (if (not (memq theme custom-known-themes))
+ (if (custom-theme-p theme)
(progn
- (princ "It is not loaded.")
- ;; Attempt to grab the theme documentation
- (when fn
- (with-temp-buffer
- (insert-file-contents fn)
- (let ((sexp (let ((read-circle nil))
- (condition-case nil
- (read (current-buffer))
- (end-of-file nil)))))
- (and sexp (listp sexp)
- (eq (car sexp) 'deftheme)
- (setq doc (nth 2 sexp)))))))
- (if (custom-theme-enabled-p theme)
- (princ "It is loaded and enabled.")
- (princ "It is loaded but disabled."))
- (setq doc (get theme 'theme-documentation)))
-
+ (if (custom-theme-enabled-p theme)
+ (princ "It is loaded and enabled.")
+ (princ "It is loaded but disabled."))
+ (setq doc (get theme 'theme-documentation)))
+ (princ "It is not loaded.")
+ ;; Attempt to grab the theme documentation
+ (when fn
+ (with-temp-buffer
+ (insert-file-contents fn)
+ (let ((sexp (let ((read-circle nil))
+ (condition-case nil
+ (read (current-buffer))
+ (end-of-file nil)))))
+ (and sexp (listp sexp)
+ (eq (car sexp) 'deftheme)
+ (setq doc (nth 2 sexp)))))))
(princ "\n\nDocumentation:\n")
(princ (if (stringp doc)
doc
@@ -605,26 +604,56 @@
(widget-create 'checkbox
:value custom-theme-allow-multiple-selections
:action 'custom-theme-selections-toggle)
- (widget-insert (propertize " Allow more than one theme at a time"
+ (widget-insert (propertize " Select more than one theme at a time"
'face '(variable-pitch (:height 0.9))))
(widget-insert "\n\nAvailable Custom Themes:\n")
- (let (widget)
+ (let ((help-echo "mouse-2: Enable this theme for this session")
+ widget)
(dolist (theme (custom-available-themes))
(setq widget (widget-create 'checkbox
:value (custom-theme-enabled-p theme)
:theme-name theme
+ :help-echo help-echo
:action 'custom-theme-checkbox-toggle))
(push (cons theme widget) custom--listed-themes)
(widget-create-child-and-convert widget 'push-button
:button-face-get 'ignore
:mouse-face-get 'ignore
:value (format " %s" theme)
- :action 'widget-parent-action)
- (widget-insert ?\n)))
+ :action 'widget-parent-action
+ :help-echo help-echo)
+ (widget-insert " -- "
+ (propertize (custom-theme-summary theme)
+ 'face 'shadow)
+ ?\n)))
(goto-char (point-min))
(widget-setup))
+(defun custom-theme-summary (theme)
+ "Return the summary line of THEME."
+ (let (doc)
+ (if (custom-theme-p theme)
+ (setq doc (get theme 'theme-documentation))
+ (let ((fn (locate-file (concat (symbol-name theme) "-theme.el")
+ (custom-theme--load-path)
+ '("" "c"))))
+ (when fn
+ (with-temp-buffer
+ (insert-file-contents fn)
+ (let ((sexp (let ((read-circle nil))
+ (condition-case nil
+ (read (current-buffer))
+ (end-of-file nil)))))
+ (and sexp (listp sexp)
+ (eq (car sexp) 'deftheme)
+ (setq doc (nth 2 sexp))))))))
+ (cond ((null doc)
+ "(no documentation available)")
+ ((string-match ".*" doc)
+ (match-string 0 doc))
+ (t doc))))
+
(defun custom-theme-checkbox-toggle (widget &optional event)
(let ((this-theme (widget-get widget :theme-name)))
(if (widget-value widget)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r104583: Print theme summaries in *Custom Themes* buffer.,
Chong Yidong <=