9
|
1 /*
|
196
|
2 * Geeqie
|
9
|
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
|
|
14 #ifndef SLIDESHOW_H
|
|
15 #define SLIDESHOW_H
|
|
16
|
|
17
|
|
18 #define SLIDESHOW_SUBSECOND_PRECISION 10
|
|
19 #define SLIDESHOW_MIN_SECONDS 0.1
|
|
20 #define SLIDESHOW_MAX_SECONDS 3600.0
|
|
21
|
|
22 /*
|
|
23 * It works like this, it uses path_list, if that does not exist, it uses
|
|
24 * CollectionData, then finally falls back to the layout listing.
|
|
25 */
|
|
26
|
|
27 void slideshow_free(SlideShowData *ss);
|
|
28
|
|
29 gint slideshow_should_continue(SlideShowData *ss);
|
|
30
|
|
31 void slideshow_next(SlideShowData *ss);
|
|
32 void slideshow_prev(SlideShowData *ss);
|
|
33
|
138
|
34 SlideShowData *slideshow_start_from_filelist(ImageWindow *imd, GList *list,
|
9
|
35 void (*stop_func)(SlideShowData *, gpointer), gpointer stop_data);
|
|
36 SlideShowData *slideshow_start_from_collection(ImageWindow *imd, CollectionData *cd,
|
|
37 void (*stop_func)(SlideShowData *, gpointer), gpointer stop_data,
|
|
38 CollectInfo *start_info);
|
|
39 SlideShowData *slideshow_start(ImageWindow *imd, LayoutWindow *lw, gint start_point,
|
|
40 void (*stop_func)(SlideShowData *, gpointer), gpointer stop_data);
|
|
41
|
|
42 gint slideshow_paused(SlideShowData *ss);
|
|
43 void slideshow_pause_set(SlideShowData *ss, gint paused);
|
|
44 gint slideshow_pause_toggle(SlideShowData *ss);
|
|
45
|
|
46
|
|
47 #endif
|