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
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
nautilus-progress-info.h: file operation progress info.
Copyright (C) 2007 Red Hat, Inc.
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 of the
License, 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, see <http://www.gnu.org/licenses/>.
Author: Alexander Larsson <alexl@redhat.com>
*/
#ifndef NAUTILUS_PROGRESS_INFO_H
#define NAUTILUS_PROGRESS_INFO_H
#include <glib-object.h>
#include <gio/gio.h>
#define NAUTILUS_TYPE_PROGRESS_INFO (nautilus_progress_info_get_type ())
#define NAUTILUS_PROGRESS_INFO(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), NAUTILUS_TYPE_PROGRESS_INFO, NautilusProgressInfo))
#define NAUTILUS_PROGRESS_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NAUTILUS_TYPE_PROGRESS_INFO, NautilusProgressInfoClass))
#define NAUTILUS_IS_PROGRESS_INFO(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), NAUTILUS_TYPE_PROGRESS_INFO))
#define NAUTILUS_IS_PROGRESS_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NAUTILUS_TYPE_PROGRESS_INFO))
#define NAUTILUS_PROGRESS_INFO_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NAUTILUS_TYPE_PROGRESS_INFO, NautilusProgressInfoClass))
typedef struct _NautilusProgressInfo NautilusProgressInfo;
typedef struct _NautilusProgressInfoClass NautilusProgressInfoClass;
GType nautilus_progress_info_get_type (void) G_GNUC_CONST;
/* Signals:
"changed" - status or details changed
"progress-changed" - the percentage progress changed (or we pulsed if in activity_mode
"started" - emited on job start
"finished" - emitted when job is done
All signals are emitted from idles in main loop.
All methods are threadsafe.
*/
NautilusProgressInfo *nautilus_progress_info_new (void);
GList * nautilus_get_all_progress_info (void);
char * nautilus_progress_info_get_status (NautilusProgressInfo *info);
char * nautilus_progress_info_get_details (NautilusProgressInfo *info);
double nautilus_progress_info_get_progress (NautilusProgressInfo *info);
GCancellable *nautilus_progress_info_get_cancellable (NautilusProgressInfo *info);
void nautilus_progress_info_cancel (NautilusProgressInfo *info);
gboolean nautilus_progress_info_get_is_started (NautilusProgressInfo *info);
gboolean nautilus_progress_info_get_is_finished (NautilusProgressInfo *info);
gboolean nautilus_progress_info_get_is_paused (NautilusProgressInfo *info);
gboolean nautilus_progress_info_get_is_cancelled (NautilusProgressInfo *info);
void nautilus_progress_info_start (NautilusProgressInfo *info);
void nautilus_progress_info_finish (NautilusProgressInfo *info);
void nautilus_progress_info_pause (NautilusProgressInfo *info);
void nautilus_progress_info_resume (NautilusProgressInfo *info);
void nautilus_progress_info_set_status (NautilusProgressInfo *info,
const char *status);
void nautilus_progress_info_take_status (NautilusProgressInfo *info,
char *status);
void nautilus_progress_info_set_details (NautilusProgressInfo *info,
const char *details);
void nautilus_progress_info_take_details (NautilusProgressInfo *info,
char *details);
void nautilus_progress_info_set_progress (NautilusProgressInfo *info,
double current,
double total);
void nautilus_progress_info_pulse_progress (NautilusProgressInfo *info);
void nautilus_progress_info_set_remaining_time (NautilusProgressInfo *info,
gdouble time);
gdouble nautilus_progress_info_get_remaining_time (NautilusProgressInfo *info);
void nautilus_progress_info_set_elapsed_time (NautilusProgressInfo *info,
gdouble time);
gdouble nautilus_progress_info_get_elapsed_time (NautilusProgressInfo *info);
gdouble nautilus_progress_info_get_total_elapsed_time (NautilusProgressInfo *info);
void nautilus_progress_info_set_destination (NautilusProgressInfo *info,
GFile *file);
GFile *nautilus_progress_info_get_destination (NautilusProgressInfo *info);
#endif /* NAUTILUS_PROGRESS_INFO_H */
|