Mercurial > audlegacy
annotate src/audacious/ui_dock.h @ 4621:fb56923e8206
Updated pkg.m4.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Thu, 05 Jun 2008 16:04:18 +0300 |
parents | 2eee464379dc |
children |
rev | line source |
---|---|
4546 | 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 3 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, see <http://www.gnu.org/licenses>. | |
21 * | |
22 * The Audacious team does not consider modular code linking to | |
23 * Audacious or using our public API to be a derived work. | |
24 */ | |
25 | |
4557
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
4546
diff
changeset
|
26 #ifndef AUDACIOUS_UI_DOCK_H |
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
4546
diff
changeset
|
27 #define AUDACIOUS_UI_DOCK_H |
4546 | 28 |
29 #include <glib.h> | |
30 #include <gtk/gtk.h> | |
31 | |
32 void dock_set_uposition(GtkWindow * widget, gint x, gint y); | |
33 GList *dock_add_window(GList * window_list, GtkWindow * window); | |
34 GList *dock_remove_window(GList * window_list, GtkWindow * window); | |
35 void dock_move_press(GList * window_list, GtkWindow * w, | |
36 GdkEventButton * event, gboolean move_list); | |
37 void dock_move_motion(GtkWindow * w, GdkEventMotion * event); | |
38 void dock_move_release(GtkWindow * w); | |
39 void dock_get_widget_pos(GtkWindow * w, gint * x, gint * y); | |
40 gboolean dock_is_moving(GtkWindow * w); | |
41 void dock_shade(GList * window_list, GtkWindow * widget, gint new_h); | |
42 | |
43 GList *dock_window_set_decorated(GList * list, GtkWindow * window, | |
44 gboolean decorated); | |
45 void dock_window_resize(GtkWindow * widget, gint new_w, gint new_h, gint w, gint h); | |
46 | |
47 GList *get_dock_window_list(); | |
48 void set_dock_window_list(GList * list); | |
49 | |
4557
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
4546
diff
changeset
|
50 #endif /* AUDACIOUS_UI_DOCK_H */ |