Update the go-menu when disabling browser in AE.
[gmpc.git] / src / playlist3.h
blob22ceeaff8568c25a0d9e099ffd832fd91c4b5dd2
1 /* Gnome Music Player Client (GMPC)
2 * Copyright (C) 2004-2011 Qball Cow <qball@sarine.nl>
3 * Project homepage: http://gmpc.wikia.com/
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #ifndef __PLAYLIST3_H__
21 #define __PLAYLIST3_H__
23 #include <libmpd/libmpd.h>
25 extern GtkTreeModel *pl3_tree;
26 extern GtkListStore *pl3_store;
29 void pl3_show_window(void);
30 void pl3_toggle_hidden(void);
31 void pl3_push_statusbar_message(const char *mesg);
32 void pl3_push_rsb_message(const gchar *string);
33 int pl3_cat_get_selected_browser(void);
35 typedef enum {
36 PLAYLIST_NO_ZOOM,
37 PLAYLIST_SMALL,
38 PLAYLIST_MINI,
39 PLAYLIST_ZOOM_LEVELS
40 }PlaylistZoom;
41 extern int pl3_zoom;
43 void playlist3_destroy(void);
44 gboolean playlist3_show_playtime(gulong playtime);
47 void playlist_editor_fill_list(void);
49 int pl3_window_key_press_event(GtkWidget *, GdkEventKey *);
52 extern GtkBuilder *pl3_xml;
53 /**
54 * Server information
57 void serverinformation_show_popup(void);
59 void pl3_window_fullscreen(void);
60 #endif