summaryrefslogtreecommitdiff
path: root/libcaja-private/caja-progress-info.h
diff options
context:
space:
mode:
authorPerberos <[email protected]>2011-12-01 22:24:23 -0300
committerPerberos <[email protected]>2011-12-01 22:24:23 -0300
commit0e004c696b0e68b2cff37a4c3315b022a35eaf43 (patch)
tree43261e815529cb9518ed7be37af13b846af8b26b /libcaja-private/caja-progress-info.h
downloadcaja-0e004c696b0e68b2cff37a4c3315b022a35eaf43.tar.bz2
caja-0e004c696b0e68b2cff37a4c3315b022a35eaf43.tar.xz
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'libcaja-private/caja-progress-info.h')
-rw-r--r--libcaja-private/caja-progress-info.h85
1 files changed, 85 insertions, 0 deletions
diff --git a/libcaja-private/caja-progress-info.h b/libcaja-private/caja-progress-info.h
new file mode 100644
index 00000000..4c0d21da
--- /dev/null
+++ b/libcaja-private/caja-progress-info.h
@@ -0,0 +1,85 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
+
+ caja-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, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+ Author: Alexander Larsson <[email protected]>
+*/
+
+#ifndef CAJA_PROGRESS_INFO_H
+#define CAJA_PROGRESS_INFO_H
+
+#include <glib-object.h>
+#include <gio/gio.h>
+
+#define CAJA_TYPE_PROGRESS_INFO (caja_progress_info_get_type ())
+#define CAJA_PROGRESS_INFO(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CAJA_TYPE_PROGRESS_INFO, CajaProgressInfo))
+#define CAJA_PROGRESS_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CAJA_TYPE_PROGRESS_INFO, CajaProgressInfoClass))
+#define CAJA_IS_PROGRESS_INFO(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CAJA_TYPE_PROGRESS_INFO))
+#define CAJA_IS_PROGRESS_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CAJA_TYPE_PROGRESS_INFO))
+#define CAJA_PROGRESS_INFO_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CAJA_TYPE_PROGRESS_INFO, CajaProgressInfoClass))
+
+typedef struct _CajaProgressInfo CajaProgressInfo;
+typedef struct _CajaProgressInfoClass CajaProgressInfoClass;
+
+GType caja_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.
+ */
+
+CajaProgressInfo *caja_progress_info_new (void);
+
+GList * caja_get_all_progress_info (void);
+
+char * caja_progress_info_get_status (CajaProgressInfo *info);
+char * caja_progress_info_get_details (CajaProgressInfo *info);
+double caja_progress_info_get_progress (CajaProgressInfo *info);
+GCancellable *caja_progress_info_get_cancellable (CajaProgressInfo *info);
+void caja_progress_info_cancel (CajaProgressInfo *info);
+gboolean caja_progress_info_get_is_started (CajaProgressInfo *info);
+gboolean caja_progress_info_get_is_finished (CajaProgressInfo *info);
+gboolean caja_progress_info_get_is_paused (CajaProgressInfo *info);
+
+void caja_progress_info_start (CajaProgressInfo *info);
+void caja_progress_info_finish (CajaProgressInfo *info);
+void caja_progress_info_pause (CajaProgressInfo *info);
+void caja_progress_info_resume (CajaProgressInfo *info);
+void caja_progress_info_set_status (CajaProgressInfo *info,
+ const char *status);
+void caja_progress_info_take_status (CajaProgressInfo *info,
+ char *status);
+void caja_progress_info_set_details (CajaProgressInfo *info,
+ const char *details);
+void caja_progress_info_take_details (CajaProgressInfo *info,
+ char *details);
+void caja_progress_info_set_progress (CajaProgressInfo *info,
+ double current,
+ double total);
+void caja_progress_info_pulse_progress (CajaProgressInfo *info);
+
+
+
+#endif /* CAJA_PROGRESS_INFO_H */