/usr/include/libcryptui/cryptui-key-list.h is in libcryptui-dev 3.12.2-1.
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 | /*
* 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_LIST_H__
#define __CRYPTUI_KEY_LIST_H__
#include <gtk/gtk.h>
#include "cryptui-key-store.h"
enum {
CRYPTUI_KEY_LIST_CHECKS = 0x01,
CRYPTUI_KEY_LIST_ICONS = 0x02
};
#define CRYPTUI_TYPE_KEY_LIST GTK_TYPE_TREE_VIEW
#define CRYPTUI_KEY_LIST(obj) GTK_TREE_VIEW(obj)
#define CRYPTUI_KEY_LIST_CLASS(klass) GTK_TREE_VIEW_CLASS(klass)
#define CRYPTUI_IS_KEY_LIST(obj) GTK_IS_TREE_VIEW(obj)
#define CRYPTUI_IS_KEY_LIST_CLASS(klass) GTK_IS_TREE_VIEW_CLASS(obj)
#define CRYPTUI_KEY_LIST_GET_CLASS(obj) GTK_TREE_VIEW_GET_CLASS(obj)
GtkTreeView* cryptui_key_list_new (CryptUIKeyStore *ckstore,
guint flags);
void cryptui_key_list_setup (GtkTreeView *view,
CryptUIKeyStore *ckstore,
guint flags);
CryptUIKeyStore* cryptui_key_list_get_key_store (GtkTreeView *list);
CryptUIKeyset* cryptui_key_list_get_keyset (GtkTreeView *list);
gboolean cryptui_key_list_have_selected_keys (GtkTreeView *list);
GList* cryptui_key_list_get_selected_keys (GtkTreeView *list);
void cryptui_key_list_set_selected_keys (GtkTreeView *list,
GList *keys);
const gchar* cryptui_key_list_get_selected_key (GtkTreeView *list);
void cryptui_key_list_set_selected_key (GtkTreeView *list,
const gchar *key);
#endif /* __CRYPTUI_KEY_LIST_H__ */
|