Mercurial > audlegacy-plugins
changeset 147:51f5b9cc0dc3 trunk
[svn] - some tweaks
author | nenolod |
---|---|
date | Mon, 30 Oct 2006 22:35:55 -0800 |
parents | 03cfb311eafd |
children | 9d9fc9e1de48 |
files | ChangeLog src/spectrum/spectrum.c |
diffstat | 2 files changed, 20 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Oct 30 22:31:45 2006 -0800 +++ b/ChangeLog Mon Oct 30 22:35:55 2006 -0800 @@ -1,3 +1,19 @@ +2006-10-31 06:31:45 +0000 William Pitcock <nenolod@nenolod.net> + revision [292] + - spectrum analyzer plugin based on blurscope and a little of xmms-finespectrum + + trunk/configure.ac | 3 + trunk/src/spectrum/Makefile | 4 + trunk/src/spectrum/blur_scope.c | 325 ------------------------------------- + trunk/src/spectrum/blur_scope.h | 15 - + trunk/src/spectrum/bscope_logo.xpm | 123 -------------- + trunk/src/spectrum/config.c | 131 -------------- + trunk/src/spectrum/logo.xpm | 123 ++++++++++++++ + trunk/src/spectrum/spectrum.c | 228 +++++++++++++++++++++++++ + trunk/src/spectrum/xmms_logo.xpm | 135 --------------- + 9 files changed, 355 insertions(+), 732 deletions(-) + + 2006-10-31 01:47:41 +0000 William Pitcock <nenolod@nenolod.net> revision [290] - C++ files -> .cxx
--- a/src/spectrum/spectrum.c Mon Oct 30 22:31:45 2006 -0800 +++ b/src/spectrum/spectrum.c Mon Oct 30 22:35:55 2006 -0800 @@ -1,5 +1,6 @@ -/* Fine Spectrum Analyzer Visualization Plugin for XMMS +/* Spectrum Analyzer Visualization Plugin for Audacious * + * Copyright (C) 2006 William Pitcock * Copyright (C) 1998-2001 Vágvölgyi Attila, Peter Alm, Mikael Alm, * Olle Hallnas, Thomas Nilsson and 4Front Technologies * @@ -62,7 +63,7 @@ NULL, NULL, 0, - "Fine Spectrum Analyzer" VERSION, + "Spectrum Analyzer " VERSION, 0, 1, fsanalyzer_init, /* init */ @@ -92,7 +93,7 @@ return; window = gtk_window_new(GTK_WINDOW_TOPLEVEL); - gtk_window_set_title(GTK_WINDOW(window),"Fine Spectrum Analyzer"); + gtk_window_set_title(GTK_WINDOW(window),"Spectrum Analyzer"); gtk_window_set_policy(GTK_WINDOW(window), FALSE, FALSE, FALSE); gtk_widget_realize(window); bg_pixmap = gdk_pixmap_create_from_xpm_d(window->window,NULL,NULL,logo_xpm);