1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2007 Nicolas Pennequin
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
25 #if defined(HAVE_ALBUMART) || defined(PLUGIN)
29 #include "skin_engine/skin_engine.h"
31 /* Look for albumart bitmap in the same dir as the track and in its parent dir.
32 * Calls size_func to get the dimensions to look for
33 * Stores the found filename in the buf parameter.
34 * Returns true if a bitmap was found, false otherwise */
35 bool find_albumart(const struct mp3entry
*id3
, char *buf
, int buflen
,
38 /* Draw the album art bitmap from the given handle ID onto the given WPS.
39 Call with clear = true to clear the bitmap instead of drawing it. */
40 void draw_album_art(struct gui_wps
*gwps
, int handle_id
, bool clear
);
42 bool search_albumart_files(const struct mp3entry
*id3
, const char *size_string
,
43 char *buf
, int buflen
);
45 void get_albumart_size(struct bitmap
*bmp
);
47 #endif /* HAVE_ALBUMART */
49 #endif /* _ALBUMART_H_ */