Mercurial > audlegacy
annotate audacious/hints.h @ 2220:b4d874d3d9ff trunk
[svn] - fix a typo that kustodian pointed out. (probably it's mine.)
author | yaz |
---|---|
date | Fri, 29 Dec 2006 09:59:21 -0800 |
parents | f18a5b617c34 |
children | 4bc65cec8f7a |
rev | line source |
---|---|
0 | 1 /* BMP - Cross-platform multimedia player |
2 * Copyright (C) 2003-2004 BMP development team. | |
3 * | |
4 * Based on XMMS: | |
5 * Copyright (C) 1998-2003 XMMS development team. | |
6 * | |
7 * This program is free software; you can redistribute it and/or modify | |
8 * 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
|
9 * the Free Software Foundation; under version 2 of the License. |
0 | 10 * |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
1459 | 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
0 | 19 */ |
20 | |
21 #ifndef HINTS_H | |
22 #define HINTS_H | |
23 | |
24 #include <glib.h> | |
25 #include <gtk/gtk.h> | |
26 | |
27 /* Window Managers */ | |
28 #define WM_HINTS_NONE 0 | |
29 #define WM_HINTS_GNOME 1 | |
30 #define WM_HINTS_NET 2 | |
31 | |
32 void check_wm_hints(void); | |
33 void hint_set_always(gboolean always); | |
34 void hint_set_skip_winlist(GtkWidget * window); | |
35 void hint_set_sticky(gboolean sticky); | |
36 gboolean hint_always_on_top_available(void); | |
37 gboolean hint_move_resize_available(void); | |
38 void hint_move_resize(GtkWidget * window, gint x, gint y, gboolean move); | |
39 | |
40 #endif |