Let image loader backend decide how to process image buffer
[geeqie.git] / src / ui-bookmark.h
1 /*
2  * Copyright (C) 2004 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef UI_BOOKMARK_H
23 #define UI_BOOKMARK_H
24
25 #include <glib.h>
26 #include <gtk/gtk.h>
27
28 /* bookmarks */
29
30 GtkWidget *bookmark_list_new(const gchar *key,
31                              void (*select_func)(const gchar *path, gpointer data), gpointer select_data);
32 void bookmark_list_set_key(GtkWidget *list, const gchar *key);
33 void bookmark_list_set_no_defaults(GtkWidget *list, gint no_defaults);
34 void bookmark_list_set_editable(GtkWidget *list, gint editable);
35 void bookmark_list_set_only_directories(GtkWidget *list, gint only_directories);
36 void bookmark_list_add(GtkWidget *list, const gchar *name, const gchar *path);
37
38 /**
39  * @headerfile bookmark_add_default
40  * allows apps to set up the defaults
41  */
42 void bookmark_add_default(const gchar *name, const gchar *path);
43
44
45 /* history combo entry */
46
47 GtkWidget *history_combo_new(GtkWidget **entry, const gchar *text,
48                              const gchar *history_key, gint max_levels);
49 void history_combo_append_history(GtkWidget *widget, const gchar *text);
50
51
52 #endif
53 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */