comparison src/audacious/hints.c @ 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 d226b83fa329
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 #include "hints.h"
25
26 #include <glib.h>
27 #include <gtk/gtk.h>
28
29 #include "ui_equalizer.h"
30 #include "ui_main.h"
31 #include "ui_playlist.h"
32
33 #include "platform/smartinclude.h"
34
35 void
36 hint_set_always(gboolean always)
37 {
38 gtk_window_set_keep_above(GTK_WINDOW(mainwin), always);
39 gtk_window_set_keep_above(GTK_WINDOW(equalizerwin), always);
40 gtk_window_set_keep_above(GTK_WINDOW(playlistwin), always);
41 }
42
43 void
44 hint_set_sticky(gboolean sticky)
45 {
46 if (sticky) {
47 gtk_window_stick(GTK_WINDOW(mainwin));
48 gtk_window_stick(GTK_WINDOW(equalizerwin));
49 gtk_window_stick(GTK_WINDOW(playlistwin));
50 }
51 else {
52 gtk_window_unstick(GTK_WINDOW(mainwin));
53 gtk_window_unstick(GTK_WINDOW(equalizerwin));
54 gtk_window_unstick(GTK_WINDOW(playlistwin));
55 }
56 }
57