Mercurial > audlegacy
annotate audacious/hints.h @ 2296:b9895bba71d0 trunk
[svn] - fix XML definition for missing action: "track info" -> "current track info"
author | nenolod |
---|---|
date | Sun, 07 Jan 2007 15:23:46 -0800 |
parents | 4bc65cec8f7a |
children |
rev | line source |
---|---|
2252 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2007 Audacious development team | |
3 * | |
4 * Based on BMP: | |
0 | 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 | |
2105
f18a5b617c34
[svn] - move to GPLv2-only. Based on my interpretation of the license, we are
nenolod
parents:
1459
diff
changeset
|
12 * the Free Software Foundation; under version 2 of the License. |
0 | 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 | |
1459 | 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
0 | 22 */ |
23 | |
24 #ifndef HINTS_H | |
25 #define HINTS_H | |
26 | |
27 #include <glib.h> | |
28 #include <gtk/gtk.h> | |
29 | |
30 /* Window Managers */ | |
31 #define WM_HINTS_NONE 0 | |
32 #define WM_HINTS_GNOME 1 | |
33 #define WM_HINTS_NET 2 | |
34 | |
35 void check_wm_hints(void); | |
36 void hint_set_always(gboolean always); | |
37 void hint_set_skip_winlist(GtkWidget * window); | |
38 void hint_set_sticky(gboolean sticky); | |
39 gboolean hint_always_on_top_available(void); | |
40 gboolean hint_move_resize_available(void); | |
41 void hint_move_resize(GtkWidget * window, gint x, gint y, gboolean move); | |
42 | |
43 #endif |