Include a Other Software section in Help file
[geeqie.git] / src / view_file.h
index f7fe02d..16297da 100644 (file)
@@ -1,17 +1,88 @@
 /*
- * Geeqie
- * Copyright (C) 2008 The Geeqie Team
+ * Copyright (C) 2008 - 2016 The Geeqie Team
  *
  * Author: Laurent Monin
  *
- * This software is released under the GNU General Public License (GNU GPL).
- * Please read the included file COPYING for more information.
- * This software comes with no warranty of any kind, use at your own risk!
+ * 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.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #ifndef VIEW_FILE_H
 #define VIEW_FILE_H
 
-#define VIEW_FILE_TYPES_COUNT 2
+#define VFLIST(_vf_) ((ViewFileInfoList *)(_vf_->info))
+#define VFICON(_vf_) ((ViewFileInfoIcon *)(_vf_->info))
+
+void vf_send_update(ViewFile *vf);
+
+ViewFile *vf_new(FileViewType type, FileData *dir_fd);
+
+void vf_set_status_func(ViewFile *vf, void (*func)(ViewFile *vf, gpointer data), gpointer data);
+void vf_set_thumb_status_func(ViewFile *vf, void (*func)(ViewFile *vf, gdouble val, const gchar *text, gpointer data), gpointer data);
+
+void vf_set_layout(ViewFile *vf, LayoutWindow *layout);
+
+gboolean vf_set_fd(ViewFile *vf, FileData *fd);
+gboolean vf_refresh(ViewFile *vf);
+void vf_refresh_idle(ViewFile *vf);
+
+void vf_thumb_set(ViewFile *vf, gboolean enable);
+void vf_marks_set(ViewFile *vf, gboolean enable);
+void vf_star_rating_set(ViewFile *vf, gboolean enable);
+void vf_sort_set(ViewFile *vf, SortType type, gboolean ascend);
+
+guint vf_marks_get_filter(ViewFile *vf);
+void vf_mark_filter_toggle(ViewFile *vf, gint mark);
+
+guint vf_class_get_filter(ViewFile *vf);
+
+GList *vf_selection_get_one(ViewFile *vf, FileData *fd);
+GList *vf_pop_menu_file_list(ViewFile *vf);
+GtkWidget *vf_pop_menu(ViewFile *vf);
+
+FileData *vf_index_get_data(ViewFile *vf, gint row);
+gint vf_index_by_fd(ViewFile *vf, FileData *in_fd);
+guint vf_count(ViewFile *vf, gint64 *bytes);
+GList *vf_get_list(ViewFile *vf);
+
+guint vf_selection_count(ViewFile *vf, gint64 *bytes);
+GList *vf_selection_get_list(ViewFile *vf);
+GList *vf_selection_get_list_by_index(ViewFile *vf);
+
+void vf_select_all(ViewFile *vf);
+void vf_select_none(ViewFile *vf);
+void vf_select_invert(ViewFile *vf);
+void vf_select_by_fd(ViewFile *vf, FileData *fd);
+void vf_select_list(ViewFile *vf, GList *list);
+
+void vf_mark_to_selection(ViewFile *vf, gint mark, MarkToSelectionMode mode);
+void vf_selection_to_mark(ViewFile *vf, gint mark, SelectionToMarkMode mode);
+
+void vf_refresh_idle_cancel(ViewFile *vf);
+void vf_notify_cb(FileData *fd, NotifyType type, gpointer data);
+
+void vf_thumb_update(ViewFile *vf);
+void vf_thumb_cleanup(ViewFile *vf);
+void vf_thumb_stop(ViewFile *vf);
+void vf_read_metadata_in_idle(ViewFile *vf);
+void vf_file_filter_set(ViewFile *vf, gboolean enable);
+GRegex *vf_file_filter_get_filter(ViewFile *vf);
+
+void vf_star_update(ViewFile *vf);
+gboolean vf_stars_cb(gpointer data);
+void vf_star_stop(ViewFile *vf);
+void vf_star_cleanup(ViewFile *vf);
 
 #endif /* VIEW_FILE_H */
+/* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */