aboutsummaryrefslogtreecommitdiff
path: root/emms-pbi-filter.el
diff options
context:
space:
mode:
authorforcer <forcer>2005-09-11 20:05:00 +0000
committerforcer <mwolson@gnu.org>2005-09-11 20:05:00 +0000
commitbb65333ef00df02dbf6bd83294b4df49e64ea325 (patch)
tree5435715fe823d566ac5494bc672088522af5a763 /emms-pbi-filter.el
Initial commit (CVS 2005-09-11)
darcs-hash:20050911200506-2189f-48a136015e33465c3cf09940ce935ec2203df463.gz
Diffstat (limited to 'emms-pbi-filter.el')
-rw-r--r--emms-pbi-filter.el66
1 files changed, 66 insertions, 0 deletions
diff --git a/emms-pbi-filter.el b/emms-pbi-filter.el
new file mode 100644
index 0000000..5ec8e6c
--- /dev/null
+++ b/emms-pbi-filter.el
@@ -0,0 +1,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