1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
4 * Copyright (C) Naba Kumar <naba@gnome.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 #ifndef _ANJUTA_SHELL_H
21 #define _ANJUTA_SHELL_H
23 #include <glib-object.h>
24 #include <gtk/gtkwidget.h>
26 #include <libanjuta/anjuta-shell.h>
27 #include <libanjuta/anjuta-status.h>
28 #include <libanjuta/anjuta-ui.h>
29 #include <libanjuta/anjuta-preferences.h>
30 #include <libanjuta/anjuta-plugin-manager.h>
31 #include <libanjuta/anjuta-profile-manager.h>
32 #include <libanjuta/anjuta-session.h>
33 #include <libanjuta/anjuta-save-prompt.h>
37 #define ANJUTA_TYPE_SHELL (anjuta_shell_get_type ())
38 #define ANJUTA_SHELL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ANJUTA_TYPE_SHELL, AnjutaShell))
39 #define ANJUTA_IS_SHELL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ANJUTA_TYPE_SHELL))
40 #define ANJUTA_SHELL_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ANJUTA_TYPE_SHELL, AnjutaShellIface))
42 #define ANJUTA_SHELL_ERROR anjuta_shell_error_quark()
44 typedef struct _AnjutaShell AnjutaShell
;
45 typedef struct _AnjutaShellIface AnjutaShellIface
;
49 ANJUTA_SHELL_ERROR_DOESNT_EXIST
,
54 ANJUTA_SHELL_PLACEMENT_NONE
= 0,
55 ANJUTA_SHELL_PLACEMENT_TOP
,
56 ANJUTA_SHELL_PLACEMENT_BOTTOM
,
57 ANJUTA_SHELL_PLACEMENT_RIGHT
,
58 ANJUTA_SHELL_PLACEMENT_LEFT
,
59 ANJUTA_SHELL_PLACEMENT_CENTER
,
60 ANJUTA_SHELL_PLACEMENT_FLOATING
61 } AnjutaShellPlacement
;
63 struct _AnjutaShellIface
{
64 GTypeInterface g_iface
;
67 void (*value_added
) (AnjutaShell
*shell
, char *name
, GValue
*value
);
68 void (*value_removed
) (AnjutaShell
*shell
, char *name
);
69 void (*save_session
) (AnjutaShell
*shell
, AnjutaSessionPhase phase
,
70 AnjutaSession
*session
);
71 void (*load_session
) (AnjutaShell
*shell
, AnjutaSessionPhase phase
,
72 AnjutaSession
*session
);
73 void (*save_prompt
) (AnjutaShell
*shell
, AnjutaSavePrompt
*save_prompt
);
74 void (*exiting
) (AnjutaShell
*shell
);
77 AnjutaStatus
* (*get_status
) (AnjutaShell
*shell
, GError
**err
);
78 AnjutaUI
* (*get_ui
) (AnjutaShell
*shell
, GError
**err
);
79 AnjutaPreferences
* (*get_preferences
) (AnjutaShell
*shell
, GError
**err
);
80 AnjutaPluginManager
* (*get_plugin_manager
) (AnjutaShell
*shell
,
82 AnjutaProfileManager
* (*get_profile_manager
) (AnjutaShell
*shell
,
85 void (*add_widget_full
) (AnjutaShell
*shell
,
90 AnjutaShellPlacement placement
,
94 void (*remove_widget
) (AnjutaShell
*shell
,
97 void (*present_widget
) (AnjutaShell
*shell
,
100 void (*add_value
) (AnjutaShell
*shell
,
104 void (*get_value
) (AnjutaShell
*shell
,
108 void (*remove_value
) (AnjutaShell
*shell
,
111 GObject
* (*get_object
) (AnjutaShell
*shell
,
112 const char *iface_name
,
116 GQuark
anjuta_shell_error_quark (void);
117 GType
anjuta_shell_get_type (void);
119 AnjutaStatus
* anjuta_shell_get_status (AnjutaShell
*shell
, GError
**error
);
121 AnjutaUI
* anjuta_shell_get_ui (AnjutaShell
*shell
, GError
**error
);
123 AnjutaPreferences
* anjuta_shell_get_preferences (AnjutaShell
*shell
,
126 AnjutaPluginManager
* anjuta_shell_get_plugin_manager (AnjutaShell
*shell
,
129 AnjutaProfileManager
* anjuta_shell_get_profile_manager (AnjutaShell
*shell
,
132 void anjuta_shell_freeze (AnjutaShell
*shell
, GError
**error
);
133 void anjuta_shell_thaw (AnjutaShell
*shell
, GError
**error
);
135 void anjuta_shell_add_widget (AnjutaShell
*shell
,
139 const char *stock_id
,
140 AnjutaShellPlacement placement
,
143 void anjuta_shell_add_widget_full (AnjutaShell
*shell
,
147 const char *stock_id
,
148 AnjutaShellPlacement placement
,
152 void anjuta_shell_remove_widget (AnjutaShell
*shell
,
155 void anjuta_shell_present_widget (AnjutaShell
*shell
,
158 void anjuta_shell_add_value (AnjutaShell
*shell
,
162 void anjuta_shell_add_valist (AnjutaShell
*shell
,
163 const char *first_name
,
166 void anjuta_shell_add (AnjutaShell
*shell
,
167 const char *first_name
,
170 void anjuta_shell_get_value (AnjutaShell
*shell
,
174 void anjuta_shell_get_valist (AnjutaShell
*shell
,
175 const char *first_name
,
178 void anjuta_shell_get (AnjutaShell
*shell
,
179 const char *first_name
,
182 void anjuta_shell_remove_value (AnjutaShell
*shell
,
186 GObject
*anjuta_shell_get_object (AnjutaShell
*shell
,
187 const gchar
*iface_name
,
189 void anjuta_shell_session_save (AnjutaShell
*shell
,
190 const gchar
*session_directory
,
192 void anjuta_shell_session_load (AnjutaShell
*shell
,
193 const gchar
*session_directory
,
195 void anjuta_shell_save_prompt (AnjutaShell
*shell
,
196 AnjutaSavePrompt
*prompt
,
198 void anjuta_shell_notify_exit (AnjutaShell
*shell
, GError
**error
);
201 * anjuta_shell_get_interface:
202 * @shell: A #AnjutaShell object
203 * @iface_type: The interface type implemented by the object to be found
204 * @error: Error propagation object.
206 * Equivalent to anjuta_shell_get_object(), but additionally typecasts returned
207 * object to the interface type. It also takes interface type directly. A
208 * usage of this function is:
210 * IAnjutaDocumentManager *docman =
211 * anjuta_shell_get_interface (shell, IAnjutaDocumentManager, error);
214 #define anjuta_shell_get_interface(shell, iface_type, error) \
215 ((iface_type*) anjuta_shell_get_object((shell), #iface_type, (error)))