Fix #314: Remote commands for thumbnail maintenance
[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 /* if path is NULL, the built in spinner is used,
33  * otherwise path must be the location of the first image of the
34  * spinner without the 00.png portion of the pathname, example:
35  *
36  *     /path/to/spinnerimg_
37  *
38  * the files required are then:
39  *
40  *     /path/to/spinnerimg_00.png   non-animated state
41  *     /path/to/spinnerimg_01.png   animation frame 1
42  *     /path/to/spinnerimg_02.png   animation frame 2
43  *     [continues to last frame...]
44  */
45 GtkWidget *spinner_new(const gchar *path, gint interval);
46
47 void spinner_set_interval(GtkWidget *spinner, gint interval);
48 void spinner_step(GtkWidget *spinner, gboolean reset);
49
50
51 #endif
52 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */