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
22 * SECTION:anjuta-shell
24 * @short_description: Application shell interface
26 * @stability: Unstable
27 * @include: libanjuta/anjuta-shell.h
29 * Shell is the playground where plugins are loaded and their UI
30 * widgets shown. It is also a place where plugins export objects for letting
31 * other pluings to use. Plugins are loaded into shell on demand, but some
32 * plugins are loaded on startup (such as help and text editor plugin).
33 * Demand to load a plugin can be made by requesting for a primary inferface
34 * using anjuta_shell_get_interface() or anjuta_shell_get_object().
36 * Plugins can add widgets in shell with
37 * anjuta_shell_add_widget() and remove with anjuta_shell_remove_widget()
40 * In Anjuta, shell is implemented using an advanced widget docking system,
41 * allowing plugin widgets to dock, undock and layout in any fashion. Dock
42 * layout is also maintained internally and is transparent to plugin
45 * #AnjutaShell allows plugins to export arbitrary objects as <emphasis>
46 * values</emphasis> in its <emphasis>Values System</emphasis>. "value_added"
47 * and "value_removed" signals are emitted when a value is added to or
48 * removed from the <emphasis>Values System</emphasis>, hence notifying
49 * plugins of its state. However, plugins should really not connect directly
50 * to these signals, because they are emitted for all values
51 * and not just for the values the plugin is interested in. Instead,
52 * to monitor specific <emphasis>Values</emphasis>, plugins should
53 * setup watches using anjuta_plugin_add_watch().
55 * <emphasis>Values</emphasis> are added, get or removed with
56 * anjuta_shell_add_value() and anjuta_shell_get_value() or
57 * anjuta_shell_remove_value(). There multi-valued equivalent functions
58 * can be used to manipulate multiple values at once.
60 * <emphasis>Values</emphasis> are identified with names. Since <emphasis>
61 * Values</emphasis> are effectively variables, their names should follow
62 * the standard GNOME variable naming convention and should be as descriptive
63 * as possible (e.g project_root_directory, project_name etc.). It is also
64 * essential that meaningful prefix be given to names so that <emphasis>
65 * Values</emphasis> are easily grouped (e.g all values exported by a
66 * project manager should start with project_ prefix).
68 * Plugins can find other plugins with anjuta_shell_get_object() or
69 * anjuta_shell_get_interface() based on their primary interfaces.
74 #include <gobject/gvaluecollector.h>
75 #include "anjuta-shell.h"
76 #include "anjuta-marshal.h"
77 #include "anjuta-debug.h"
84 AnjutaShellPlacement placement
;
89 on_widget_data_free (WidgetQueueData
*data
)
91 g_object_unref (data
->widget
);
94 g_free (data
->stock_id
);
99 on_widget_data_add (WidgetQueueData
*data
, AnjutaShell
*shell
)
101 ANJUTA_SHELL_GET_IFACE (shell
)->add_widget_full (shell
, data
->widget
,
111 on_destroy_widget_queue (gpointer data
)
113 GQueue
*queue
= (GQueue
*)data
;
114 g_queue_foreach (queue
, (GFunc
)on_widget_data_free
, NULL
);
115 g_queue_free (queue
);
119 anjuta_shell_error_quark (void)
121 static GQuark quark
= 0;
124 quark
= g_quark_from_static_string ("anjuta-shell-quark");
131 * anjuta_shell_freeze:
132 * @shell: A #AnjutaShell interface.
133 * @error: Error propagation object.
135 * Freezes addition of any UI elements (widgets) in the shell. All widget
136 * additions are queued for later additions when freeze count reaches 0.
137 * Any number of this function can be called and each call will increase
138 * the freeze count. anjuta_shell_thaw() will reduce the freeze count by
139 * 1 and real thawing happens when the count reaches 0.
142 anjuta_shell_freeze (AnjutaShell
*shell
, GError
**error
)
146 g_return_if_fail (shell
!= NULL
);
147 freeze_count
= GPOINTER_TO_INT (g_object_get_data (G_OBJECT (shell
),
150 g_object_set_data (G_OBJECT (shell
), "__freeze_count",
151 GINT_TO_POINTER (freeze_count
));
156 * @shell: A #AnjutaShell interface.
157 * @error: Error propagation object.
159 * Reduces the freeze count by one and performs pending widget additions
160 * when the count reaches 0.
163 anjuta_shell_thaw (AnjutaShell
*shell
, GError
**error
)
167 g_return_if_fail (shell
!= NULL
);
168 freeze_count
= GPOINTER_TO_INT (g_object_get_data (G_OBJECT (shell
),
171 if (freeze_count
< 0)
173 g_object_set_data (G_OBJECT (shell
), "__freeze_count",
174 GINT_TO_POINTER (freeze_count
));
176 if (freeze_count
<= 0)
178 /* Add all pending widgets */
179 /* DEBUG_PRINT ("Thawing shell ..."); */
182 queue
= g_object_get_data (G_OBJECT (shell
), "__widget_queue");
185 g_queue_reverse (queue
);
186 g_queue_foreach (queue
, (GFunc
)on_widget_data_add
, shell
);
187 g_object_set_data (G_OBJECT (shell
), "__widget_queue", NULL
);
193 * anjuta_shell_add_widget:
194 * @shell: A #AnjutaShell interface.
195 * @widget: Then widget to add
196 * @name: Name of the widget. None translated string used to identify it in
198 * @stock_id: Icon stock ID. Could be null.
199 * @title: Translated string which is displayed along side the widget when
200 * required (eg. as window title or notebook tab label).
201 * @placement: Placement of the widget in shell.
202 * @error: Error propagation object.
204 * Adds @widget in the shell. The @placement tells where the widget should
205 * appear, but generally it will be overridden by the container
206 * (dock, notebook, GtkContainer etc.) saved layout.
209 anjuta_shell_add_widget (AnjutaShell
*shell
,
213 const char *stock_id
,
214 AnjutaShellPlacement placement
,
217 anjuta_shell_add_widget_full(shell
, widget
, name
, title
,
218 stock_id
, placement
, FALSE
, error
);
222 * anjuta_shell_add_widget_full:
223 * @shell: A #AnjutaShell interface.
224 * @widget: Then widget to add
225 * @name: Name of the widget. None translated string used to identify it in
227 * @stock_id: Icon stock ID. Could be null.
228 * @title: Translated string which is displayed along side the widget when
229 * required (eg. as window title or notebook tab label).
230 * @placement: Placement of the widget in shell.
231 * @locked: Whether to lock that widget (do not use this, it's only
232 * useful to some stock plugins
233 * @error: Error propagation object.
235 * Adds @widget in the shell. The @placement tells where the widget should
236 * appear, but generally it will be overridden by the container
237 * (dock, notebook, GtkContainer etc.) saved layout.
239 * Normally just use anjuta_shell_add_widget() because you do not
243 anjuta_shell_add_widget_full (AnjutaShell
*shell
,
247 const char *stock_id
,
248 AnjutaShellPlacement placement
,
252 GQueue
*widget_queue
;
255 g_return_if_fail (shell
!= NULL
);
256 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
257 g_return_if_fail (widget
!= NULL
);
258 g_return_if_fail (GTK_IS_WIDGET (widget
));
259 g_return_if_fail (name
!= NULL
);
260 g_return_if_fail (title
!= NULL
);
262 freeze_count
= GPOINTER_TO_INT (g_object_get_data (G_OBJECT (shell
),
264 if (freeze_count
<= 0)
266 ANJUTA_SHELL_GET_IFACE (shell
)->add_widget_full (shell
, widget
, name
,
268 placement
, locked
, error
);
272 /* Queue the operation */
275 widget_queue
= g_object_get_data (G_OBJECT (shell
), "__widget_queue");
278 widget_queue
= g_queue_new ();
279 g_object_set_data_full (G_OBJECT (shell
), "__widget_queue",
280 widget_queue
, on_destroy_widget_queue
);
282 qd
= g_new0(WidgetQueueData
, 1);
283 g_object_ref (G_OBJECT (widget
));
285 qd
->name
= g_strdup (name
);
286 qd
->title
= g_strdup (title
);
289 qd
->stock_id
= g_strdup (stock_id
);
290 qd
->placement
= placement
;
292 g_queue_push_head (widget_queue
, qd
);
297 * anjuta_shell_remove_widget:
298 * @shell: A #AnjutaShell interface
299 * @widget: The widget to remove
300 * @error: Error propagation object
302 * Removes the widget from shell. The widget should have been added before
303 * with #anjuta_shell_add_widget.
306 anjuta_shell_remove_widget (AnjutaShell
*shell
,
311 gboolean found_in_queue
;
313 g_return_if_fail (shell
!= NULL
);
314 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
315 g_return_if_fail (widget
!= NULL
);
316 g_return_if_fail (GTK_IS_WIDGET (widget
));
318 /* If there is a queue, remove widgets from it */
319 found_in_queue
= FALSE
;
320 queue
= g_object_get_data (G_OBJECT (shell
), "__widget_queue");
324 for (i
= g_queue_get_length(queue
) - 1; i
>= 0; i
--)
328 qd
= g_queue_peek_nth (queue
, i
);
329 if (qd
->widget
== widget
)
331 g_queue_remove (queue
, qd
);
332 on_widget_data_free (qd
);
333 found_in_queue
= TRUE
;
339 ANJUTA_SHELL_GET_IFACE (shell
)->remove_widget (shell
, widget
, error
);
343 * anjuta_shell_present_widget:
344 * @shell: A #AnjutaShell interface
345 * @widget: The widget to present
346 * @error: Error propagation object
348 * Make sure the widget is visible to user. If the widget is hidden, it will
349 * be shown. If it is not visible to user, it will be made visible.
352 anjuta_shell_present_widget (AnjutaShell
*shell
,
357 gboolean found_in_queue
;
359 g_return_if_fail (shell
!= NULL
);
360 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
361 g_return_if_fail (widget
!= NULL
);
362 g_return_if_fail (GTK_IS_WIDGET (widget
));
364 /* If there is a queue and the widget is in the queue, there is no
365 * way we can 'present' the widget */
366 found_in_queue
= FALSE
;
367 queue
= g_object_get_data (G_OBJECT (shell
), "__widget_queue");
371 for (i
= g_queue_get_length(queue
) - 1; i
>= 0; i
--)
375 qd
= g_queue_peek_nth (queue
, i
);
376 if (qd
->widget
== widget
)
378 found_in_queue
= TRUE
;
384 ANJUTA_SHELL_GET_IFACE (shell
)->present_widget (shell
, widget
, error
);
388 * anjuta_shell_add_value:
389 * @shell: A #AnjutaShell interface
390 * @name: Name of the value
391 * @value: Value to add
392 * @error: Error propagation object
394 * Sets a value in the shell with the given name. Any previous value will
395 * be overridden. "value_added" signal will be emitted. Objects connecting
396 * to this signal can then update their data according to the new value.
399 anjuta_shell_add_value (AnjutaShell
*shell
,
404 g_return_if_fail (shell
!= NULL
);
405 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
406 g_return_if_fail (name
!= NULL
);
407 g_return_if_fail (value
!= NULL
);
409 ANJUTA_SHELL_GET_IFACE (shell
)->add_value (shell
, name
, value
, error
);
413 * anjuta_shell_add_valist:
414 * @shell: A #AnjutaShell interface
415 * @first_name: First value name
416 * @first_type: First value type
417 * @var_args: First value, Second value name, Second value type ....
419 * Adds a valist of values in the shell. The valist should be in the order -
420 * value1, name2, type2, value2,... "value_added" signal will be emitted
421 * for each of the value.
424 anjuta_shell_add_valist (AnjutaShell
*shell
,
425 const char *first_name
,
432 g_return_if_fail (shell
!= NULL
);
433 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
434 g_return_if_fail (first_name
!= NULL
);
440 GValue value
= {0, };
444 g_value_init (&value
, type
);
446 G_VALUE_COLLECT (&value
, var_args
, 0, &error
);
449 g_warning ("%s: %s", G_STRLOC
, error
);
454 anjuta_shell_add_value (shell
, name
, &value
, &err
);
456 g_value_unset (&value
);
459 g_warning ("Could not set value: %s\n", err
->message
);
464 name
= va_arg (var_args
, char *);
466 type
= va_arg (var_args
, GType
);
473 * @shell: A #AnjutaShell interface
474 * @first_name: First value name
475 * @first_type: First value type
476 * @...: First value, Second value name, Second value type .... NULL
478 * Adds a list of values in the shell. The list should be NULL terminated
479 * and should be in the order - name1, type1, value1, name2, type2, value2,
480 * ..., NULL. "value_added" signal will be emitted for each of the value.
483 anjuta_shell_add (AnjutaShell
*shell
,
484 const char *first_name
,
490 g_return_if_fail (shell
!= NULL
);
491 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
492 g_return_if_fail (first_name
!= NULL
);
494 va_start (var_args
, first_type
);
495 anjuta_shell_add_valist (shell
, first_name
, first_type
, var_args
);
500 * anjuta_shell_get_value:
501 * @shell: A #AnjutaShell interface
502 * @name: Name of the value to get
503 * @value: Value to get
504 * @error: Error propagation object
506 * Gets a value from the shell with the given name. The value will be set
507 * in the passed value pointer.
510 anjuta_shell_get_value (AnjutaShell
*shell
,
515 g_return_if_fail (shell
!= NULL
);
516 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
517 g_return_if_fail (name
!= NULL
);
518 g_return_if_fail (value
!= NULL
);
520 ANJUTA_SHELL_GET_IFACE (shell
)->get_value (shell
, name
, value
, error
);
524 * anjuta_shell_get_valist:
525 * @shell: A #AnjutaShell interface
526 * @first_name: First value name
527 * @first_type: First value type
528 * @var_args: First value holder, Second value name, Second value type ....
530 * Gets a valist of values from the shell. The valist should be in the order -
531 * value1, name2, type2, value2,...
534 anjuta_shell_get_valist (AnjutaShell
*shell
,
535 const char *first_name
,
542 g_return_if_fail (shell
!= NULL
);
543 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
544 g_return_if_fail (first_name
!= NULL
);
550 GValue value
= {0, };
554 g_value_init (&value
, type
);
556 anjuta_shell_get_value (shell
, name
, &value
, &err
);
559 g_warning ("Could not get value: %s", err
->message
);
564 G_VALUE_LCOPY (&value
, var_args
, 0, &error
);
567 g_warning ("%s: %s", G_STRLOC
, error
);
572 g_value_unset (&value
);
574 name
= va_arg (var_args
, char *);
576 type
= va_arg (var_args
, GType
);
583 * @shell: A #AnjutaShell interface
584 * @first_name: First value name
585 * @first_type: First value type
586 * @...: First value holder, Second value name, Second value type .... NULL
588 * Gets a list of values in the shell. The list should be NULL terminated
589 * and should be in the order - name1, type1, value1, name2, type2, value2,
593 anjuta_shell_get (AnjutaShell
*shell
,
594 const char *first_name
,
600 g_return_if_fail (shell
!= NULL
);
601 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
602 g_return_if_fail (first_name
!= NULL
);
604 va_start (var_args
, first_type
);
605 anjuta_shell_get_valist (shell
, first_name
, first_type
, var_args
);
610 * anjuta_shell_remove_value:
611 * @shell: A #AnjutaShell interface
612 * @name: Name of the value to remove
613 * @error: Error propagation object
615 * Removes a value from the shell with the given name. "value_removed" signal
616 * will be emitted. Objects connecting to this signal can then update their
617 * data/internal-state accordingly.
620 anjuta_shell_remove_value (AnjutaShell
*shell
,
624 g_return_if_fail (shell
!= NULL
);
625 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
626 g_return_if_fail (name
!= NULL
);
628 ANJUTA_SHELL_GET_IFACE (shell
)->remove_value (shell
, name
, error
);
632 * anjuta_shell_get_object:
633 * @shell: A #AnjutaShell interface
634 * @iface_name: The interface implemented by the object to be found
635 * @error: Error propagation.
637 * Searches the currently available plugins to find the one which
638 * implements the given interface as primary interface and returns it. If
639 * the plugin is not yet loaded, it will be loaded and activated.
640 * The returned object is garanteed to be an implementor of the
641 * interface (as exported by the plugin metafile). It only searches
642 * from the pool of plugin objects loaded in this shell and can only search
643 * by primary interface. If there are more objects implementing this primary
644 * interface, user might be prompted to select one from them (and might give
645 * the option to use it as default for future queries). A typical usage of this
649 * anjuta_plugins_get_object (shell, "IAnjutaDocumentManager", error);
651 * Notice that this function takes the interface name string as string, unlike
652 * anjuta_plugins_get_interface() which takes the type directly.
654 * Return value: A plugin object implementing the primary interface or NULL.
657 anjuta_shell_get_object (AnjutaShell
*shell
, const gchar
*iface_name
,
660 g_return_val_if_fail (shell
!= NULL
, NULL
);
661 g_return_val_if_fail (iface_name
!= NULL
, NULL
);
662 g_return_val_if_fail (ANJUTA_IS_SHELL (shell
), NULL
);
664 return ANJUTA_SHELL_GET_IFACE (shell
)->get_object (shell
, iface_name
, error
);
668 * anjuta_shell_get_status:
669 * @shell: A #AnjutaShell interface
670 * @error: Error propagation object
672 * Retrieves the #AnjutaStatus object associated with the shell.
674 * Return value: The #AnjutaStatus object.
677 anjuta_shell_get_status (AnjutaShell
*shell
, GError
**error
)
679 g_return_val_if_fail (shell
!= NULL
, NULL
);
680 g_return_val_if_fail (ANJUTA_IS_SHELL (shell
), NULL
);
682 return ANJUTA_SHELL_GET_IFACE (shell
)->get_status (shell
, error
);
686 * anjuta_shell_get_ui:
687 * @shell: A #AnjutaShell interface
688 * @error: Error propagation object
690 * Retrieves the #AnjutaUI object associated with the shell.
692 * Return value: The #AnjutaUI object.
695 anjuta_shell_get_ui (AnjutaShell
*shell
, GError
**error
)
697 g_return_val_if_fail (shell
!= NULL
, NULL
);
698 g_return_val_if_fail (ANJUTA_IS_SHELL (shell
), NULL
);
700 return ANJUTA_SHELL_GET_IFACE (shell
)->get_ui (shell
, error
);
704 * anjuta_shell_get_preferences:
705 * @shell: A #AnjutaShell interface
706 * @error: Error propagation object
708 * Retrieves the #AnjutaPreferences object associated with the shell.
710 * Return value: The #AnjutaPreferences object.
713 anjuta_shell_get_preferences (AnjutaShell
*shell
, GError
**error
)
715 g_return_val_if_fail (shell
!= NULL
, NULL
);
716 g_return_val_if_fail (ANJUTA_IS_SHELL (shell
), NULL
);
718 return ANJUTA_SHELL_GET_IFACE (shell
)->get_preferences (shell
, error
);
722 * anjuta_shell_get_plugin_manager:
723 * @shell: A #AnjutaShell interface
724 * @error: Error propagation object
726 * Retrieves the #AnjutaPluginManager object associated with the shell.
728 * Return value: The #AnjutaPluginManager object.
731 anjuta_shell_get_plugin_manager (AnjutaShell
*shell
, GError
**error
)
733 g_return_val_if_fail (shell
!= NULL
, NULL
);
734 g_return_val_if_fail (ANJUTA_IS_SHELL (shell
), NULL
);
736 return ANJUTA_SHELL_GET_IFACE (shell
)->get_plugin_manager (shell
, error
);
740 * anjuta_shell_get_profile_manager:
741 * @shell: A #AnjutaShell interface
742 * @error: Error propagation object
744 * Retrieves the #AnjutaProfileManager object associated with the shell.
746 * Return value: The #AnjutaProfileManager object.
748 AnjutaProfileManager
*
749 anjuta_shell_get_profile_manager (AnjutaShell
*shell
, GError
**error
)
751 g_return_val_if_fail (shell
!= NULL
, NULL
);
752 g_return_val_if_fail (ANJUTA_IS_SHELL (shell
), NULL
);
754 return ANJUTA_SHELL_GET_IFACE (shell
)->get_profile_manager (shell
, error
);
758 anjuta_shell_session_save (AnjutaShell
*shell
, const gchar
*session_directory
,
761 AnjutaSession
*session
;
763 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
764 g_return_if_fail (session_directory
!= NULL
);
766 session
= anjuta_session_new (session_directory
);
767 anjuta_session_clear (session
);
768 g_signal_emit_by_name (G_OBJECT (shell
), "save_session",
769 ANJUTA_SESSION_PHASE_FIRST
, session
);
770 g_signal_emit_by_name (G_OBJECT (shell
), "save_session",
771 ANJUTA_SESSION_PHASE_NORMAL
, session
);
772 g_signal_emit_by_name (G_OBJECT (shell
), "save_session",
773 ANJUTA_SESSION_PHASE_LAST
, session
);
774 anjuta_session_sync (session
);
775 g_object_unref (session
);
779 anjuta_shell_session_load (AnjutaShell
*shell
, const gchar
*session_directory
,
782 AnjutaSession
*session
;
784 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
785 g_return_if_fail (session_directory
!= NULL
);
787 /* Do not allow multiple session loadings at once. Could be a trouble */
788 if (g_object_get_data (G_OBJECT (shell
), "__session_loading"))
790 /* DEBUG_PRINT ("A session load is requested in the middle of another!!"); */
793 g_object_set_data (G_OBJECT (shell
), "__session_loading", "1");
795 session
= anjuta_session_new (session_directory
);
796 g_signal_emit_by_name (G_OBJECT (shell
), "load_session",
797 ANJUTA_SESSION_PHASE_FIRST
, session
);
798 g_signal_emit_by_name (G_OBJECT (shell
), "load_session",
799 ANJUTA_SESSION_PHASE_NORMAL
, session
);
800 g_signal_emit_by_name (G_OBJECT (shell
), "load_session",
801 ANJUTA_SESSION_PHASE_LAST
, session
);
802 g_object_unref (session
);
804 g_object_set_data (G_OBJECT (shell
), "__session_loading", NULL
);
808 anjuta_shell_save_prompt (AnjutaShell
*shell
,
809 AnjutaSavePrompt
*save_prompt
,
812 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
813 g_return_if_fail (ANJUTA_IS_SAVE_PROMPT (save_prompt
));
814 g_signal_emit_by_name (shell
, "save-prompt", save_prompt
);
818 anjuta_shell_notify_exit (AnjutaShell
*shell
,
821 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
822 g_signal_emit_by_name (shell
, "exiting");
826 anjuta_shell_base_init (gpointer gclass
)
828 static gboolean initialized
= FALSE
;
831 g_signal_new ("value-added",
834 G_STRUCT_OFFSET (AnjutaShellIface
, value_added
),
836 anjuta_cclosure_marshal_VOID__STRING_BOXED
,
838 G_TYPE_STRING
, G_TYPE_VALUE
);
840 g_signal_new ("value-removed",
843 G_STRUCT_OFFSET (AnjutaShellIface
, value_removed
),
845 anjuta_cclosure_marshal_VOID__STRING
,
848 g_signal_new ("save-session",
851 G_STRUCT_OFFSET (AnjutaShellIface
, save_session
),
853 anjuta_cclosure_marshal_VOID__INT_OBJECT
,
857 g_signal_new ("load-session",
860 G_STRUCT_OFFSET (AnjutaShellIface
, load_session
),
862 anjuta_cclosure_marshal_VOID__INT_OBJECT
,
866 g_signal_new ("save-prompt",
869 G_STRUCT_OFFSET (AnjutaShellIface
, save_prompt
),
871 anjuta_cclosure_marshal_VOID__OBJECT
,
874 g_signal_new ("exiting",
877 G_STRUCT_OFFSET (AnjutaShellIface
, exiting
),
879 anjuta_cclosure_marshal_VOID__VOID
,
886 anjuta_shell_get_type (void)
888 static GType type
= 0;
891 static const GTypeInfo info
= {
892 sizeof (AnjutaShellIface
),
893 anjuta_shell_base_init
,
903 type
= g_type_register_static (G_TYPE_INTERFACE
,
908 g_type_interface_add_prerequisite (type
, G_TYPE_OBJECT
);