WATC Movie: Improved WATC support
[maevies] / src / mvs-watc-movie.h
1 /*
2  * mvs-watc-movie.h
3  *
4  * This file is part of maevies
5  * Copyright (C) 2010 Simón Pena <spenap@gmail.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  */
18
19 #ifndef _MVS_WATC_MOVIE
20 #define _MVS_WATC_MOVIE
21
22 #include <glib-object.h>
23
24 G_BEGIN_DECLS
25
26 typedef enum {
27         MVS_STINGERS_UNKNOWN,
28         MVS_STINGERS_YES,
29         MVS_STINGERS_NO
30 } MvsStingers;
31
32 #define MVS_TYPE_WATC_MOVIE mvs_watc_movie_get_type()
33 #define MVS_WATC_MOVIE(obj) \
34   (G_TYPE_CHECK_INSTANCE_CAST ((obj), MVS_TYPE_WATC_MOVIE, MvsWatcMovie))
35 #define MVS_WATC_MOVIE_CLASS(klass) \
36   (G_TYPE_CHECK_CLASS_CAST ((klass), MVS_TYPE_WATC_MOVIE, MvsWatcMovieClass))
37 #define MVS_IS_WATC_MOVIE(obj) \
38   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MVS_TYPE_WATC_MOVIE))
39 #define MVS_IS_WATC_MOVIE_CLASS(klass) \
40   (G_TYPE_CHECK_CLASS_TYPE ((klass), MVS_TYPE_WATC_MOVIE))
41 #define MVS_WATC_MOVIE_GET_CLASS(obj) \
42   (G_TYPE_INSTANCE_GET_CLASS ((obj), MVS_TYPE_WATC_MOVIE, MvsWatcMovieClass))
43
44 typedef struct _MvsWatcMoviePrivate MvsWatcMoviePrivate;
45
46 typedef struct {
47         GObject parent;
48
49         /* <private> */
50         MvsWatcMoviePrivate *priv;
51 } MvsWatcMovie;
52
53 typedef struct {
54         GObjectClass parent_class;
55 } MvsWatcMovieClass;
56
57 GType mvs_watc_movie_get_type (void);
58 MvsWatcMovie* mvs_watc_movie_new (const gchar *raw_name);
59
60 gboolean
61 mvs_watc_movie_set_name (MvsWatcMovie *self, const gchar *name);
62
63 const gchar*
64 mvs_watch_movie_get_name (MvsWatcMovie *self);
65
66 gboolean
67 mvs_watc_movie_set_stingers (MvsWatcMovie *self, MvsStingers stingers);
68
69 MvsStingers
70 mvs_watch_movie_get_stingers (MvsWatcMovie *self);
71
72 void
73 mvs_watch_movie_print (MvsWatcMovie *self);
74
75 G_END_DECLS
76
77 #endif /* _MVS_WATC_MOVIE */