1 /*
2  * frogr-auth-dialog.h -- Authorization dialog
3  *
4  * Copyright (C) 2009-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_AUTH_DIALOG_H
22 #define FROGR_AUTH_DIALOG_H
23 
24 #include <gtk/gtk.h>
25 
26 G_BEGIN_DECLS
27 
28 typedef enum {
29   REQUEST_AUTHORIZATION,
30   CONFIRM_AUTHORIZATION
31 } FrogrAuthDialogStep;
32 
33 void frogr_auth_dialog_show (GtkWindow *parent, FrogrAuthDialogStep step);
34 
35 G_END_DECLS
36 
37 #endif /* FROGR_AUTH_DIALOG_H */
38