/usr/include/libanjuta-3.0/libanjuta/anjuta-plugin-handle.h is in libanjuta-dev 2:3.4.0-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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
/*
* anjuta-plugin-handle.h
* Copyright (C) Naba Kumar <naba@gnome.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _ANJUTA_PLUGIN_HANDLE_H_
#define _ANJUTA_PLUGIN_HANDLE_H_
#include <glib-object.h>
#include <libanjuta/anjuta-plugin-description.h>
G_BEGIN_DECLS
#define ANJUTA_TYPE_PLUGIN_HANDLE (anjuta_plugin_handle_get_type ())
#define ANJUTA_PLUGIN_HANDLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ANJUTA_TYPE_PLUGIN_HANDLE, AnjutaPluginHandle))
#define ANJUTA_PLUGIN_HANDLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ANJUTA_TYPE_PLUGIN_HANDLE, AnjutaPluginHandleClass))
#define ANJUTA_IS_PLUGIN_HANDLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ANJUTA_TYPE_PLUGIN_HANDLE))
#define ANJUTA_IS_PLUGIN_HANDLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ANJUTA_TYPE_PLUGIN_HANDLE))
#define ANJUTA_PLUGIN_HANDLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ANJUTA_TYPE_PLUGIN_HANDLE, AnjutaPluginHandleClass))
typedef struct _AnjutaPluginHandleClass AnjutaPluginHandleClass;
typedef struct _AnjutaPluginHandlePriv AnjutaPluginHandlePriv;
typedef struct _AnjutaPluginHandle AnjutaPluginHandle;
struct _AnjutaPluginHandleClass
{
GObjectClass parent_class;
};
struct _AnjutaPluginHandle
{
GObject parent_instance;
AnjutaPluginHandlePriv *priv;
};
GType anjuta_plugin_handle_get_type (void) G_GNUC_CONST;
AnjutaPluginHandle* anjuta_plugin_handle_new (const gchar *plugin_desc_path);
const char* anjuta_plugin_handle_get_id (AnjutaPluginHandle *plugin_handle);
const char* anjuta_plugin_handle_get_name (AnjutaPluginHandle *plugin_handle);
const char* anjuta_plugin_handle_get_about (AnjutaPluginHandle *plugin_handle);
const char* anjuta_plugin_handle_get_icon_path (AnjutaPluginHandle *plugin_handle);
const char* anjuta_plugin_handle_get_path (AnjutaPluginHandle *plugin_handle);
gboolean anjuta_plugin_handle_get_user_activatable (AnjutaPluginHandle *plugin_handle);
gboolean anjuta_plugin_handle_get_resident (AnjutaPluginHandle *plugin_handle);
const char* anjuta_plugin_handle_get_language (AnjutaPluginHandle *plugin_handle);
AnjutaPluginDescription* anjuta_plugin_handle_get_description (AnjutaPluginHandle *plugin_handle);
GList* anjuta_plugin_handle_get_dependency_names (AnjutaPluginHandle *plugin_handle);
GHashTable* anjuta_plugin_handle_get_dependencies (AnjutaPluginHandle *plugin_handle);
GHashTable* anjuta_plugin_handle_get_dependents (AnjutaPluginHandle *plugin_handle);
GList* anjuta_plugin_handle_get_interfaces (AnjutaPluginHandle *plugin_handle);
gboolean anjuta_plugin_handle_get_can_load (AnjutaPluginHandle *plugin_handle);
gboolean anjuta_plugin_handle_get_checked (AnjutaPluginHandle *plugin_handle);
gint anjuta_plugin_handle_get_resolve_pass (AnjutaPluginHandle *plugin_handle);
void anjuta_plugin_handle_set_can_load (AnjutaPluginHandle *plugin_handle,
gboolean can_load);
void anjuta_plugin_handle_set_checked (AnjutaPluginHandle *plugin_handle,
gboolean checked);
void anjuta_plugin_handle_set_resolve_pass (AnjutaPluginHandle *plugin_handle,
gboolean resolve_pass);
void anjuta_plugin_handle_unresolve_dependencies (AnjutaPluginHandle *plugin_handle);
G_END_DECLS
#endif /* _ANJUTA_PLUGIN_HANDLE_H_ */
|