4 * @file gmyth/gmyth_programinfo.h
6 * @brief <p> GMythProgramInfo representing the program info, with the
7 * configuration data to the actual remote file in the TV chain.
9 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
10 * @author Rosfran Borges <rosfran.borges@indt.org.br>
11 * @author Leonardo Sobral Cunha <leonardo.cunha@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
30 #ifndef _GMYTH_PROGRAMINFO_H
31 #define _GMYTH_PROGRAMINFO_H
34 #include <glib-object.h>
36 #include "gmyth_stringlist.h"
39 #define GMYTH_PROGRAM_INFO_TYPE (gmyth_program_info_get_type ())
40 #define GMYTH_PROGRAM_INFO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_PROGRAM_INFO_TYPE, GMythProgramInfo))
41 #define GMYTH_PROGRAM_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_PROGRAM_INFO_TYPE, GMythProgramInfoClass))
42 #define IS_GMYTH_PROGRAM_INFO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GMYTH_PROGRAM_INFO_TYPE))
43 #define IS_GMYTH_PROGRAM_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_PROGRAM_INFO_TYPE))
44 #define GMYTH_PROGRAM_INFO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GMYTH_PROGRAM_INFO_TYPE, GMythProgramInfoClass))
45 typedef struct _GMythProgramInfo GMythProgramInfo;
46 typedef struct _GMythProgramInfoClass GMythProgramInfoClass;
48 struct _GMythProgramInfoClass {
49 GObjectClass parent_class;
57 * The GMythProgramInfo structure represents a program information
58 * stored in the database. It could be a program from the EPG data,
59 * a program scheduled to be recorded, or a program already recorded.
61 struct _GMythProgramInfo {
64 /** The channel unique ID. */
66 /** The program start time. */
68 /** The program end time. */
70 /** The recording schedule start time. */
72 /** The recording schedule end time */
75 /** The program title. */
77 /** The program subtitle. */
79 /** The program description. */
81 /** The program category. */
86 /** The associated channel name. */
89 GString *chanOutputFilters;
92 /** The program unique id. */
93 GString *xx_program_id;
98 /** A flag informing if the program has video or not. */
106 GTimeVal *originalAirDate;
107 GTimeVal *lastmodified;
108 GTimeVal *lastInUseTime;
121 /** The backend video source id associated to this program.*/
123 /** the backend input id associated to this program.*/
125 /** The backend card id associated to this program.*/
130 GString *schedulerid;
144 /** The file size of the recorded program.*/
147 /** The file name of the recorded program.*/
152 GType gmyth_program_info_type(void);
154 GMythProgramInfo *gmyth_program_info_new(void);
156 GMythStringList *gmyth_program_info_to_string_list(GMythProgramInfo * prog,
161 * gmyth_program_info_from_string_list_from_pos(GMythStringList * slist,
164 GMythProgramInfo *gmyth_program_info_from_string_list(GMythStringList *
168 * gmyth_program_info_from_string_list_next_prog(GMythStringList *
171 const gchar *gmyth_program_info_to_string(const GMythProgramInfo *
174 gboolean gmyth_program_info_is_equals(const GMythProgramInfo *
176 const GMythProgramInfo *
180 #endif /*_GMYTH_PROGRAMINFO_H*/