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. */
67 /** The program start time. */
69 /** The program end time. */
71 /** The recording schedule start time. */
73 /** The recording schedule end time */
76 /** The program title. */
78 /** The program subtitle. */
80 /** The program description. */
82 /** The program category. */
87 /** The associated channel name. */
90 GString *chanOutputFilters;
93 /** The program unique id. */
99 /** A flag informing if the program has video or not. */
107 GTimeVal *originalAirDate;
108 GTimeVal *lastmodified;
109 GTimeVal *lastInUseTime;
122 /** The backend video source id associated to this program.*/
124 /** the backend input id associated to this program.*/
126 /** The backend card id associated to this program.*/
131 GString *schedulerid;
141 /** The file size of the recorded program.*/
144 /** The file name of the recorded program.*/
149 GType gmyth_program_info_type(void);
151 GMythProgramInfo *gmyth_program_info_new(void);
153 GMythStringList *gmyth_program_info_to_string_list(GMythProgramInfo * prog,
158 * gmyth_program_info_from_string_list_from_pos(GMythStringList * slist,
161 GMythProgramInfo *gmyth_program_info_from_string_list(GMythStringList *
165 * gmyth_program_info_from_string_list_next_prog(GMythStringList *
168 const gchar *gmyth_program_info_to_string(const GMythProgramInfo *
171 gboolean gmyth_program_info_is_equals(const GMythProgramInfo *
173 const GMythProgramInfo *
177 #endif /*_GMYTH_PROGRAMINFO_H*/