1 /*
2  *  Copyright (C) 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, or (at your option)
7  *  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 #include <gtk/gtk.h>
21 
22 #ifndef __ARIO_SHELL_LYRICS_H
23 #define __ARIO_SHELL_LYRICS_H
24 
25 G_BEGIN_DECLS
26 
27 #define TYPE_ARIO_SHELL_LYRICS         (ario_shell_lyrics_get_type ())
28 #define ARIO_SHELL_LYRICS(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_ARIO_SHELL_LYRICS, ArioShellLyrics))
29 #define ARIO_SHELL_LYRICS_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), TYPE_ARIO_SHELL_LYRICS, ArioShellLyricsClass))
30 #define IS_ARIO_SHELL_LYRICS(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_ARIO_SHELL_LYRICS))
31 #define IS_ARIO_SHELL_LYRICS_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_ARIO_SHELL_LYRICS))
32 #define ARIO_SHELL_LYRICS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_ARIO_SHELL_LYRICS, ArioShellLyricsClass))
33 
34 typedef struct ArioShellLyricsPrivate ArioShellLyricsPrivate;
35 
36 typedef struct
37 {
38         GtkWindow parent;
39 
40         ArioShellLyricsPrivate *priv;
41 } ArioShellLyrics;
42 
43 typedef struct
44 {
45         GtkWindowClass parent_class;
46 } ArioShellLyricsClass;
47 
48 GType              ario_shell_lyrics_get_type         (void) G_GNUC_CONST;
49 
50 GtkWidget *        ario_shell_lyrics_new              (void);
51 
52 G_END_DECLS
53 
54 #endif /* __ARIO_SHELL_LYRICS_H */
55