~ubuntu-branches/ubuntu/natty/seahorse/natty

1.2.39 by Christophe Sauthier
Import upstream version 2.25.4
1
/* 
2
 * Seahorse
3
 * 
4
 * Copyright (C) 2008 Stefan Walter
5
 * 
6
 * This program is free software; you can redistribute it and/or modify 
7
 * it under the terms of the GNU Lesser General Public License as
8
 * published by the Free Software Foundation; either version 2.1 of
9
 * the License, or (at your option) any later version.
10
 *  
11
 * This program is distributed in the hope that it will be useful, but
12
 * WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 * Lesser General Public License for more details.
15
 *  
16
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19
 * 02111-1307, USA.  
20
 */
1.2.32 by Sebastien Bacher
Import upstream version 2.23.5
21
22
#ifndef __SEAHORSE_GKR_DIALOGS__
23
#define __SEAHORSE_GKR_DIALOGS__
24
25
#include <gtk/gtk.h>
26
1.2.39 by Christophe Sauthier
Import upstream version 2.25.4
27
#include "seahorse-gkr-item.h"
28
#include "seahorse-gkr-keyring.h"
1.2.46 by Andreas Moog
Import upstream version 2.27.5
29
#include "seahorse-widget.h"
1.2.39 by Christophe Sauthier
Import upstream version 2.25.4
30
31
void            seahorse_gkr_add_keyring_register     (void);
32
1.2.46 by Andreas Moog
Import upstream version 2.27.5
33
void            seahorse_gkr_add_item_show            (GtkWindow *parent);
34
1.2.39 by Christophe Sauthier
Import upstream version 2.25.4
35
void            seahorse_gkr_add_keyring_show         (GtkWindow *parent);
36
37
void            seahorse_gkr_item_properties_show     (SeahorseGkrItem *git, GtkWindow *parent);
38
39
void            seahorse_gkr_keyring_properties_show  (SeahorseGkrKeyring *gkr, GtkWindow *parent);
1.2.32 by Sebastien Bacher
Import upstream version 2.23.5
40
1.2.46 by Andreas Moog
Import upstream version 2.27.5
41
void            seahorse_gkr_dialog_begin_request     (SeahorseWidget *swidget, gpointer request);
42
43
void            seahorse_gkr_dialog_complete_request  (SeahorseWidget *swidget, gboolean cancel);
44
1.2.32 by Sebastien Bacher
Import upstream version 2.23.5
45
#endif /* __SEAHORSE_GKR_DIALOGS__ */