[svn r7] Corrected glib macros G_BEGIN_DECLS, G_END_DECLS usage (andrunko's patch)
4 * @file gmyth/gmyth_tvchain.h
6 * @brief <p> This component contains functions for creating and accessing
7 * the tvchain functions for live tv playback.
9 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
10 * @author Hallyson Luiz de Morais Melo <hallyson.melo@indt.org.br>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU Lesser General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #ifndef LIVETVCHAIN_H_
30 #define LIVETVCHAIN_H_
32 #include <glib-object.h>
35 #include "gmyth_common.h"
39 #define GMYTH_TVCHAIN_TYPE (gmyth_tvchain_get_type ())
40 #define GMYTH_TVCHAIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_TVCHAIN_TYPE, GMythTVChain))
41 #define GMYTH_TVCHAIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_TVCHAIN_TYPE, GMythTVChainClass))
42 #define IS_GMYTH_TVCHAIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_TVCHAIN_TYPE))
43 #define IS_GMYTH_TVCHAIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_TVCHAIN_TYPE))
44 #define GMYTH_TVCHAIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GMYTH_TVCHAIN_TYPE, GMythTVChainClass))
47 typedef struct _GMythTVChain GMythTVChain;
48 typedef struct _GMythTVChainClass GMythTVChainClass;
51 struct LiveTVChainEntry
58 gboolean discontinuity; // if true, can't play smooth from last entry
66 struct _GMythTVChainClass
68 GObjectClass parent_class;
87 GType gmyth_tvchain_get_type (void);
89 void gmyth_tvchain_initialize (GMythTVChain *tvchain,
91 gboolean gmyth_tvchain_reload_all (GMythTVChain *tvchain);
92 GString* gmyth_tvchain_get_id (GMythTVChain *tvchain);
93 int gmyth_tvchain_program_is_at (GMythTVChain *tvchain,
94 GString *chanid, time_t startts);
96 struct LiveTVChainEntry* gmyth_tvchain_get_entry_at (GMythTVChain *tvchain,
99 GMythProgramInfo* gmyth_tvchain_entry_to_program (GMythTVChain *tvchain,
100 struct LiveTVChainEntry *entry);
101 GMythProgramInfo* gmyth_tvchain_get_program_at (GMythTVChain *tvchain, gint index);
105 #endif /*LIVETVCHAIN_H_*/