1 /* 2 * Copyright (C) 2004,2005 Marc Pavot <marc.pavot@gmail.com> 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation; either version 2 of the License, or 7 * (at your option) any later version. 8 * 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 * You should have received a copy of the GNU General Public License 15 * along with this program; if not, write to the Free Software 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 17 * 18 */ 19 20 21 #ifndef __ARIO_LYRICS_LETRAS_H 22 #define __ARIO_LYRICS_LETRAS_H 23 24 #include "lyrics/ario-lyrics-provider.h" 25 26 G_BEGIN_DECLS 27 28 #define TYPE_ARIO_LYRICS_LETRAS (ario_lyrics_letras_get_type ()) 29 #define ARIO_LYRICS_LETRAS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_ARIO_LYRICS_LETRAS, ArioLyricsLetras)) 30 #define ARIO_LYRICS_LETRAS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), TYPE_ARIO_LYRICS_LETRAS, ArioLyricsLetrasClass)) 31 #define IS_ARIO_LYRICS_LETRAS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_ARIO_LYRICS_LETRAS)) 32 #define IS_ARIO_LYRICS_LETRAS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_ARIO_LYRICS_LETRAS)) 33 #define ARIO_LYRICS_LETRAS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_ARIO_LYRICS_LETRAS, ArioLyricsLetrasClass)) 34 35 typedef struct 36 { 37 ArioLyricsProvider parent; 38 } ArioLyricsLetras; 39 40 typedef struct 41 { 42 ArioLyricsProviderClass parent; 43 } ArioLyricsLetrasClass; 44 45 GType ario_lyrics_letras_get_type (void) G_GNUC_CONST; 46 47 ArioLyricsProvider* ario_lyrics_letras_new (void); 48 49 G_END_DECLS 50 51 #endif /* __ARIO_LYRICS_LETRAS_H */ 52