1 /*
2  * frogr-create-new-set-dialog.h -- 'Create new set' dialog
3  *
4  * Copyright (C) 2010-2012 Mario Sanchez Prada
5  * Authors: Mario Sanchez Prada <msanchez@gnome.org>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of version 3 of the GNU General Public
9  * License as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see <http://www.gnu.org/licenses/>
18  *
19  */
20 
21 #ifndef FROGR_CREATE_NEW_SET_DIALOG_H
22 #define FROGR_CREATE_NEW_SET_DIALOG_H
23 
24 #include <gtk/gtk.h>
25 
26 G_BEGIN_DECLS
27 
28 #define FROGR_TYPE_CREATE_NEW_SET_DIALOG (frogr_create_new_set_dialog_get_type())
29 
30 G_DECLARE_FINAL_TYPE (FrogrCreateNewSetDialog, frogr_create_new_set_dialog, FROGR, CREATE_NEW_SET_DIALOG, GtkDialog)
31 
32 void frogr_create_new_set_dialog_show (GtkWindow *parent,
33                                        const GSList *pictures,
34                                        const GSList *photosets);
35 
36 G_END_DECLS  /* FROGR_CREATE_NEW_SET_DIALOG_H */
37 
38 #endif
39