1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/*
* Copyright (C) 2000, 2001, 2002 Marco Pesenti Gritti
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef DOWNLOADER_VIEW_H
#define DOWNLOADER_VIEW_H
#include "ephy-dialog.h"
#include <glib-object.h>
#include <glib.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct DownloaderView DownloaderView;
typedef struct DownloaderViewClass DownloaderViewClass;
#define DOWNLOADER_VIEW_TYPE (downloader_view_get_type ())
#define DOWNLOADER_VIEW(obj) (GTK_CHECK_CAST ((obj), DOWNLOADER_VIEW_TYPE, DownloaderView))
#define DOWNLOADER_VIEW_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), DOWNLOADER_VIEW, DownloaderViewClass))
#define IS_DOWNLOADER_VIEW(obj) (GTK_CHECK_TYPE ((obj), DOWNLOADER_VIEW_TYPE))
#define IS_DOWNLOADER_VIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), DOWNLOADER_VIEW))
typedef struct DownloaderViewPrivate DownloaderViewPrivate;
#define CONF_DOWNLOADING_KEEP_OPEN "/apps/epiphany/downloader/keep_open"
typedef enum
{
DOWNLOAD_STATUS_DOWNLOADING,
DOWNLOAD_STATUS_PAUSED,
DOWNLOAD_STATUS_RESUMING,
DOWNLOAD_STATUS_COMPLETED
} DownloadStatus;
struct DownloaderView
{
EphyDialog parent;
DownloaderViewPrivate *priv;
};
struct DownloaderViewClass
{
EphyDialogClass parent_class;
void (*download_remove) (DownloaderView *dv, gpointer persist_object);
void (*download_pause) (DownloaderView *dv, gpointer persist_object);
void (*download_resume) (DownloaderView *dv, gpointer persist_object);
};
GType downloader_view_get_type (void);
DownloaderView *downloader_view_new (void);
void downloader_view_add_download (DownloaderView *dv,
gchar *filename,
gchar *source,
gchar *dest,
gpointer persist_object);
void downloader_view_remove_download (DownloaderView *dv,
gpointer persist_object);
void downloader_view_set_download_status (DownloaderView *dv,
DownloadStatus status,
gpointer persist_object);
void downloader_view_set_download_progress (DownloaderView *dv,
glong elapsed,
glong remaining,
gfloat speed,
gint size_total,
gint size_done,
gfloat progress,
gpointer persist_object);
#ifdef __cplusplus
}
#endif
#endif
|