Mercurial > audlegacy-plugins
view src/arts/arts.c @ 1055:0cc6b35fbeb4 trunk
[svn] - evdev-plug 0.2: do not intercept all event types, currently only pick types KEY and ABSOLUTE; there could be other event types that are worth intercepting, feedback needed about this
author | giacomo |
---|---|
date | Tue, 22 May 2007 05:24:09 -0700 |
parents | 3da1b8942b8b |
children | c21fa61d32f8 |
line wrap: on
line source
/* * aRts ouput plugin for xmms * * Copyright (C) 2000,2003 Haavard Kvaalen <havardk@xmms.org> * * Licenced under GNU GPL version 2. * * Audacious port by Giacomo Lozito from develia.org * */ #include "arts.h" #include "audacious/util.h" static void about(void) { static GtkWidget *dialog; if (dialog) return; dialog = xmms_show_message("About aRts Output", "aRts output plugin by " "H\303\245vard Kv\303\245len <havardk@xmms.org>\n" "Audacious port by Giacomo Lozito from develia.org", "Ok", FALSE, NULL, NULL); gtk_signal_connect(GTK_OBJECT(dialog), "destroy", GTK_SIGNAL_FUNC(gtk_widget_destroyed), &dialog); } OutputPlugin arts_op = { NULL, NULL, "aRts Output Plugin 0.7.1", artsxmms_init, NULL, about, artsxmms_configure, artsxmms_get_volume, artsxmms_set_volume, artsxmms_open, artsxmms_write, artsxmms_close, artsxmms_flush, artsxmms_pause, artsxmms_free, artsxmms_playing, artsxmms_get_output_time, artsxmms_get_written_time, artsxmms_tell_audio }; OutputPlugin *get_oplugin_info(void) { return &arts_op; }