about summary refs log tree commit diff
path: root/configs/shared/emacs/.emacs.d/elpa/haskell-mode-20180913.348/haskell-svg.el
blob: 9a20bbbd21a76a2eff7e98b75f1a37c0badccb7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
;;; haskell-svg.el --- SVG Rendering -*- lexical-binding: t -*-

;; Copyright (c) 2018 Federico Beffa. All rights reserved.

;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.

;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <http://www.gnu.org/licenses/>.

;;; Code:

(defcustom haskell-svg-render-images nil
  "Replace SVG image text with actual images."
  :group 'haskell-interactive
  :type 'boolean)

(defconst haskell-svg-supported (image-type-available-p 'svg)
  "Defines if SVG images are supported by this instance of Emacs.")



(defun haskell-svg-render-images-p ()
  "Shall we render SVG images?"
  (and haskell-svg-supported (display-images-p) haskell-svg-render-images))

(defun haskell-svg-maybe-render-images (text)
  "Render SVG images if desired and supported, or terurn the
input unmodified."
  (if (haskell-svg-render-images-p)
      (haskell-svg-render-images text)
    text))

(defun haskell-svg-render-images (text)
  "Replace an SVG image text with an actual image."
  (with-temp-buffer
      (insert text)
      (goto-char (point-min))
      (when (re-search-forward
             "\"?<\\?xml\\(.\\|\n\\|\r\\)* PUBLIC \"-//W3C//DTD SVG [0-9]\.[0-9]//EN\\(.\\|\n\\|\r\\)*</svg>\"?"
             nil t)
        (let ((svg-string (match-string 0))
              (begin (match-beginning 0))
              (end (match-end 0)))
          (delete-region begin end)
          (goto-char begin)
          (insert-image (create-image svg-string nil t) "SVG image")))
      (buffer-substring (point-min) (point-max))))

(defun haskell-svg-toggle-render-images ()
  "Toggle rendering of SVG images at the REPL output."
  (interactive)
  (setq haskell-svg-render-images (not haskell-svg-render-images)))



(provide 'haskell-svg)

;;; haskell-svg.el ends here