Fix the label int he sidebar
[gmpc.git] / src / playlist3.h
blobb5c169db5b7dde2bf247ff429c867391452a10f0
1 /* Gnome Music Player Client (GMPC)
2 * Copyright (C) 2004-2012 Qball Cow <qball@gmpclient.org>
3 * Project homepage: http://gmpclient.org/
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_and_position_window(void);
30 void pl3_toggle_hidden(void);
31 int pl3_cat_get_selected_browser(void);
33 typedef enum {
34 PLAYLIST_NO_ZOOM,
35 PLAYLIST_SMALL,
36 PLAYLIST_MINI,
37 PLAYLIST_ZOOM_LEVELS
38 }PlaylistZoom;
39 extern int pl3_zoom;
41 void playlist3_destroy(void);
42 gboolean playlist3_show_playtime(gulong playtime);
45 void playlist_editor_fill_list(void);
47 int pl3_window_key_press_event(GtkWidget *, GdkEventKey *);
50 extern GtkBuilder *pl3_xml;
51 /**
52 * Server information
55 void serverinformation_show_popup(void);
57 gboolean pl3_window_fullscreen(void);
58 GtkAccelGroup *playlist3_get_accel_group(void);
60 GtkWidget* playlist3_get_widget_by_id(const char *id);
62 void open_local_file(void);
63 #endif