renatofilho@320
|
1 |
/**
|
renatofilho@320
|
2 |
* GMyth Library
|
renatofilho@320
|
3 |
*
|
renatofilho@320
|
4 |
* @file gmyth/gmyth_livetv.h
|
renatofilho@320
|
5 |
*
|
renatofilho@320
|
6 |
* @brief <p> GMythLiveTV starts a remote TV session with the MythTV backend.
|
renatofilho@320
|
7 |
*
|
renatofilho@320
|
8 |
* Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
|
renatofilho@320
|
9 |
* @author Rosfran Lins Borges <rosfran.borges@indt.org.br>
|
renatofilho@320
|
10 |
*
|
renatofilho@320
|
11 |
*//*
|
renatofilho@320
|
12 |
*
|
renatofilho@320
|
13 |
* This program is free software; you can redistribute it and/or modify
|
renatofilho@320
|
14 |
* it under the terms of the GNU Lesser General Public License as published by
|
renatofilho@320
|
15 |
* the Free Software Foundation; either version 2 of the License, or
|
renatofilho@320
|
16 |
* (at your option) any later version.
|
renatofilho@320
|
17 |
*
|
renatofilho@320
|
18 |
* This program is distributed in the hope that it will be useful,
|
renatofilho@320
|
19 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
renatofilho@320
|
20 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
renatofilho@320
|
21 |
* GNU General Public License for more details.
|
renatofilho@320
|
22 |
*
|
renatofilho@320
|
23 |
* You should have received a copy of the GNU Lesser General Public License
|
renatofilho@320
|
24 |
* along with this program; if not, write to the Free Software
|
renatofilho@320
|
25 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
renatofilho@320
|
26 |
*/
|
renatofilho@320
|
27 |
|
renatofilho@320
|
28 |
#ifndef GMYTH_LIVETV_H_
|
renatofilho@320
|
29 |
#define GMYTH_LIVETV_H_
|
renatofilho@320
|
30 |
|
renatofilho@320
|
31 |
#include <glib.h>
|
renatofilho@320
|
32 |
#include <glib-object.h>
|
renatofilho@320
|
33 |
|
renatofilho@320
|
34 |
#include "gmyth_recorder.h"
|
renatofilho@320
|
35 |
#include "gmyth_tvchain.h"
|
renatofilho@320
|
36 |
#include "gmyth_monitor_handler.h"
|
renatofilho@320
|
37 |
#include "gmyth_file_transfer.h"
|
renatofilho@320
|
38 |
#include "gmyth_programinfo.h"
|
renatofilho@320
|
39 |
#include "gmyth_backendinfo.h"
|
renatofilho@320
|
40 |
|
renatofilho@320
|
41 |
G_BEGIN_DECLS
|
renatofilho@320
|
42 |
|
renatofilho@320
|
43 |
#define GMYTH_LIVETV_TYPE (gmyth_livetv_get_type ())
|
renatofilho@320
|
44 |
#define GMYTH_LIVETV(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_LIVETV_TYPE, GMythLiveTV))
|
renatofilho@320
|
45 |
#define GMYTH_LIVETV_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_LIVETV_TYPE, GMythLiveTVClass))
|
renatofilho@320
|
46 |
#define IS_GMYTH_LIVETV(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_LIVETV_TYPE))
|
renatofilho@320
|
47 |
#define IS_GMYTH_LIVETV_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_LIVETV_TYPE))
|
renatofilho@320
|
48 |
#define GMYTH_LIVETV_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GMYTH_LIVETV_TYPE, GMythLiveTVClass))
|
renatofilho@320
|
49 |
|
renatofilho@320
|
50 |
typedef struct _GMythLiveTV GMythLiveTV;
|
renatofilho@320
|
51 |
typedef struct _GMythLiveTVClass GMythLiveTVClass;
|
renatofilho@320
|
52 |
|
renatofilho@320
|
53 |
struct _GMythLiveTVClass
|
renatofilho@320
|
54 |
{
|
renatofilho@320
|
55 |
GObjectClass parent_class;
|
renatofilho@320
|
56 |
|
renatofilho@320
|
57 |
/* callbacks */
|
renatofilho@320
|
58 |
};
|
renatofilho@320
|
59 |
|
renatofilho@320
|
60 |
struct _GMythLiveTV
|
renatofilho@320
|
61 |
{
|
renatofilho@320
|
62 |
GObject parent;
|
renatofilho@320
|
63 |
|
renatofilho@320
|
64 |
GString *local_hostname;
|
renatofilho@320
|
65 |
|
renatofilho@320
|
66 |
GMythBackendInfo *backend_info;
|
renatofilho@320
|
67 |
|
renatofilho@320
|
68 |
GMythRecorder *recorder;
|
renatofilho@320
|
69 |
GMythTVChain *tvchain;
|
renatofilho@320
|
70 |
GMythProgramInfo *proginfo;
|
renatofilho@320
|
71 |
|
renatofilho@320
|
72 |
GMythFileTransfer *file_transfer;
|
renatofilho@320
|
73 |
|
renatofilho@320
|
74 |
GMythMonitorHandler *monitor;
|
renatofilho@320
|
75 |
GMythURI *uri;
|
renatofilho@320
|
76 |
|
renatofilho@320
|
77 |
gboolean is_livetv;
|
renatofilho@320
|
78 |
gboolean setup_done;
|
renatofilho@320
|
79 |
|
renatofilho@320
|
80 |
};
|
renatofilho@320
|
81 |
|
renatofilho@320
|
82 |
GType gmyth_livetv_get_type (void);
|
renatofilho@320
|
83 |
|
renatofilho@320
|
84 |
GMythLiveTV* gmyth_livetv_new ();
|
renatofilho@320
|
85 |
|
renatofilho@320
|
86 |
void gmyth_livetv_start_playing (GMythLiveTV *livetv);
|
renatofilho@320
|
87 |
void gmyth_livetv_stop_playing (GMythLiveTV *livetv);
|
renatofilho@320
|
88 |
|
renatofilho@320
|
89 |
gboolean gmyth_livetv_setup (GMythLiveTV *livetv, GMythBackendInfo *backend_info);
|
renatofilho@320
|
90 |
gboolean gmyth_livetv_channel_setup ( GMythLiveTV *livetv, gint channel, GMythBackendInfo *backend_info );
|
renatofilho@320
|
91 |
gboolean gmyth_livetv_channel_name_setup ( GMythLiveTV *livetv, gchar* channel, GMythBackendInfo *backend_info );
|
renatofilho@320
|
92 |
gboolean gmyth_livetv_next_program_chain ( GMythLiveTV *livetv );
|
renatofilho@320
|
93 |
|
renatofilho@320
|
94 |
GMythFileTransfer *gmyth_livetv_create_file_transfer( GMythLiveTV *livetv );
|
renatofilho@320
|
95 |
|
renatofilho@320
|
96 |
gboolean gmyth_livetv_monitor_handler_start( GMythLiveTV *livetv );
|
renatofilho@320
|
97 |
void gmyth_livetv_monitor_handler_stop( GMythLiveTV *livetv );
|
renatofilho@320
|
98 |
|
renatofilho@320
|
99 |
G_END_DECLS
|
renatofilho@320
|
100 |
|
renatofilho@320
|
101 |
#endif /*GMYTH_LIVETV_H_*/
|