comparison src/audacious/dock.h @ 2313:3149d4b1a9a9 trunk

[svn] - objective-make autodepend fixes - move all sourcecode into src/ and adjust Makefiles accordingly
author nenolod
date Fri, 12 Jan 2007 11:43:40 -0800
parents
children 3b6d316f8b09
comparison
equal deleted inserted replaced
2312:e1a5a66fb9cc 2313:3149d4b1a9a9
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 DOCK_H
25 #define DOCK_H
26
27 #include <glib.h>
28 #include <gtk/gtk.h>
29
30 void dock_set_uposition(GtkWindow * widget, gint x, gint y);
31 GList *dock_add_window(GList * window_list, GtkWindow * window);
32 GList *dock_remove_window(GList * window_list, GtkWindow * window);
33 void dock_move_press(GList * window_list, GtkWindow * w,
34 GdkEventButton * event, gboolean move_list);
35 void dock_move_motion(GtkWindow * w, GdkEventMotion * event);
36 void dock_move_release(GtkWindow * w);
37 void dock_get_widget_pos(GtkWindow * w, gint * x, gint * y);
38 gboolean dock_is_moving(GtkWindow * w);
39 void dock_shade(GList * window_list, GtkWindow * widget, gint new_h);
40
41 GList *dock_window_set_decorated(GList * list, GtkWindow * window,
42 gboolean decorated);
43 void dock_window_resize(GtkWindow * widget, gint new_w, gint new_h, gint w, gint h);
44
45 #endif