Bug fix: Run-time errors when removing a toolbar icon
[geeqie.git] / src / slideshow.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 SLIDESHOW_H
23 #define SLIDESHOW_H
24
25 struct CollectInfo;
26 struct CollectionData;
27 struct ImageWindow;
28 struct LayoutWindow;
29
30 #define SLIDESHOW_SUBSECOND_PRECISION 10
31 #define SLIDESHOW_MIN_SECONDS    0.1
32 #define SLIDESHOW_MAX_SECONDS 86399.0 /* 24 hours - 1 sec */
33
34 /*
35  * It works like this, it uses path_list, if that does not exist, it uses
36  * CollectionData, then finally falls back to the layout listing.
37  */
38
39 struct SlideShowData
40 {
41         LayoutWindow *lw;        /**< use this window to display the slideshow */
42         ImageWindow *imd;        /**< use this window only if lw is not available,
43                                     @FIXME it is probably required only by img-view.cc and should be dropped with it */
44
45         GList *filelist;
46         CollectionData *cd;
47         FileData *dir_fd;
48
49         GList *list;
50         GList *list_done;
51
52         FileData *slide_fd;
53
54         guint slide_count;
55         guint timeout_id; /**< event source id */
56
57         gboolean from_selection;
58
59         void (*stop_func)(SlideShowData *, gpointer);
60         gpointer stop_data;
61
62         gboolean paused;
63 };
64
65 void slideshow_free(SlideShowData *ss);
66
67 gboolean slideshow_should_continue(SlideShowData *ss);
68
69 void slideshow_next(SlideShowData *ss);
70 void slideshow_prev(SlideShowData *ss);
71
72 SlideShowData *slideshow_start_from_filelist(LayoutWindow *target_lw, ImageWindow *imd, GList *list,
73                                               void (*stop_func)(SlideShowData *, gpointer), gpointer stop_data);
74 SlideShowData *slideshow_start_from_collection(LayoutWindow *target_lw, ImageWindow *imd, CollectionData *cd,
75                                                void (*stop_func)(SlideShowData *, gpointer), gpointer stop_data,
76                                                CollectInfo *start_info);
77 SlideShowData *slideshow_start(LayoutWindow *lw, gint start_point,
78                                void (*stop_func)(SlideShowData *, gpointer), gpointer stop_data);
79
80 gboolean slideshow_paused(SlideShowData *ss);
81 void slideshow_pause_set(SlideShowData *ss, gboolean paused);
82 gboolean slideshow_pause_toggle(SlideShowData *ss);
83
84
85 #endif
86 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */