[svn r550] A lot of GObject fixes (using the GType casting), added inheritance to the GMythFile* modules, locks all the the STOP_RECORDING messages.
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"
36 #include "gmyth_backendinfo.h"
40 #define GMYTH_TVCHAIN_TYPE (gmyth_tvchain_get_type ())
41 #define GMYTH_TVCHAIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_TVCHAIN_TYPE, GMythTVChain))
42 #define GMYTH_TVCHAIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_TVCHAIN_TYPE, GMythTVChainClass))
43 #define IS_GMYTH_TVCHAIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GMYTH_TVCHAIN_TYPE))
44 #define IS_GMYTH_TVCHAIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_TVCHAIN_TYPE))
45 #define GMYTH_TVCHAIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GMYTH_TVCHAIN_TYPE, GMythTVChainClass))
48 typedef struct _GMythTVChain GMythTVChain;
49 typedef struct _GMythTVChainClass GMythTVChainClass;
52 struct LiveTVChainEntry
59 gboolean discontinuity; // if true, can't play smooth from last entry
67 struct _GMythTVChainClass
69 GObjectClass parent_class;
82 GTimeVal* cur_startts;
86 GMythBackendInfo *backend_info;
91 GType gmyth_tvchain_get_type (void);
93 GMythTVChain* gmyth_tvchain_new ();
95 gboolean gmyth_tvchain_initialize (GMythTVChain *tvchain,
96 GMythBackendInfo *backend_info);
97 gboolean gmyth_tvchain_reload_all (GMythTVChain *tvchain);
98 GString* gmyth_tvchain_get_id (GMythTVChain *tvchain);
99 gint gmyth_tvchain_program_is_at (GMythTVChain *tvchain,
100 GString *chanid, GTimeVal* startts);
102 struct LiveTVChainEntry* gmyth_tvchain_get_entry_at (GMythTVChain *tvchain,
105 GMythProgramInfo* gmyth_tvchain_entry_to_program (GMythTVChain *tvchain,
106 struct LiveTVChainEntry *entry);
107 GMythProgramInfo* gmyth_tvchain_get_program_at (GMythTVChain *tvchain, gint index);
111 #endif /*LIVETVCHAIN_H_*/