summaryrefslogtreecommitdiff
path: root/test/test-copy.c
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 /test/test-copy.c
downloadcaja-0e004c696b0e68b2cff37a4c3315b022a35eaf43.tar.bz2
caja-0e004c696b0e68b2cff37a4c3315b022a35eaf43.tar.xz
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'test/test-copy.c')
-rw-r--r--test/test-copy.c93
1 files changed, 93 insertions, 0 deletions
diff --git a/test/test-copy.c b/test/test-copy.c
new file mode 100644
index 00000000..5eaab1e5
--- /dev/null
+++ b/test/test-copy.c
@@ -0,0 +1,93 @@
+#include "test.h"
+
+#include <libcaja-private/caja-file-operations.h>
+#include <libcaja-private/caja-progress-info.h>
+
+static void
+copy_done (GHashTable *debuting_uris, gpointer data)
+{
+ g_print ("Copy done\n");
+}
+
+static void
+changed_cb (CajaProgressInfo *info,
+ gpointer data)
+{
+ g_print ("Changed: %s -- %s\n",
+ caja_progress_info_get_status (info),
+ caja_progress_info_get_details (info));
+}
+
+static void
+progress_changed_cb (CajaProgressInfo *info,
+ gpointer data)
+{
+ g_print ("Progress changed: %f\n",
+ caja_progress_info_get_progress (info));
+}
+
+static void
+finished_cb (CajaProgressInfo *info,
+ gpointer data)
+{
+ g_print ("Finished\n");
+ gtk_main_quit ();
+}
+
+int
+main (int argc, char* argv[])
+{
+ GtkWidget *window;
+ GList *sources;
+ GFile *dest;
+ GFile *source;
+ int i;
+ GList *infos;
+ CajaProgressInfo *progress_info;
+
+ g_thread_init (NULL);
+
+ test_init (&argc, &argv);
+
+ if (argc < 3) {
+ g_print ("Usage test-copy <sources...> <dest dir>\n");
+ return 1;
+ }
+
+ sources = NULL;
+ for (i = 1; i < argc - 1; i++) {
+ source = g_file_new_for_commandline_arg (argv[i]);
+ sources = g_list_prepend (sources, source);
+ }
+ sources = g_list_reverse (sources);
+
+ dest = g_file_new_for_commandline_arg (argv[i]);
+
+ window = test_window_new ("copy test", 5);
+
+ gtk_widget_show (window);
+
+ caja_file_operations_copy (sources,
+ NULL /* GArray *relative_item_points */,
+ dest,
+ GTK_WINDOW (window),
+ copy_done, NULL);
+
+ infos = caja_get_all_progress_info ();
+
+ if (infos == NULL) {
+ return 0;
+ }
+
+ progress_info = CAJA_PROGRESS_INFO (infos->data);
+
+ g_signal_connect (progress_info, "changed", (GCallback)changed_cb, NULL);
+ g_signal_connect (progress_info, "progress-changed", (GCallback)progress_changed_cb, NULL);
+ g_signal_connect (progress_info, "finished", (GCallback)finished_cb, NULL);
+
+ gtk_main ();
+
+ return 0;
+}
+
+