Mercurial > geeqie
annotate src/layout.h @ 138:71e1ebee420e
replaced gchar* path with FileData *fd
| author | nadvornik |
|---|---|
| date | Tue, 11 Sep 2007 20:06:29 +0000 |
| parents | 661cd91e5a7e |
| children | 1a42a2451575 |
| rev | line source |
|---|---|
| 9 | 1 /* |
| 2 * GQview | |
| 3 * (C) 2004 John Ellis | |
| 4 * | |
| 5 * Author: John Ellis | |
| 6 * | |
| 7 * This software is released under the GNU General Public License (GNU GPL). | |
| 8 * Please read the included file COPYING for more information. | |
| 9 * This software comes with no warranty of any kind, use at your own risk! | |
| 10 */ | |
| 11 | |
| 12 #ifndef LAYOUT_H | |
| 13 #define LAYOUT_H | |
| 14 | |
| 15 | |
| 16 extern GList *layout_window_list; | |
| 17 | |
| 18 | |
| 19 LayoutWindow *layout_new(const gchar *path, gint popped, gint hidden); | |
|
81
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
20 LayoutWindow *layout_new_with_geometry(const gchar *path, gint popped, gint hidden, |
|
0ef72a64930b
Thu Oct 19 09:35:18 2006 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
21 const gchar *geometry); |
| 9 | 22 |
| 23 void layout_close(LayoutWindow *lw); | |
| 24 void layout_free(LayoutWindow *lw); | |
| 25 | |
| 26 gint layout_valid(LayoutWindow **lw); | |
| 27 | |
| 28 LayoutWindow *layout_find_by_image(ImageWindow *imd); | |
| 29 | |
| 30 const gchar *layout_get_path(LayoutWindow *lw); | |
| 31 gint layout_set_path(LayoutWindow *lw, const gchar *path); | |
| 32 | |
| 33 void layout_status_update_progress(LayoutWindow *lw, gdouble val, const gchar *text); | |
| 34 void layout_status_update_info(LayoutWindow *lw, const gchar *text); | |
| 35 void layout_status_update_image(LayoutWindow *lw); | |
| 36 void layout_status_update_all(LayoutWindow *lw); | |
| 37 | |
| 38 GList *layout_list(LayoutWindow *lw); | |
| 39 gint layout_list_count(LayoutWindow *lw, gint64 *bytes); | |
| 40 const gchar *layout_list_get_path(LayoutWindow *lw, gint index); | |
| 138 | 41 FileData *layout_list_get_fd(LayoutWindow *lw, gint index); |
| 9 | 42 gint layout_list_get_index(LayoutWindow *lw, const gchar *path); |
| 138 | 43 void layout_list_sync_fd(LayoutWindow *lw, FileData *fd); |
| 9 | 44 |
| 45 GList *layout_selection_list(LayoutWindow *lw); | |
| 46 /* return list of pointers to int for selection */ | |
| 47 GList *layout_selection_list_by_index(LayoutWindow *lw); | |
| 48 gint layout_selection_count(LayoutWindow *lw, gint64 *bytes); | |
| 49 void layout_select_all(LayoutWindow *lw); | |
| 50 void layout_select_none(LayoutWindow *lw); | |
| 51 | |
| 52 void layout_refresh(LayoutWindow *lw); | |
| 53 | |
| 54 void layout_thumb_set(LayoutWindow *lw, gint enable); | |
| 55 gint layout_thumb_get(LayoutWindow *lw); | |
| 56 | |
| 132 | 57 void layout_marks_set(LayoutWindow *lw, gint enable); |
| 58 | |
| 9 | 59 void layout_sort_set(LayoutWindow *lw, SortType type, gint ascend); |
| 60 gint layout_sort_get(LayoutWindow *lw, SortType *type, gint *ascend); | |
| 61 | |
| 62 gint layout_geometry_get(LayoutWindow *lw, gint *x, gint *y, gint *w, gint *h); | |
| 63 gint layout_geometry_get_dividers(LayoutWindow *lw, gint *h, gint *v); | |
| 64 | |
| 65 void layout_views_set(LayoutWindow *lw, gint tree, gint icons); | |
| 66 gint layout_views_get(LayoutWindow *lw, gint *tree, gint *icons); | |
| 67 | |
| 68 void layout_status_update(LayoutWindow *lw, const gchar *text); | |
| 69 | |
| 70 void layout_style_set(LayoutWindow *lw, gint style, const gchar *order); | |
| 71 | |
| 72 void layout_menu_update_edit(void); | |
| 73 void layout_styles_update(void); | |
| 74 void layout_colors_update(void); | |
| 75 | |
| 76 | |
| 77 gint layout_geometry_get_tools(LayoutWindow *lw, gint *x, gint *y, gint *w, gint *h, gint *divider_pos); | |
| 78 void layout_tools_float_set(LayoutWindow *lw, gint popped, gint hidden); | |
| 79 gint layout_tools_float_get(LayoutWindow *lw, gint *popped, gint *hidden); | |
| 80 | |
| 81 void layout_tools_float_toggle(LayoutWindow *lw); | |
| 82 void layout_tools_hide_toggle(LayoutWindow *lw); | |
| 83 | |
| 84 | |
| 85 void layout_toolbar_toggle(LayoutWindow *lw); | |
| 86 gint layout_toolbar_hidden(LayoutWindow *lw); | |
| 87 | |
| 127 | 88 void layout_split_change(LayoutWindow *lw, ImageSplitMode mode); |
| 9 | 89 |
| 138 | 90 void layout_maint_renamed(FileData *fd); |
| 91 void layout_maint_removed(FileData *fd, GList *ignore_list); | |
| 92 void layout_maint_moved(FileData *fd, GList *ignore_list); | |
| 9 | 93 |
| 94 | |
| 95 #endif | |
| 96 | |
| 97 | |
| 98 |
