Simplify vflist_get_formatted()
[geeqie.git] / src / ui_spinner.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_SPINNER_H
23 #define UI_SPINNER_H
24
25
26 #define SPINNER_SPEED 100
27
28
29 extern const guint8 icon_spinner[];
30 extern const guint8 icon_tabcomp[];
31
32 /**
33  * @headerfile spinner_new
34  * if path is NULL, the built in spinner is used,
35  * otherwise path must be the location of the first image of the
36  * spinner without the 00.png portion of the pathname, example: \n
37  *
38  *     /path/to/spinnerimg_ \n
39  *
40  * the files required are then: \n
41  *
42  *     /path/to/spinnerimg_00.png   non-animated state \n
43  *     /path/to/spinnerimg_01.png   animation frame 1 \n
44  *     /path/to/spinnerimg_02.png   animation frame 2 \n
45  *     [continues to last frame...]
46  */
47 GtkWidget *spinner_new(const gchar *path, gint interval);
48
49 void spinner_set_interval(GtkWidget *spinner, gint interval);
50 void spinner_step(GtkWidget *spinner, gboolean reset);
51
52
53 #endif
54 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */