annotate audacious/playlist_list.h @ 1534:02ce15d47ce1 trunk

[svn] - configure dialog for libnotify plugin
author giacomo
date Tue, 08 Aug 2006 09:13:41 -0700
parents 705d4c089fce
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
1 /* BMP - Cross-platform multimedia player
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
2 * Copyright (C) 2003-2004 BMP development team.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
3 *
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
4 * Based on XMMS:
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
5 * Copyright (C) 1998-2003 XMMS development team.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
6 *
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
7 * This program is free software; you can redistribute it and/or modify
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
8 * it under the terms of the GNU General Public License as published by
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
9 * the Free Software Foundation; either version 2 of the License, or
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
10 * (at your option) any later version.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
11 *
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
12 * This program is distributed in the hope that it will be useful,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
15 * GNU General Public License for more details.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
16 *
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
17 * You should have received a copy of the GNU General Public License
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
18 * along with this program; if not, write to the Free Software
1459
705d4c089fce [svn] Fix postal code.
chainsaw
parents: 1458
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
20 */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
21
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
22 #ifndef PLAYLIST_LIST_H
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
23 #define PLAYLIST_LIST_H
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
24
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
25 #include <glib.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
26 #include <gtk/gtk.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
27 #include <gdk/gdk.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
28
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
29 #include "widget.h"
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
30
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
31 #define PLAYLIST_LIST(x) ((PlayList_List *)(x))
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
32 struct _PlayList_List {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
33 Widget pl_widget;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
34 gint pl_first, pl_fheight, pl_prev_selected, pl_prev_min, pl_prev_max;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
35 gint pl_num_visible, pl_drag_pos;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
36 gboolean pl_dragging, pl_auto_drag_down, pl_auto_drag_up;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
37 gint pl_auto_drag_up_tag, pl_auto_drag_down_tag;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
38 gboolean pl_drag_motion;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
39 gint drag_motion_x, drag_motion_y;
1286
f8c976466f60 [svn] - proper X11 way of fixing this
nenolod
parents: 1050
diff changeset
40 gboolean pl_tooltips;
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
41 };
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
42
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
43 typedef struct _PlayList_List PlayList_List;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
44
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
45 PlayList_List *create_playlist_list(GList ** wlist, GdkPixmap * parent,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
46 GdkGC * gc, gint x, gint y, gint w,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
47 gint h);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
48 void playlist_list_move_up(PlayList_List * pl);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
49 void playlist_list_move_down(PlayList_List * pl);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
50 int playlist_list_get_playlist_position(PlayList_List * pl, gint x, gint y);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
51 void playlist_list_set_font(const gchar * font);
1049
0390e4394c50 [svn] - add prototype for shade_pixmap() to be used on skin redraw (TRUE)
nenolod
parents: 0
diff changeset
52 GdkPixmap *rootpix;
1379
5767c05ce900 [svn] - do transparency the X11 way
nenolod
parents: 1286
diff changeset
53 GdkPixmap *shade_pixmap(GdkDrawable *in, gint x, gint y, gint x_offset, gint y_offset, gint w, gint h, GdkColor *shade_color);
5767c05ce900 [svn] - do transparency the X11 way
nenolod
parents: 1286
diff changeset
54 GdkDrawable *get_transparency_pixmap(void);
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
55
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
56 #endif