annotate src/skins/ui_hints.h @ 3161:6dd886b5c72b

revive stdio plugin for now. gio cannot write id3 tags.
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Mon, 13 Jul 2009 23:53:41 +0900
parents b7ab90e4235e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2626
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
1 /* Audacious - Cross-platform multimedia player
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
2 * Copyright (C) 2005-2007 Audacious development team
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
3 *
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
4 * Based on BMP:
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
5 * Copyright (C) 2003-2004 BMP development team.
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
6 *
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
7 * Based on XMMS:
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
8 * Copyright (C) 1998-2003 XMMS development team.
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
9 *
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
10 * This program is free software; you can redistribute it and/or modify
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
11 * it under the terms of the GNU General Public License as published by
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
12 * the Free Software Foundation; under version 3 of the License.
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
13 *
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
14 * This program is distributed in the hope that it will be useful,
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
17 * GNU General Public License for more details.
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
18 *
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
19 * You should have received a copy of the GNU General Public License
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
20 * along with this program. If not, see <http://www.gnu.org/licenses>.
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
21 *
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
22 * The Audacious team does not consider modular code linking to
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
23 * Audacious or using our public API to be a derived work.
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
24 */
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
25
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
26 #ifndef AUDACIOUS_UI_HINTS_H
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
27 #define AUDACIOUS_UI_HINTS_H
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
28
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
29 #include <glib.h>
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
30 #include <gtk/gtk.h>
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
31
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
32 void hint_set_always(gboolean always);
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
33 void hint_set_sticky(gboolean sticky);
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
34
b7ab90e4235e remove more #if 0's, add ui_hints
Tomasz Mon <desowin@gmail.com>
parents:
diff changeset
35 #endif /* AUDACIOUS_UI_HINTS_H */