From 6876ede98282c7db318089bfefb292aa59e55d48 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Mon, 30 Dec 2002 19:29:24 +0000 Subject: Initial revision --- embed/downloader-view.h | 100 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 embed/downloader-view.h (limited to 'embed/downloader-view.h') diff --git a/embed/downloader-view.h b/embed/downloader-view.h new file mode 100644 index 000000000..a01d5f30d --- /dev/null +++ b/embed/downloader-view.h @@ -0,0 +1,100 @@ +/* + * 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 +#include + +#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); + + void (*download_pause) (DownloaderView *dv); + + void (*download_resume) (DownloaderView *dv); +}; + +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, + gboolean can_pause, + gpointer persist_object); + +#ifdef __cplusplus +} +#endif + +#endif -- cgit v1.2.3