changeset 2139:b53df5340dbb

Drop commented out code.
author Laurent Monin <zas@norz.org>
date Thu, 30 Aug 2012 14:48:08 +0200
parents d1f3976e317a
children 4ec9ff4f564c
files src/view_file_icon.c
diffstat 1 files changed, 1 insertions(+), 78 deletions(-) [+]
line wrap: on
line diff
--- a/src/view_file_icon.c	Thu Aug 30 14:40:45 2012 +0200
+++ b/src/view_file_icon.c	Thu Aug 30 14:48:08 2012 +0200
@@ -83,38 +83,6 @@
 	return id;
 }
 
-#if 0
-/* not used */
-static gint iconlist_read(FileData *dir_fd, GList **list)
-{
-	GList *temp;
-	GList *work;
-
-	if (!filelist_read(dir_fd, &temp, NULL)) return FALSE;
-
-	work = temp;
-	while (work)
-		{
-		FileData *fd;
-		IconData *id;
-
-		fd = work->data;
-		g_assert(fd->magick == FD_MAGICK);
-		id = g_new0(IconData, 1);
-
-		id->selected = SELECTION_NONE;
-		id->fd = fd;
-
-		work->data = id;
-		work = work->next;
-		}
-
-	*list = temp;
-
-	return TRUE;
-}
-#endif
-
 static void iconlist_free(GList *list)
 {
 	GList *work = list;
@@ -569,12 +537,6 @@
 			metadata_append_list(fd, KEYWORD_KEY, kw_list);
 			string_list_free(kw_list);
 			g_free(str);
-/*
-file notification should handle this automatically			
-			if (vf->layout && vf->layout->bar_info) {
-				bar_set_fd(vf->layout->bar_info, id->fd);
-			}
-*/
 		}
 	}
 }
@@ -1209,27 +1171,6 @@
 		}
 }
 
-#if 0
-static void vficon_update_focus(ViewFile *vf)
-{
-	gint new_row = 0;
-	gint new_col = 0;
-
-	if (VFICON(vf)->focus_id && vficon_find_position(vf, VFICON(vf)->focus_id, &new_row, &new_col))
-		{
-		/* first find the old focus, if it exists and is valid */
-		}
-	else
-		{
-		/* (try to) stay where we were */
-		new_row = VFICON(vf)->focus_row;
-		new_col = VFICON(vf)->focus_column;
-		}
-
-	vficon_move_focus(vf, new_row, new_col, FALSE);
-}
-#endif
-
 /* used to figure the page up/down distances */
 static gint page_height(ViewFile *vf)
 {
@@ -1394,9 +1335,6 @@
 
 	if (stop_signal)
 		{
-#if 0
-		g_signal_stop_emission_by_name(GTK_OBJECT(widget), "key_press_event");
-#endif
 		tip_unschedule(vf);
 		}
 
@@ -1440,14 +1378,13 @@
 				{
 				gtk_widget_grab_focus(vf->listview);
 				}
-#if 1
+
 			if (bevent->type == GDK_2BUTTON_PRESS &&
 			    vf->layout)
 				{
 				vficon_selection_remove(vf, VFICON(vf)->click_id, SELECTION_PRELIGHT, &iter);
 				layout_image_full_screen_start(vf->layout);
 				}
-#endif
 			break;
 		case MOUSE_BUTTON_RIGHT:
 			vf->popup = vf_pop_menu(vf);
@@ -1748,20 +1685,6 @@
 	DEBUG_1("col tab pop cols=%d rows=%d", VFICON(vf)->columns, VFICON(vf)->rows);
 }
 
-
-#if 0
-static void vficon_sync_idle(ViewFile *vf)
-{
-	if (VFICON(vf)->sync_idle_id == -1)
-		{
-		/* high priority, the view needs to be resynced before a redraw
-		 * may contain invalid pointers at this time
-		 */
-		VFICON(vf)->sync_idle_id = g_idle_add_full(G_PRIORITY_HIGH, vficon_sync_idle_cb, vf, NULL);
-		}
-}
-#endif
-
 static void vficon_sized_cb(GtkWidget *widget, GtkAllocation *allocation, gpointer data)
 {
 	ViewFile *vf = data;