Mercurial > geeqie.yaz
annotate src/ui_pathsel.h @ 1206:d79305a42a9b
Switch to fullscreen when double clicking on file in icon or list view. Feature request 1966042. The code was there since a long time but disabled, please report any issue.
author | zas_ |
---|---|
date | Sat, 20 Dec 2008 21:30:27 +0000 |
parents | 1646720364cf |
children | 8b89e3ff286b |
rev | line source |
---|---|
9 | 1 /* |
2 * (SLIK) SimpLIstic sKin functions | |
3 * (C) 2004 John Ellis | |
475 | 4 * Copyright (C) 2008 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_PATHSEL_H | |
14 #define UI_PATHSEL_H | |
15 | |
16 | |
17 GtkWidget *path_selection_new_with_files(GtkWidget *entry, const gchar *path, | |
18 const gchar *filter, const gchar *filter_desc); | |
19 GtkWidget *path_selection_new(const gchar *path, GtkWidget *entry); | |
20 | |
21 void path_selection_sync_to_entry(GtkWidget *entry); | |
22 | |
23 void path_selection_add_select_func(GtkWidget *entry, | |
24 void (*func)(const gchar *, gpointer), gpointer data); | |
25 void path_selection_add_filter(GtkWidget *entry, const gchar *filter, const gchar *description, gint set); | |
26 void path_selection_clear_filter(GtkWidget *entry); | |
27 | |
28 | |
29 #endif | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
475
diff
changeset
|
30 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |