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 ("%s", "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_add_widget_custom:
298 * @shell: A #AnjutaShell interface.
299 * @widget: Then widget to add
300 * @name: Name of the widget. None translated string used to identify it in
302 * @title: title of the widget (translated)
303 * @stock_id: Icon stock ID. Could be null.
304 * @label: Label widget to use
305 * @placement: Placement of the widget in shell.
306 * @error: Error propagation object.
308 * Adds @widget in the shell. The @placement tells where the widget should
309 * appear, but generally it will be overridden by the container
310 * (dock, notebook, GtkContainer etc.) saved layout.
312 * Using this method you can pass a custom widget as label.
314 void anjuta_shell_add_widget_custom (AnjutaShell
*shell
,
318 const char *stock_id
,
320 AnjutaShellPlacement placement
,
323 ANJUTA_SHELL_GET_IFACE (shell
)->add_widget_custom (shell
, widget
, name
, title
, stock_id
, label
,
328 * anjuta_shell_remove_widget:
329 * @shell: A #AnjutaShell interface
330 * @widget: The widget to remove
331 * @error: Error propagation object
333 * Removes the widget from shell. The widget should have been added before
334 * with #anjuta_shell_add_widget.
337 anjuta_shell_remove_widget (AnjutaShell
*shell
,
342 gboolean found_in_queue
;
344 g_return_if_fail (shell
!= NULL
);
345 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
346 g_return_if_fail (widget
!= NULL
);
347 g_return_if_fail (GTK_IS_WIDGET (widget
));
349 /* If there is a queue, remove widgets from it */
350 found_in_queue
= FALSE
;
351 queue
= g_object_get_data (G_OBJECT (shell
), "__widget_queue");
355 for (i
= g_queue_get_length(queue
) - 1; i
>= 0; i
--)
359 qd
= g_queue_peek_nth (queue
, i
);
360 if (qd
->widget
== widget
)
362 g_queue_remove (queue
, qd
);
363 on_widget_data_free (qd
);
364 found_in_queue
= TRUE
;
370 ANJUTA_SHELL_GET_IFACE (shell
)->remove_widget (shell
, widget
, error
);
374 * anjuta_shell_present_widget:
375 * @shell: A #AnjutaShell interface
376 * @widget: The widget to present
377 * @error: Error propagation object
379 * Make sure the widget is visible to user. If the widget is hidden, it will
380 * be shown. If it is not visible to user, it will be made visible.
383 anjuta_shell_present_widget (AnjutaShell
*shell
,
388 gboolean found_in_queue
;
390 g_return_if_fail (shell
!= NULL
);
391 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
392 g_return_if_fail (widget
!= NULL
);
393 g_return_if_fail (GTK_IS_WIDGET (widget
));
395 /* If there is a queue and the widget is in the queue, there is no
396 * way we can 'present' the widget */
397 found_in_queue
= FALSE
;
398 queue
= g_object_get_data (G_OBJECT (shell
), "__widget_queue");
402 for (i
= g_queue_get_length(queue
) - 1; i
>= 0; i
--)
406 qd
= g_queue_peek_nth (queue
, i
);
407 if (qd
->widget
== widget
)
409 found_in_queue
= TRUE
;
415 ANJUTA_SHELL_GET_IFACE (shell
)->present_widget (shell
, widget
, error
);
419 * anjuta_shell_iconify_dockable_widget:
420 * @shell: A #AnjutaShell interface.
421 * @widget: a #GtkWidget to iconify.
422 * @error: Error propagation object.
424 * If the widget is dockable, it iconifies it.
426 void anjuta_shell_iconify_dockable_widget (AnjutaShell
*shell
,
430 ANJUTA_SHELL_GET_IFACE (shell
)->iconify_dockable_widget (shell
, widget
, error
);
434 * anjuta_shell_hide_dockable_widget:
435 * @shell: A #AnjutaShell interface.
436 * @widget: a #GtkWidget to hide.
437 * @error: Error propagation object.
439 * If the widget is dockable, it hides it.
441 void anjuta_shell_hide_dockable_widget (AnjutaShell
*shell
,
445 ANJUTA_SHELL_GET_IFACE (shell
)->hide_dockable_widget (shell
, widget
, error
);
449 * anjuta_shell_show_dockable_widget:
450 * @shell: A #AnjutaShell interface.
451 * @widget: a #GtkWidget to show.
452 * @error: Error propagation object.
454 * If the widget was hidden or iconified, it will make it visible.
456 void anjuta_shell_show_dockable_widget (AnjutaShell
*shell
,
460 ANJUTA_SHELL_GET_IFACE (shell
)->show_dockable_widget (shell
, widget
, error
);
464 * anjuta_shell_maximize_widget:
465 * @shell: A #AnjutaShell interface.
466 * @widget_name: Name of the widget to be maximized.
467 * @error: Error propagation object.
469 * Maximizes a widget so it will occupy all the possible space.
471 void anjuta_shell_maximize_widget (AnjutaShell
*shell
,
472 const char *widget_name
,
475 ANJUTA_SHELL_GET_IFACE (shell
)->maximize_widget (shell
, widget_name
, error
);
479 * anjuta_shell_unmaximize:
480 * @shell: A #AnjutaShell interface.
481 * @error: Error propagation object.
483 * Unmaximizes the UI which was previously maximized by
484 * #anjuta_shell_maximize_widget
486 void anjuta_shell_unmaximize (AnjutaShell
*shell
,
489 ANJUTA_SHELL_GET_IFACE (shell
)->unmaximize (shell
, error
);
493 * anjuta_shell_create_window:
494 * @shell: A #AnjutaShell interface
495 * @error: Error propagation object.
497 * Create a new main window in the same process.
500 anjuta_shell_create_window (AnjutaShell
*shell
,
503 return ANJUTA_SHELL_GET_IFACE (shell
)->create_window (shell
, error
);
507 * anjuta_shell_add_value:
508 * @shell: A #AnjutaShell interface
509 * @name: Name of the value
510 * @value: Value to add
511 * @error: Error propagation object
513 * Sets a value in the shell with the given name. Any previous value will
514 * be overridden. "value_added" signal will be emitted. Objects connecting
515 * to this signal can then update their data according to the new value.
518 anjuta_shell_add_value (AnjutaShell
*shell
,
523 g_return_if_fail (shell
!= NULL
);
524 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
525 g_return_if_fail (name
!= NULL
);
526 g_return_if_fail (value
!= NULL
);
528 ANJUTA_SHELL_GET_IFACE (shell
)->add_value (shell
, name
, value
, error
);
532 * anjuta_shell_add_valist:
533 * @shell: A #AnjutaShell interface
534 * @first_name: First value name
535 * @first_type: First value type
536 * @var_args: First value, Second value name, Second value type ....
538 * Adds a valist of values in the shell. The valist should be in the order -
539 * value1, name2, type2, value2,... "value_added" signal will be emitted
540 * for each of the value.
543 anjuta_shell_add_valist (AnjutaShell
*shell
,
544 const char *first_name
,
551 g_return_if_fail (shell
!= NULL
);
552 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
553 g_return_if_fail (first_name
!= NULL
);
559 GValue value
= {0, };
563 g_value_init (&value
, type
);
565 G_VALUE_COLLECT (&value
, var_args
, 0, &error
);
568 g_warning ("%s: %s", G_STRLOC
, error
);
573 anjuta_shell_add_value (shell
, name
, &value
, &err
);
575 g_value_unset (&value
);
578 g_warning ("Could not set value: %s\n", err
->message
);
583 name
= va_arg (var_args
, char *);
585 type
= va_arg (var_args
, GType
);
592 * @shell: A #AnjutaShell interface
593 * @first_name: First value name
594 * @first_type: First value type
595 * @...: First value, Second value name, Second value type .... %NULL
597 * Adds a list of values in the shell. The list should be %NULL terminated
598 * and should be in the order - name1, type1, value1, name2, type2, value2,
599 * ..., %NULL. "value_added" signal will be emitted for each of the value.
602 anjuta_shell_add (AnjutaShell
*shell
,
603 const char *first_name
,
609 g_return_if_fail (shell
!= NULL
);
610 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
611 g_return_if_fail (first_name
!= NULL
);
613 va_start (var_args
, first_type
);
614 anjuta_shell_add_valist (shell
, first_name
, first_type
, var_args
);
619 * anjuta_shell_get_value:
620 * @shell: A #AnjutaShell interface
621 * @name: Name of the value to get
622 * @value: Value to get
623 * @error: Error propagation object
625 * Gets a value from the shell with the given name. The value will be set
626 * in the passed value pointer.
629 anjuta_shell_get_value (AnjutaShell
*shell
,
634 g_return_if_fail (shell
!= NULL
);
635 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
636 g_return_if_fail (name
!= NULL
);
637 g_return_if_fail (value
!= NULL
);
639 ANJUTA_SHELL_GET_IFACE (shell
)->get_value (shell
, name
, value
, error
);
643 * anjuta_shell_get_valist:
644 * @shell: A #AnjutaShell interface
645 * @first_name: First value name
646 * @first_type: First value type
647 * @var_args: First value holder, Second value name, Second value type ....
649 * Gets a valist of values from the shell. The valist should be in the order -
650 * value1, name2, type2, value2,...
653 anjuta_shell_get_valist (AnjutaShell
*shell
,
654 const char *first_name
,
661 g_return_if_fail (shell
!= NULL
);
662 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
663 g_return_if_fail (first_name
!= NULL
);
669 GValue value
= {0, };
673 g_value_init (&value
, type
);
675 anjuta_shell_get_value (shell
, name
, &value
, &err
);
678 g_warning ("Could not get value: %s", err
->message
);
683 G_VALUE_LCOPY (&value
, var_args
, 0, &error
);
686 g_warning ("%s: %s", G_STRLOC
, error
);
691 g_value_unset (&value
);
693 name
= va_arg (var_args
, char *);
695 type
= va_arg (var_args
, GType
);
702 * @shell: A #AnjutaShell interface
703 * @first_name: First value name
704 * @first_type: First value type
705 * @...: First value holder, Second value name, Second value type .... %NULL
707 * Gets a list of values in the shell. The list should be %NULL terminated
708 * and should be in the order - name1, type1, value1, name2, type2, value2,
712 anjuta_shell_get (AnjutaShell
*shell
,
713 const char *first_name
,
719 g_return_if_fail (shell
!= NULL
);
720 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
721 g_return_if_fail (first_name
!= NULL
);
723 va_start (var_args
, first_type
);
724 anjuta_shell_get_valist (shell
, first_name
, first_type
, var_args
);
729 * anjuta_shell_remove_value:
730 * @shell: A #AnjutaShell interface
731 * @name: Name of the value to remove
732 * @error: Error propagation object
734 * Removes a value from the shell with the given name. "value_removed" signal
735 * will be emitted. Objects connecting to this signal can then update their
736 * data/internal-state accordingly.
739 anjuta_shell_remove_value (AnjutaShell
*shell
,
743 g_return_if_fail (shell
!= NULL
);
744 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
745 g_return_if_fail (name
!= NULL
);
747 ANJUTA_SHELL_GET_IFACE (shell
)->remove_value (shell
, name
, error
);
751 * anjuta_shell_get_object:
752 * @shell: A #AnjutaShell interface
753 * @iface_name: The interface implemented by the object to be found
754 * @error: Error propagation.
756 * Searches the currently available plugins to find the one which
757 * implements the given interface as primary interface and returns it. If
758 * the plugin is not yet loaded, it will be loaded and activated.
759 * The returned object is garanteed to be an implementor of the
760 * interface (as exported by the plugin metafile). It only searches
761 * from the pool of plugin objects loaded in this shell and can only search
762 * by primary interface. If there are more objects implementing this primary
763 * interface, user might be prompted to select one from them (and might give
764 * the option to use it as default for future queries). A typical usage of this
768 * anjuta_plugins_get_object (shell, "IAnjutaDocumentManager", error);
770 * Notice that this function takes the interface name string as string, unlike
771 * anjuta_plugins_get_interface() which takes the type directly.
773 * Return value: (transfer none): A plugin object implementing the primary
774 * interface or %NULL.
777 anjuta_shell_get_object (AnjutaShell
*shell
, const gchar
*iface_name
,
780 g_return_val_if_fail (shell
!= NULL
, NULL
);
781 g_return_val_if_fail (iface_name
!= NULL
, NULL
);
782 g_return_val_if_fail (ANJUTA_IS_SHELL (shell
), NULL
);
784 return ANJUTA_SHELL_GET_IFACE (shell
)->get_object (shell
, iface_name
, error
);
788 * anjuta_shell_get_status:
789 * @shell: A #AnjutaShell interface
790 * @error: Error propagation object
792 * Retrieves the #AnjutaStatus object associated with the shell.
794 * Return value: (transfer none): The #AnjutaStatus object.
797 anjuta_shell_get_status (AnjutaShell
*shell
, GError
**error
)
799 g_return_val_if_fail (shell
!= NULL
, NULL
);
800 g_return_val_if_fail (ANJUTA_IS_SHELL (shell
), NULL
);
802 return ANJUTA_SHELL_GET_IFACE (shell
)->get_status (shell
, error
);
806 * anjuta_shell_get_ui:
807 * @shell: A #AnjutaShell interface
808 * @error: Error propagation object
810 * Retrieves the #AnjutaUI object associated with the shell.
812 * Return value: (transfer none): The #AnjutaUI object.
815 anjuta_shell_get_ui (AnjutaShell
*shell
, GError
**error
)
817 g_return_val_if_fail (shell
!= NULL
, NULL
);
818 g_return_val_if_fail (ANJUTA_IS_SHELL (shell
), NULL
);
820 return ANJUTA_SHELL_GET_IFACE (shell
)->get_ui (shell
, error
);
824 * anjuta_shell_get_preferences:
825 * @shell: A #AnjutaShell interface
826 * @error: Error propagation object
828 * Retrieves the #AnjutaPreferences object associated with the shell.
830 * Return value: (transfer none): The #AnjutaPreferences object.
833 anjuta_shell_get_preferences (AnjutaShell
*shell
, GError
**error
)
835 g_return_val_if_fail (shell
!= NULL
, NULL
);
836 g_return_val_if_fail (ANJUTA_IS_SHELL (shell
), NULL
);
838 return ANJUTA_SHELL_GET_IFACE (shell
)->get_preferences (shell
, error
);
842 * anjuta_shell_get_plugin_manager:
843 * @shell: A #AnjutaShell interface
844 * @error: Error propagation object
846 * Retrieves the #AnjutaPluginManager object associated with the shell.
848 * Return value: (transfer none): The #AnjutaPluginManager object.
851 anjuta_shell_get_plugin_manager (AnjutaShell
*shell
, GError
**error
)
853 g_return_val_if_fail (shell
!= NULL
, NULL
);
854 g_return_val_if_fail (ANJUTA_IS_SHELL (shell
), NULL
);
856 return ANJUTA_SHELL_GET_IFACE (shell
)->get_plugin_manager (shell
, error
);
860 * anjuta_shell_get_profile_manager:
861 * @shell: A #AnjutaShell interface
862 * @error: Error propagation object
864 * Retrieves the #AnjutaProfileManager object associated with the shell.
866 * Return value: (transfer none): The #AnjutaProfileManager object.
868 AnjutaProfileManager
*
869 anjuta_shell_get_profile_manager (AnjutaShell
*shell
, GError
**error
)
871 g_return_val_if_fail (shell
!= NULL
, NULL
);
872 g_return_val_if_fail (ANJUTA_IS_SHELL (shell
), NULL
);
874 return ANJUTA_SHELL_GET_IFACE (shell
)->get_profile_manager (shell
, error
);
878 * anjuta_shell_saving_push:
879 * @shell: A #AnjutaShell interface
881 * Increase the count of files that need to be saved
884 void anjuta_shell_saving_push (AnjutaShell
* shell
)
886 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
888 ANJUTA_SHELL_GET_IFACE (shell
)->saving_push (shell
);
892 * anjuta_shell_saving_pop:
893 * @shell: A #AnjutaShell interface
895 * Decrease the count of files that need to be saved
898 void anjuta_shell_saving_pop (AnjutaShell
* shell
)
900 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
902 ANJUTA_SHELL_GET_IFACE (shell
)->saving_pop (shell
);
906 anjuta_shell_session_save (AnjutaShell
*shell
, const gchar
*session_directory
,
909 AnjutaSession
*session
;
911 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
912 g_return_if_fail (session_directory
!= NULL
);
914 session
= anjuta_session_new (session_directory
);
915 anjuta_session_clear (session
);
916 g_signal_emit_by_name (G_OBJECT (shell
), "save_session",
917 ANJUTA_SESSION_PHASE_FIRST
, session
);
918 g_signal_emit_by_name (G_OBJECT (shell
), "save_session",
919 ANJUTA_SESSION_PHASE_NORMAL
, session
);
920 g_signal_emit_by_name (G_OBJECT (shell
), "save_session",
921 ANJUTA_SESSION_PHASE_LAST
, session
);
922 anjuta_session_sync (session
);
923 g_object_unref (session
);
927 anjuta_shell_session_load (AnjutaShell
*shell
, const gchar
*session_directory
,
930 AnjutaSession
*session
;
931 AnjutaSession
*child
;
933 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
934 g_return_if_fail (session_directory
!= NULL
);
936 /* It is possible that loading a session triggers the load on another
937 * session. It happens when restoring an user session includes a project.
938 * The project session is loaded while the user session is still loading. */
939 session
= anjuta_session_new (session_directory
);
941 child
= g_object_get_data (G_OBJECT (shell
), "__session_loading");
942 g_object_set_data (G_OBJECT (shell
), "__session_loading", session
);
945 /* There is already a session loading.
946 * Replace it with our own session. The previous session will be
947 * aborted and our session will be loaded afterward. */
948 g_object_unref (G_OBJECT (child
));
953 /* This is the top session. This code emits all signals and check after
954 * each phase that the session is still the same. If it is not the case
955 * the session is aborted and the new session is loaded. */
960 /* Abort previous session */
961 g_signal_emit_by_name (G_OBJECT (shell
), "load_session",
962 ANJUTA_SESSION_PHASE_END
, session
);
963 g_object_unref (session
);
964 /* Reread session in case PHASE_END has triggered another session */
965 session
= g_object_get_data (G_OBJECT (shell
), "__session_loading");
967 g_object_ref (session
);
969 g_signal_emit_by_name (G_OBJECT (shell
), "load_session",
970 ANJUTA_SESSION_PHASE_START
, session
);
971 child
= g_object_get_data (G_OBJECT (shell
), "__session_loading");
972 if (child
!= session
) continue;
973 g_signal_emit_by_name (G_OBJECT (shell
), "load_session",
974 ANJUTA_SESSION_PHASE_FIRST
, session
);
975 child
= g_object_get_data (G_OBJECT (shell
), "__session_loading");
976 if (child
!= session
) continue;
977 g_signal_emit_by_name (G_OBJECT (shell
), "load_session",
978 ANJUTA_SESSION_PHASE_NORMAL
, session
);
979 child
= g_object_get_data (G_OBJECT (shell
), "__session_loading");
980 if (child
!= session
) continue;
981 g_signal_emit_by_name (G_OBJECT (shell
), "load_session",
982 ANJUTA_SESSION_PHASE_LAST
, session
);
983 child
= g_object_get_data (G_OBJECT (shell
), "__session_loading");
984 if (child
!= session
) continue;
985 g_signal_emit_by_name (G_OBJECT (shell
), "load_session",
986 ANJUTA_SESSION_PHASE_END
, session
);
987 child
= g_object_get_data (G_OBJECT (shell
), "__session_loading");
988 g_object_unref (session
);
989 if (child
== session
) break;
993 g_object_set_data (G_OBJECT (shell
), "__session_loading", NULL
);
997 anjuta_shell_save_prompt (AnjutaShell
*shell
,
998 AnjutaSavePrompt
*save_prompt
,
1001 g_return_if_fail (ANJUTA_IS_SHELL (shell
));
1002 g_return_if_fail (ANJUTA_IS_SAVE_PROMPT (save_prompt
));
1003 g_signal_emit_by_name (shell
, "save-prompt", save_prompt
);
1007 anjuta_shell_base_init (gpointer gclass
)
1009 static gboolean initialized
= FALSE
;
1012 g_signal_new ("value-added",
1015 G_STRUCT_OFFSET (AnjutaShellIface
, value_added
),
1017 anjuta_cclosure_marshal_VOID__STRING_BOXED
,
1019 G_TYPE_STRING
, G_TYPE_VALUE
);
1021 g_signal_new ("value-removed",
1024 G_STRUCT_OFFSET (AnjutaShellIface
, value_removed
),
1026 anjuta_cclosure_marshal_VOID__STRING
,
1029 g_signal_new ("save-session",
1032 G_STRUCT_OFFSET (AnjutaShellIface
, save_session
),
1034 anjuta_cclosure_marshal_VOID__INT_OBJECT
,
1038 g_signal_new ("load-session",
1041 G_STRUCT_OFFSET (AnjutaShellIface
, load_session
),
1043 anjuta_cclosure_marshal_VOID__INT_OBJECT
,
1047 g_signal_new ("save-prompt",
1050 G_STRUCT_OFFSET (AnjutaShellIface
, save_prompt
),
1052 anjuta_cclosure_marshal_VOID__OBJECT
,
1060 anjuta_shell_get_type (void)
1062 static GType type
= 0;
1065 static const GTypeInfo info
= {
1066 sizeof (AnjutaShellIface
),
1067 anjuta_shell_base_init
,
1077 type
= g_type_register_static (G_TYPE_INTERFACE
,
1082 g_type_interface_add_prerequisite (type
, G_TYPE_OBJECT
);