blob: 5ec8e6cbc11ffa53451fce5f5c0eafe1a5a3ae23 (
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
|
;;; emms-pbi-filter.el --- Filtering functions for the PBI
;; Copyright (C) 2004 Free Software Foundation, Inc.
;; Author: Ulrik Jensen <terryp@daimi.au.dk>
;; Keywords:
;; 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 2, 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 GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
;; Boston, MA 02110-1301 USA
;;; Commentary:
;; This file provides a way to filter the playlist to only show
;; certain parts of a big playlist, and only play after those.
;;; Code:
(require 'emms-pbi)
(defvar emms-pbi-not-filtered nil
"A list of trackindexes in `emms-playlist' that aren't filtered
out.")
(defun emms-pbi-filter-region (beg end)
"Hide the lines spanning the region from BEG to END."
(interactive "r")
(save-excursion
(set-buffer emms-pbi-playlist-buffer-name)
(goto-char beg)
(let ((startofregion (point-at-bol)))
(goto-char end)
(let ((endofregion (point-at-eol)))
(let ((hideoverlay (make-overlay startofregion endofregion))
(newlineoverlay (make-overlay (- startofregion 1) startofregion))
(intangibleoverlay (make-overlay (- startofregion 1) (+ endofregion 1))))
(overlay-put newlineoverlay 'after-string "\n")
(overlay-put newlineoverlay 'invisible t)
(overlay-put newlineoverlay 'emms-id 'emms-pbi-filter-overlay)
(overlay-put intangibleoverlay 'intangible t)
(overlay-put intangibleoverlay 'emms-id 'emms-pbi-filter-overlay)
(overlay-put hideoverlay 'emms-id 'emms-pbi-filter-overlay)
(overlay-put hideoverlay 'invisible t))))))
(defun emms-pbi-unfilter-region (beg end)
"Show all hidden lines between BEG and END."
(interactive "r")
(let ((overlays (overlays-in beg end)))
(while overlays
(when (equal (overlay-get (car overlays) 'emms-id) 'emms-pbi-filter-overlay)
(delete-overlay (car overlays)))
(setq overlays (cdr overlays)))))
(provide 'emms-pbi-filter)
;;; emms-pbi-filter.el ends here
|