-
-
Save amno1/56b4b4c19892d8bf7e6a855c1fb5e2b3 to your computer and use it in GitHub Desktop.
Emacs SVG Toolbar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; An experiment for an SVG toolbar using icons from material.io | |
;; | |
;; Example usage: (toolbar 48 "black" "white" t t) | |
;; Material icons freely available (Apache 2 license) from | |
;; - https://material.io/resources/icons/?style=outline | |
;; - https://github.com/google/material-design-icons | |
(require 'xml) (require 'svg) | |
(defun toobar-item (label icon fg-color bg-color size with-icon with-label) | |
(let* ((height (cond ((and with-icon with-label) 42) | |
(with-icon 32) | |
(with-label 18))) | |
(label-y (if with-icon 33 9)) | |
(svg (svg-create size (ceiling (* size (/ height 48.0))) | |
:viewBox (format "-12 -4 48 %d" height) | |
:stroke-width 0 :fill fg-color)) | |
(root (xml-parse-file icon))) | |
(svg-rectangle svg -12.0 -4.0 48 height :fill fg-color :rx 3.0) | |
(svg-rectangle svg -11.5 -3.5 47 (- height 1) :fill bg-color :rx 2.5) | |
(if with-icon | |
(dolist (item (xml-get-children (car root) 'path)) | |
(let* ((attrs (xml-node-attributes item)) | |
(path (cdr (assoc 'd attrs))) | |
(fill (or (cdr (assoc 'fill attrs)) fg-color))) | |
(svg-node svg 'path :d path :fill fill)))) | |
(if with-label | |
(svg-text svg label | |
:text-anchor "middle" | |
:font-family "Roboto Condensed" | |
:font-weight 300 | |
:font-size 10 | |
:fill fg-color | |
:x 12 | |
:y label-y)) | |
(insert-image (svg-image svg)))) | |
(defun toolbar (size fg-color bg-color with-icon with-label) | |
(toobar-item "New" "create-black-24dp.svg" | |
fg-color bg-color size with-icon with-label) | |
(insert " ") | |
(toobar-item "Open" "insert_drive_file-black-24dp.svg" | |
fg-color bg-color size with-icon with-label) | |
(insert " ") | |
(toobar-item "Save" "save-black-24dp.svg" | |
fg-color bg-color size with-icon with-label) | |
(insert " - ") | |
(toobar-item "Cut" "content_cut-black-24dp.svg" | |
fg-color bg-color size with-icon with-label) | |
(insert " ") | |
(toobar-item "Copy" "content_copy-black-24dp.svg" | |
fg-color bg-color size with-icon with-label) | |
(insert " ") | |
(toobar-item "Paste" "content_paste-black-24dp.svg" | |
fg-color bg-color size with-icon with-label) | |
(insert " - ") | |
(toobar-item "Undo" "undo-black-24dp.svg" | |
fg-color bg-color size with-icon with-label) | |
(insert " ") | |
(toobar-item "Redo" "redo-black-24dp.svg" | |
fg-color bg-color size with-icon with-label) | |
(insert " - ") | |
(toobar-item "Search" "search-black-24dp.svg" | |
fg-color bg-color size with-icon with-label) | |
(insert " ") | |
(toobar-item "Replace" "find_replace-black-24dp.svg" | |
fg-color bg-color size with-icon with-label) | |
(insert " - ") | |
(toobar-item "Quit" "exit_to_app-black-24dp.svg" | |
fg-color bg-color size with-icon with-label)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black" width="24px" height="24px"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z"/></svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment