comparison src/audacious/ui_fileinfopopup.h @ 2348:564e8a1fe09a trunk

[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
author giacomo
date Tue, 16 Jan 2007 10:33:13 -0800
parents
children b047268eec32
comparison
equal deleted inserted replaced
2347:74bbc3e18cba 2348:564e8a1fe09a
1 /*
2 * Audacious: A cross-platform multimedia player
3 * Copyright (c) 2006 William Pitcock, Tony Vroon, George Averill,
4 * Giacomo Lozito, Derek Pomery and Yoshiki Yazawa.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 */
20
21 #ifndef _UI_FILEINFOPOPUP_H_
22 #define _UI_FILEINFOPOPUP_H_
23
24 #include "audacious/titlestring.h"
25 #include <gtk/gtk.h>
26
27 /* create/destroy */
28 GtkWidget* audacious_fileinfopopup_create(void);
29 void audacious_fileinfopopup_destroy(GtkWidget* fileinfopopup_win);
30
31 /* show/hide */
32 void audacious_fileinfopopup_show_from_tuple(GtkWidget *fileinfopopup_win, TitleInput *tuple);
33 void audacious_fileinfopopup_hide(GtkWidget *filepopup_win, gpointer unused);
34
35 #endif