Remove commented out code.
[geeqie.git] / src / ui_bookmark.h
1 /*
2  * (SLIK) SimpLIstic sKin functions
3  * (C) 2004 John Ellis
4  * Copyright (C) 2008 - 2012 The Geeqie Team
5  *
6  * Author: John Ellis
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13
14 #ifndef UI_BOOKMARK_H
15 #define UI_BOOKMARK_H
16
17
18 /* bookmarks */
19
20 GtkWidget *bookmark_list_new(const gchar *key,
21                              void (*select_func)(const gchar *path, gpointer data), gpointer select_data);
22 void bookmark_list_set_key(GtkWidget *list, const gchar *key);
23 void bookmark_list_set_no_defaults(GtkWidget *list, gint no_defaults);
24 void bookmark_list_set_editable(GtkWidget *list, gint editable);
25 void bookmark_list_set_only_directories(GtkWidget *list, gint only_directories);
26 void bookmark_list_add(GtkWidget *list, const gchar *name, const gchar *path);
27
28 /* allows apps to set up the defaults */
29 void bookmark_add_default(const gchar *name, const gchar *path);
30
31
32 /* history combo entry */
33
34 GtkWidget *history_combo_new(GtkWidget **entry, const gchar *text,
35                              const gchar *history_key, gint max_levels);
36 void history_combo_append_history(GtkWidget *widget, const gchar *text);
37
38
39
40 #endif
41 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */