Mercurial > audlegacy-plugins
view src/skins/util.h @ 3073:fbe76a1d61e2
crossfade-ng: do not force ourselves as default, kthx
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Sun, 26 Apr 2009 00:03:22 -0500 |
parents | f7613eafe9f0 |
children |
line wrap: on
line source
/* Audacious - Cross-platform multimedia player * Copyright (C) 2005-2008 Audacious development team * * Based on BMP: * Copyright (C) 2003-2004 BMP development team * * Based on XMMS: * Copyright (C) 1998-2003 XMMS development team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; under version 3 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses>. * * The Audacious team does not consider modular code linking to * Audacious or using our public API to be a derived work. */ #ifndef UTIL_H #define UTIL_H #ifdef _AUDACIOUS_CORE # ifdef HAVE_CONFIG_H # include "config.h" # endif #endif #include <glib.h> #include <gtk/gtk.h> G_BEGIN_DECLS #include "audlegacy/plugin.h" #include "audlegacy/libSAD.h" #define SWAP(a, b) { a^=b; b^=a; a^=b; } typedef gboolean(*DirForeachFunc) (const gchar * path, const gchar * basename, gpointer user_data); gchar *find_file_recursively(const gchar * dirname, const gchar * file); gchar *find_path_recursively(const gchar * dirname, const gchar * file); void del_directory(const gchar * dirname); gboolean dir_foreach(const gchar * path, DirForeachFunc function, gpointer user_data, GError ** error); INIFile *open_ini_file(const gchar *filename); void close_ini_file(INIFile *key_file); gchar *read_ini_string(INIFile *key_file, const gchar *section, const gchar *key); GArray *read_ini_array(INIFile *key_file, const gchar *section, const gchar *key); GArray *string_to_garray(const gchar * str); void glist_movedown(GList * list); void glist_moveup(GList * list); void util_set_cursor(GtkWidget * window); gboolean text_get_extents(const gchar * fontname, const gchar * text, gint * width, gint * height, gint * ascent, gint * descent); gboolean file_is_archive(const gchar * filename); gchar *archive_decompress(const gchar * path); gchar *archive_basename(const gchar * path); guint gint_count_digits(gint n); GtkWidget *make_filebrowser(const gchar *title, gboolean save); GtkWidget *util_info_dialog(const gchar * title, const gchar * text, const gchar * button_text, gboolean modal, GCallback button_action, gpointer action_data); GdkPixbuf *audacious_create_colorized_pixbuf(GdkPixbuf *src, gint red, gint green, gint blue); gchar *util_get_localdir(void); gchar *construct_uri(gchar *string, const gchar *playlist_name); SAD_sample_format sadfmt_from_afmt(AFormat fmt); /* minimizes number of realloc's */ gpointer smart_realloc(gpointer ptr, gsize *size); void make_directory(const gchar * path, mode_t mode); G_END_DECLS #endif