Project: removed old WATC references
[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 #define MVS_TYPE_WATC_MOVIE mvs_watc_movie_get_type()
27 #define MVS_WATC_MOVIE(obj) \
28   (G_TYPE_CHECK_INSTANCE_CAST ((obj), MVS_TYPE_WATC_MOVIE, MvsWatcMovie))
29 #define MVS_WATC_MOVIE_CLASS(klass) \
30   (G_TYPE_CHECK_CLASS_CAST ((klass), MVS_TYPE_WATC_MOVIE, MvsWatcMovieClass))
31 #define MVS_IS_WATC_MOVIE(obj) \
32   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MVS_TYPE_WATC_MOVIE))
33 #define MVS_IS_WATC_MOVIE_CLASS(klass) \
34   (G_TYPE_CHECK_CLASS_TYPE ((klass), MVS_TYPE_WATC_MOVIE))
35 #define MVS_WATC_MOVIE_GET_CLASS(obj) \
36   (G_TYPE_INSTANCE_GET_CLASS ((obj), MVS_TYPE_WATC_MOVIE, MvsWatcMovieClass))
37
38 typedef struct _MvsWatcMoviePrivate MvsWatcMoviePrivate;
39
40 typedef struct {
41         GObject parent;
42
43         /* <private> */
44         MvsWatcMoviePrivate *priv;
45 } MvsWatcMovie;
46
47 typedef struct {
48         GObjectClass parent_class;
49 } MvsWatcMovieClass;
50
51 GType mvs_watc_movie_get_type (void);
52 MvsWatcMovie* mvs_watc_movie_new (void);
53
54 gboolean
55 mvs_watc_movie_set_name (MvsWatcMovie *self, const gchar *name);
56
57 const gchar*
58 mvs_watch_movie_get_name (MvsWatcMovie *self);
59
60 gboolean
61 mvs_watc_movie_set_stingers (MvsWatcMovie *self, gboolean has_stingers);
62
63 gboolean
64 mvs_watch_movie_get_stingers (MvsWatcMovie *self);
65
66 G_END_DECLS
67
68 #endif /* _MVS_WATC_MOVIE */