/usr/include/libanjuta-3.0/libanjuta/anjuta-shell.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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
/*
* anjuta-shell.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_SHELL_H
#define _ANJUTA_SHELL_H
#include <glib-object.h>
#include <gtk/gtk.h>
#include <libanjuta/anjuta-shell.h>
#include <libanjuta/anjuta-status.h>
#include <libanjuta/anjuta-ui.h>
#include <libanjuta/anjuta-preferences.h>
#include <libanjuta/anjuta-plugin-manager.h>
#include <libanjuta/anjuta-profile-manager.h>
#include <libanjuta/anjuta-session.h>
#include <libanjuta/anjuta-save-prompt.h>
G_BEGIN_DECLS
#define ANJUTA_TYPE_SHELL (anjuta_shell_get_type ())
#define ANJUTA_SHELL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ANJUTA_TYPE_SHELL, AnjutaShell))
#define ANJUTA_IS_SHELL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ANJUTA_TYPE_SHELL))
#define ANJUTA_SHELL_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ANJUTA_TYPE_SHELL, AnjutaShellIface))
#define ANJUTA_SHELL_ERROR anjuta_shell_error_quark()
typedef struct _AnjutaShell AnjutaShell;
typedef struct _AnjutaShellIface AnjutaShellIface;
/**
* AnjutaShellError_
* @ANJUTA_SHELL_ERROR_DOESNT_EXIST:
*/
typedef enum
{
ANJUTA_SHELL_ERROR_DOESNT_EXIST,
} AnjutaShellError;
typedef enum
{
ANJUTA_SHELL_PLACEMENT_NONE = 0,
ANJUTA_SHELL_PLACEMENT_TOP,
ANJUTA_SHELL_PLACEMENT_BOTTOM,
ANJUTA_SHELL_PLACEMENT_RIGHT,
ANJUTA_SHELL_PLACEMENT_LEFT,
ANJUTA_SHELL_PLACEMENT_CENTER,
ANJUTA_SHELL_PLACEMENT_FLOATING
} AnjutaShellPlacement;
struct _AnjutaShellIface {
GTypeInterface g_iface;
/* Signals */
void (*value_added) (AnjutaShell *shell, char *name, GValue *value);
void (*value_removed) (AnjutaShell *shell, char *name);
void (*save_session) (AnjutaShell *shell, AnjutaSessionPhase phase,
AnjutaSession *session);
void (*load_session) (AnjutaShell *shell, AnjutaSessionPhase phase,
AnjutaSession *session);
void (*save_prompt) (AnjutaShell *shell, AnjutaSavePrompt *save_prompt);
void (*exiting) (AnjutaShell *shell);
/* Virtual Table */
AnjutaStatus* (*get_status) (AnjutaShell *shell, GError **err);
AnjutaUI* (*get_ui) (AnjutaShell *shell, GError **err);
AnjutaPreferences* (*get_preferences) (AnjutaShell *shell, GError **err);
AnjutaPluginManager* (*get_plugin_manager) (AnjutaShell *shell,
GError **err);
AnjutaProfileManager* (*get_profile_manager) (AnjutaShell *shell,
GError **err);
void (*add_widget_full) (AnjutaShell *shell,
GtkWidget *widget,
const char *name,
const char *title,
const char *stock_id,
AnjutaShellPlacement placement,
gboolean locked,
GError **error);
void (*add_widget_custom) (AnjutaShell *shell,
GtkWidget *widget,
const char *name,
const char *title,
const char *stock_id,
GtkWidget *label,
AnjutaShellPlacement placement,
GError **error);
void (*remove_widget) (AnjutaShell *shell,
GtkWidget *widget,
GError **error);
void (*present_widget) (AnjutaShell *shell,
GtkWidget *widget,
GError **error);
void (*iconify_dockable_widget) (AnjutaShell *shell,
GtkWidget *widget,
GError **error);
void (*hide_dockable_widget) (AnjutaShell *shell,
GtkWidget *widget,
GError **error);
void (*show_dockable_widget) (AnjutaShell *shell,
GtkWidget *widget,
GError **error);
void (*maximize_widget) (AnjutaShell *shell,
const char *widget_name,
GError **error);
void (*unmaximize) (AnjutaShell *shell,
GError **error);
void (*add_value) (AnjutaShell *shell,
const char *name,
const GValue *value,
GError **error);
void (*get_value) (AnjutaShell *shell,
const char *name,
GValue *value,
GError **error);
void (*remove_value) (AnjutaShell *shell,
const char *name,
GError **error);
void (*saving_push) (AnjutaShell* shell);
void (*saving_pop) (AnjutaShell* shell);
GObject* (*get_object) (AnjutaShell *shell,
const char *iface_name,
GError **error);
};
GQuark anjuta_shell_error_quark (void);
GType anjuta_shell_get_type (void);
AnjutaStatus* anjuta_shell_get_status (AnjutaShell *shell, GError **error);
AnjutaUI* anjuta_shell_get_ui (AnjutaShell *shell, GError **error);
AnjutaPreferences* anjuta_shell_get_preferences (AnjutaShell *shell,
GError **error);
AnjutaPluginManager* anjuta_shell_get_plugin_manager (AnjutaShell *shell,
GError **error);
AnjutaProfileManager* anjuta_shell_get_profile_manager (AnjutaShell *shell,
GError **error);
void anjuta_shell_freeze (AnjutaShell *shell, GError **error);
void anjuta_shell_thaw (AnjutaShell *shell, GError **error);
void anjuta_shell_add_widget (AnjutaShell *shell,
GtkWidget *widget,
const char *name,
const char *title,
const char *stock_id,
AnjutaShellPlacement placement,
GError **error);
void anjuta_shell_add_widget_custom (AnjutaShell *shell,
GtkWidget *widget,
const char *name,
const char *title,
const char *stock_id,
GtkWidget *label,
AnjutaShellPlacement placement,
GError **error);
void anjuta_shell_add_widget_full (AnjutaShell *shell,
GtkWidget *widget,
const char *name,
const char *title,
const char *stock_id,
AnjutaShellPlacement placement,
gboolean locked,
GError **error);
void anjuta_shell_remove_widget (AnjutaShell *shell,
GtkWidget *widget,
GError **error);
void anjuta_shell_present_widget (AnjutaShell *shell,
GtkWidget *widget,
GError **error);
void anjuta_shell_iconify_dockable_widget (AnjutaShell *shell,
GtkWidget *widget,
GError **error);
void anjuta_shell_hide_dockable_widget (AnjutaShell *shell,
GtkWidget *widget,
GError **error);
void anjuta_shell_show_dockable_widget (AnjutaShell *shell,
GtkWidget *widget,
GError **error);
void anjuta_shell_maximize_widget (AnjutaShell *shell,
const char *widget_name,
GError **error);
void anjuta_shell_unmaximize (AnjutaShell *shell,
GError **error);
void anjuta_shell_add_value (AnjutaShell *shell,
const char *name,
const GValue *value,
GError **error);
void anjuta_shell_add_valist (AnjutaShell *shell,
const char *first_name,
GType first_type,
va_list var_args);
void anjuta_shell_add (AnjutaShell *shell,
const char *first_name,
GType first_type,
...);
void anjuta_shell_get_value (AnjutaShell *shell,
const char *name,
GValue *value,
GError **error);
void anjuta_shell_get_valist (AnjutaShell *shell,
const char *first_name,
GType first_type,
va_list var_args);
void anjuta_shell_get (AnjutaShell *shell,
const char *first_name,
GType first_type,
...);
void anjuta_shell_remove_value (AnjutaShell *shell,
const char *name,
GError **error);
GObject *anjuta_shell_get_object (AnjutaShell *shell,
const gchar *iface_name,
GError **error);
void anjuta_shell_session_save (AnjutaShell *shell,
const gchar *session_directory,
GError **error);
void anjuta_shell_session_load (AnjutaShell *shell,
const gchar *session_directory,
GError **error);
void anjuta_shell_save_prompt (AnjutaShell *shell,
AnjutaSavePrompt *prompt,
GError **error);
void anjuta_shell_notify_exit (AnjutaShell *shell, GError **error);
void anjuta_shell_saving_push (AnjutaShell* shell);
void anjuta_shell_saving_pop (AnjutaShell* shell);
/**
* anjuta_shell_get_interface:
* @shell: A #AnjutaShell object
* @iface_type: The interface type implemented by the object to be found
* @error: Error propagation object.
*
* Equivalent to anjuta_shell_get_object(), but additionally typecasts returned
* object to the interface type. It also takes interface type directly. A
* usage of this function is:
* <programlisting>
* IAnjutaDocumentManager *docman =
* anjuta_shell_get_interface (shell, IAnjutaDocumentManager, error);
* </programlisting>
*/
#define anjuta_shell_get_interface(shell, iface_type, error) \
((iface_type*) anjuta_shell_get_object((shell), #iface_type, (error)))
G_END_DECLS
#endif
|