/usr/include/libcryptui/cryptui-key-chooser.h is in libcryptui-dev 3.12.2-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | /*
* Seahorse
*
* Copyright (C) 2005 Stefan Walter
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __CRYPTUI_KEY_CHOOSER_H__
#define __CRYPTUI_KEY_CHOOSER_H__
#include <gtk/gtk.h>
#include "cryptui-keyset.h"
typedef enum _CryptUIKeyChooserMode {
CRYPTUI_KEY_CHOOSER_RECIPIENTS = 0x0001,
CRYPTUI_KEY_CHOOSER_SIGNER = 0x0002,
CRYPTUI_KEY_CHOOSER_SUPPORT_SYMMETRIC = 0x0004,
CRYPTUI_KEY_CHOOSER_MUSTSIGN = 0x0010
} CryptUIKeyChooserMode;
#define CRYPTUI_TYPE_KEY_CHOOSER (cryptui_key_chooser_get_type ())
#define CRYPTUI_KEY_CHOOSER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CRYPTUI_TYPE_KEY_CHOOSER, CryptUIKeyChooser))
#define CRYPTUI_KEY_CHOOSER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CRYPTUI_TYPE_KEY_CHOOSER, CryptUIKeyChooser))
#define CRYPTUI_IS_KEY_CHOOSER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CRYPTUI_TYPE_KEY_CHOOSER))
#define CRYPTUI_IS_KEY_CHOOSER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CRYPTUI_TYPE_KEY_CHOOSER))
#define CRYPTUI_KEY_CHOOSER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CRYPTUI_TYPE_KEY_CHOOSER, CryptUIKeyChooser))
typedef struct _CryptUIKeyChooser CryptUIKeyChooser;
typedef struct _CryptUIKeyChooserPriv CryptUIKeyChooserPriv;
typedef struct _CryptUIKeyChooserClass CryptUIKeyChooserClass;
struct _CryptUIKeyChooser {
GtkVBox parent;
/*< private >*/
CryptUIKeyChooserPriv *priv;
};
struct _CryptUIKeyChooserClass {
GtkVBoxClass parent_class;
/* signals --------------------------------------------------------- */
/* The key selection changed */
void (*changed) (CryptUIKeyChooser *chooser);
};
GType cryptui_key_chooser_get_type ();
CryptUIKeyChooser* cryptui_key_chooser_new (CryptUIKeyset *ckset,
CryptUIKeyChooserMode mode);
gboolean cryptui_key_chooser_get_enforce_prefs (CryptUIKeyChooser *chooser);
void cryptui_key_chooser_set_enforce_prefs (CryptUIKeyChooser *chooser,
gboolean enforce_prefs);
gboolean cryptui_key_chooser_have_recipients (CryptUIKeyChooser *chooser);
GList* cryptui_key_chooser_get_recipients (CryptUIKeyChooser *chooser);
void cryptui_key_chooser_set_recipients (CryptUIKeyChooser *chooser,
GList *keys);
const gchar* cryptui_key_chooser_get_signer (CryptUIKeyChooser *chooser);
void cryptui_key_chooser_set_signer (CryptUIKeyChooser *chooser,
const gchar *key);
gboolean cryptui_key_chooser_get_symmetric (CryptUIKeyChooser *chooser);
void cryptui_key_chooser_set_symmetric (CryptUIKeyChooser *chooser,
gboolean symmetric);
CryptUIKeyChooserMode
cryptui_key_chooser_get_mode (CryptUIKeyChooser *chooser);
#endif /* __CRYPTUI_KEY_CHOOSER_H__ */
|