Mercurial > audlegacy
annotate src/audacious/ui_fileinfo.h @ 2810:49bcc7349295 trunk
[svn] - Fixed some very visible errors in German translation
author | mf0102 |
---|---|
date | Sat, 26 May 2007 09:18:11 -0700 |
parents | 564e8a1fe09a |
children | 7dad846ec699 |
rev | line source |
---|---|
2313 | 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_FILEINFO_H_ | |
22 #define _UI_FILEINFO_H_ | |
23 | |
2348
564e8a1fe09a
[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)
giacomo
parents:
2313
diff
changeset
|
24 #include "titlestring.h" |
564e8a1fe09a
[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)
giacomo
parents:
2313
diff
changeset
|
25 #include <glib.h> |
564e8a1fe09a
[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)
giacomo
parents:
2313
diff
changeset
|
26 |
2313 | 27 void create_fileinfo_window(void); |
28 void fileinfo_show_for_tuple(TitleInput *tuple); | |
29 gchar* fileinfo_recursive_get_image(const gchar* path, const gchar* file_name, gint depth); | |
30 void fileinfo_show_for_path(gchar *path); | |
31 | |
32 #endif |