comparison src/audacious/ui_urlopener.h @ 2422:b31111934cd3 trunk

[svn] - break out the URL opener UI code
author nenolod
date Sat, 27 Jan 2007 04:37:49 -0800
parents
children 3b6d316f8b09
comparison
equal deleted inserted replaced
2421:74ec16ef847b 2422:b31111934cd3
1 /* Audacious - Cross-platform multimedia player
2 * Copyright (C) 2005-2007 Audacious development team
3 *
4 * Based on BMP:
5 * Copyright (C) 2003-2004 BMP development team
6 *
7 * Based on XMMS:
8 * Copyright (C) 1998-2003 XMMS development team
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; under version 2 of the License.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 */
23
24 #ifndef __AUDACIOUS_UI_URLOPENER_H__
25 #define __AUDACIOUS_UI_URLOPENER_H__
26
27 #ifdef _AUDACIOUS_CORE
28 # ifdef HAVE_CONFIG_H
29 # include "config.h"
30 # endif
31 #endif
32
33 #include <glib.h>
34 #include <gtk/gtk.h>
35
36 G_BEGIN_DECLS
37
38 GtkWidget *util_add_url_dialog_new(const gchar * caption, GCallback ok_func,
39 GCallback enqueue_func);
40
41 G_END_DECLS
42
43 #endif