# HG changeset patch # User zas_ # Date 1207693735 0 # Node ID 5cd386db1e6cb6be4d8ed0a305e605149c26bd49 # Parent 04abf5b160eb290e5cfc44bd2715282c8e01a0e0 gqview_remote -> remote_connection gqview_command_collection -> command_collection gqview_remote_control() -> remote_control() gqview_remote_help() -> remote_help() gqview_remote_command_find() -> remote_command_find() gqview_remote_build_list() -> remote_build_list() gqview_remote_cb() -> remote_cb() diff -r 04abf5b160eb -r 5cd386db1e6c src/main.c --- a/src/main.c Tue Apr 08 22:16:56 2008 +0000 +++ b/src/main.c Tue Apr 08 22:28:55 2008 +0000 @@ -42,8 +42,8 @@ #include -static RemoteConnection *gqview_remote = NULL; -static CollectionData *gqview_command_collection = NULL; +static RemoteConnection *remote_connection = NULL; +static CollectionData *command_collection = NULL; /* @@ -441,15 +441,15 @@ static void gr_list_clear(const gchar *text, gpointer data) { - if (gqview_command_collection) collection_unref(gqview_command_collection); - gqview_command_collection = NULL; + if (command_collection) collection_unref(command_collection); + command_collection = NULL; } static void gr_list_add(const gchar *text, gpointer data) { gint new = TRUE; - if (!gqview_command_collection) + if (!command_collection) { CollectionData *cd; @@ -460,17 +460,17 @@ g_free(cd->name); cd->name = g_strdup(_("Command line")); - gqview_command_collection = cd; + command_collection = cd; } else { - new = (!collection_get_first(gqview_command_collection)); + new = (!collection_get_first(command_collection)); } - if (collection_add(gqview_command_collection, file_data_new_simple(text), FALSE) && new) + if (collection_add(command_collection, file_data_new_simple(text), FALSE) && new) { - layout_image_set_collection(NULL, gqview_command_collection, - collection_get_first(gqview_command_collection)); + layout_image_set_collection(NULL, command_collection, + collection_get_first(command_collection)); } } @@ -519,7 +519,7 @@ { NULL, NULL, NULL, FALSE, FALSE, NULL } }; -static RemoteCommandEntry *gqview_remote_command_find(const gchar *text, const gchar **offset) +static RemoteCommandEntry *remote_command_find(const gchar *text, const gchar **offset) { gint match = FALSE; gint i; @@ -558,12 +558,12 @@ return NULL; } -static void gqview_remote_cb(RemoteConnection *rc, const gchar *text, gpointer data) +static void remote_cb(RemoteConnection *rc, const gchar *text, gpointer data) { RemoteCommandEntry *entry; const gchar *offset; - entry = gqview_remote_command_find(text, &offset); + entry = remote_command_find(text, &offset); if (entry && entry->func) { entry->func(offset, data); @@ -574,7 +574,7 @@ } } -static void gqview_remote_help(void) +static void remote_help(void) { gint i; @@ -600,7 +600,7 @@ } } -static GList *gqview_remote_build_list(GList *list, int argc, char *argv[]) +static GList *remote_build_list(GList *list, int argc, char *argv[]) { gint i; @@ -609,7 +609,7 @@ { RemoteCommandEntry *entry; - entry = gqview_remote_command_find(argv[i], NULL); + entry = remote_command_find(argv[i], NULL); if (entry) { list = g_list_append(list, argv[i]); @@ -620,7 +620,7 @@ return list; } -static void gqview_remote_control(const gchar *arg_exec, GList *remote_list, const gchar *path, +static void remote_control(const gchar *arg_exec, GList *remote_list, const gchar *path, GList *cmd_list, GList *collection_list) { RemoteConnection *rc; @@ -648,7 +648,7 @@ text = work->data; work = work->next; - entry = gqview_remote_command_find(text, NULL); + entry = remote_command_find(text, NULL); if (entry) { if (entry->prefer_command_line) @@ -701,7 +701,7 @@ text = work->data; work = work->next; - entry = gqview_remote_command_find(text, NULL); + entry = remote_command_find(text, NULL); if (entry && entry->opt_l && strcmp(entry->opt_l, "file:") == 0) use_path = FALSE; @@ -962,13 +962,13 @@ if (!remote_do) { remote_do = TRUE; - remote_list = gqview_remote_build_list(remote_list, argc, argv); + remote_list = remote_build_list(remote_list, argc, argv); } } else if (strcmp(cmd_line, "-rh") == 0 || strcmp(cmd_line, "--remote-help") == 0) { - gqview_remote_help(); + remote_help(); exit (0); } else if (strcmp(cmd_line, "--blank") == 0) @@ -1045,7 +1045,7 @@ if (remote_do) { - gqview_remote_control(argv[0], remote_list, *path, list, *collection_list); + remote_control(argv[0], remote_list, *path, list, *collection_list); } g_list_free(remote_list); @@ -1153,7 +1153,7 @@ gchar *pathl; LayoutWindow *lw = NULL; - remote_close(gqview_remote); + remote_close(remote_connection); collect_manager_flush(); @@ -1380,7 +1380,7 @@ else { cd = collection_new(""); /* if we pass NULL, untitled counter is falsely increm. */ - gqview_command_collection = cd; + command_collection = cd; } g_free(cd->path); @@ -1442,8 +1442,8 @@ if (startup_in_slideshow) layout_image_slideshow_start(lw); buf = g_strconcat(homedir(), "/", GQVIEW_RC_DIR, "/.command", NULL); - gqview_remote = remote_server_open(buf); - remote_server_subscribe(gqview_remote, gqview_remote_cb, NULL); + remote_connection = remote_server_open(buf); + remote_server_subscribe(remote_connection, remote_cb, NULL); g_free(buf); gtk_main ();