Simplify vflist_get_formatted()
[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
26 /* bookmarks */
27
28 GtkWidget *bookmark_list_new(const gchar *key,
29                              void (*select_func)(const gchar *path, gpointer data), gpointer select_data);
30 void bookmark_list_set_key(GtkWidget *list, const gchar *key);
31 void bookmark_list_set_no_defaults(GtkWidget *list, gint no_defaults);
32 void bookmark_list_set_editable(GtkWidget *list, gint editable);
33 void bookmark_list_set_only_directories(GtkWidget *list, gint only_directories);
34 void bookmark_list_add(GtkWidget *list, const gchar *name, const gchar *path);
35
36 /**
37  * @headerfile bookmark_add_default
38  * allows apps to set up the defaults
39  */
40 void bookmark_add_default(const gchar *name, const gchar *path);
41
42
43 /* history combo entry */
44
45 GtkWidget *history_combo_new(GtkWidget **entry, const gchar *text,
46                              const gchar *history_key, gint max_levels);
47 void history_combo_append_history(GtkWidget *widget, const gchar *text);
48
49
50
51 #endif
52 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */