Mercurial > geeqie.yaz
annotate src/ui_tabcomp.h @ 1522:d7206703d90f
re-ordered some options, improved descriptions
author | nadvornik |
---|---|
date | Mon, 06 Apr 2009 21:52:49 +0000 |
parents | 89dedc61b1bd |
children |
rev | line source |
---|---|
9 | 1 /* |
2 * (SLIK) SimpLIstic sKin functions | |
3 * (C) 2004 John Ellis | |
1284 | 4 * Copyright (C) 2008 - 2009 The Geeqie Team |
9 | 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 #ifndef UI_TABCOMP_H | |
14 #define UI_TABCOMP_H | |
15 | |
16 | |
17 GtkWidget *tab_completion_new_with_history(GtkWidget **entry, const gchar *text, | |
18 const gchar *history_key, gint max_levels, | |
19 void (*enter_func)(const gchar *, gpointer), gpointer data); | |
20 const gchar *tab_completion_set_to_last_history(GtkWidget *entry); | |
21 void tab_completion_append_to_history(GtkWidget *entry, const gchar *path); | |
22 | |
23 GtkWidget *tab_completion_new(GtkWidget **entry, const gchar *text, | |
24 void (*enter_func)(const gchar *, gpointer), gpointer data); | |
25 void tab_completion_add_to_entry(GtkWidget *entry, void (*enter_func)(const gchar *, gpointer), gpointer data); | |
26 void tab_completion_add_tab_func(GtkWidget *entry, void (*tab_func)(const gchar *, gpointer), gpointer data); | |
27 gchar *remove_trailing_slash(const gchar *path); | |
28 | |
1448 | 29 void tab_completion_add_select_button(GtkWidget *entry, const gchar *title, gboolean folders_only); |
1167
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
30 void tab_completion_add_append_func(GtkWidget *entry, void (*tab_append_func)(const gchar *, gpointer, gint), gpointer data); |
9 | 31 |
32 | |
33 #endif | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
475
diff
changeset
|
34 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |