anjuta r4230 - in trunk: . libanjuta libanjuta/interfaces manuals/reference/libanjuta



Author: sgranjoux
Date: Sat Sep  6 15:11:49 2008
New Revision: 4230
URL: http://svn.gnome.org/viewvc/anjuta?rev=4230&view=rev

Log:
	* manuals/reference/libanjuta/libanjuta-docs.sgml,
	manuals/reference/libanjuta/Makefile.am,
	manuals/reference/libanjuta/libanjuta-sections.txt,
	manuals/reference/libanjuta/libanjuta.types,
	libanjuta/interfaces/libanjuta.idl,
	libanjuta/interfaces/anjuta-idl-compiler.pl,
	libanjuta/anjuta-plugin-description.h,
	libanjuta/anjuta-command.c,
	libanjuta/anjuta-preferences.c,
	libanjuta/anjuta-preferences-dialog.c,
	libanjuta/anjuta-ui.c:
	Fix libanjuta API documentation


Modified:
   trunk/ChangeLog
   trunk/libanjuta/anjuta-command.c
   trunk/libanjuta/anjuta-plugin-description.h
   trunk/libanjuta/anjuta-preferences-dialog.c
   trunk/libanjuta/anjuta-preferences.c
   trunk/libanjuta/anjuta-ui.c
   trunk/libanjuta/interfaces/anjuta-idl-compiler.pl
   trunk/libanjuta/interfaces/libanjuta.idl
   trunk/manuals/reference/libanjuta/Makefile.am
   trunk/manuals/reference/libanjuta/libanjuta-docs.sgml
   trunk/manuals/reference/libanjuta/libanjuta-sections.txt
   trunk/manuals/reference/libanjuta/libanjuta.types

Modified: trunk/libanjuta/anjuta-command.c
==============================================================================
--- trunk/libanjuta/anjuta-command.c	(original)
+++ trunk/libanjuta/anjuta-command.c	Sat Sep  6 15:11:49 2008
@@ -239,7 +239,6 @@
 /**
  * anjuta_command_get_error_message:
  * @self: Command object.
- * @error_message: Error message.
  * 
  * Get the error message from the command, if there is one. This method is 
  * normally used from a ::command-finished handler to report errors to the user

Modified: trunk/libanjuta/anjuta-plugin-description.h
==============================================================================
--- trunk/libanjuta/anjuta-plugin-description.h	(original)
+++ trunk/libanjuta/anjuta-plugin-description.h	Sat Sep  6 15:11:49 2008
@@ -58,23 +58,23 @@
 AnjutaPluginDescription* anjuta_plugin_description_new_from_string (gchar *data,
 																	GError **error);
 
-gchar* anjuta_plugin_description_to_string (AnjutaPluginDescription *pf);
+gchar* anjuta_plugin_description_to_string (AnjutaPluginDescription *df);
 
-void anjuta_plugin_description_free (AnjutaPluginDescription *pf);
+void anjuta_plugin_description_free (AnjutaPluginDescription *df);
 
-void anjuta_plugin_description_foreach_section (AnjutaPluginDescription *pf,
+void anjuta_plugin_description_foreach_section (AnjutaPluginDescription *df,
 												AnjutaPluginDescriptionSectionFunc func,
 												gpointer user_data);
 
 void anjuta_plugin_description_foreach_key (AnjutaPluginDescription *df,
-											const gchar *section,
+											const gchar *section_name,
 											gboolean include_localized,
 											AnjutaPluginDescriptionLineFunc func,
 											gpointer user_data);
 
 /* Gets the raw text of the key, unescaped */
 gboolean anjuta_plugin_description_get_raw (AnjutaPluginDescription *df,
-										    const gchar *section,
+										    const gchar *section_name,
 											const gchar *keyname,
 											const gchar *locale,
 											gchar **val);

Modified: trunk/libanjuta/anjuta-preferences-dialog.c
==============================================================================
--- trunk/libanjuta/anjuta-preferences-dialog.c	(original)
+++ trunk/libanjuta/anjuta-preferences-dialog.c	Sat Sep  6 15:11:49 2008
@@ -285,7 +285,7 @@
 /**
  * anjuta_preferences_dialog_remove_page:
  * @dlg: A #AnjutaPreferencesDialog object.g_signal_handler
- * @name: Name of the preferences page.
+ * @title: Name of the preferences page.
  *
  * Removes a preferences page.
  */

Modified: trunk/libanjuta/anjuta-preferences.c
==============================================================================
--- trunk/libanjuta/anjuta-preferences.c	(original)
+++ trunk/libanjuta/anjuta-preferences.c	Sat Sep  6 15:11:49 2008
@@ -1809,7 +1809,7 @@
  * @pr: A #AnjutaPreferences object.
  * @dir: Directory to checkfor.
  *
- * Returns TRUE if dir exists.
+ * Return value: TRUE if dir exists.
  */
 #ifdef __GNUC__
 inline

Modified: trunk/libanjuta/anjuta-ui.c
==============================================================================
--- trunk/libanjuta/anjuta-ui.c	(original)
+++ trunk/libanjuta/anjuta-ui.c	Sat Sep  6 15:11:49 2008
@@ -664,11 +664,12 @@
  * @ui: This #AnjutaUI object
  * @action_group_name: Group name.
  * @action_name: Action name.
- * returns: A #GtkAction object
  *
  * Returns the action object with the name @action_name in @action_group_name.
  * Note that it will be only sucessully returned if the group has been added
  * using methods in #AnjutaUI.
+ *
+ * Returns: A #GtkAction object
  */
 GtkAction*
 anjuta_ui_get_action (AnjutaUI *ui, const gchar *action_group_name,
@@ -808,9 +809,10 @@
 /**
  * anjuta_ui_get_accel_group:
  * @ui: A #AnjutaUI object.
- * returns: A #GtkAccelGroup object.
  *
  * Returns the #GtkAccelGroup object associated with this UI manager.
+ *
+ * Returns: A #GtkAccelGroup object.
  */
 GtkAccelGroup*
 anjuta_ui_get_accel_group (AnjutaUI *ui)
@@ -822,12 +824,11 @@
 /**
  * anjuta_ui_get_accel_editor:
  * @ui: A #AnjutaUI object.
- * returns: A #GtkWidget object.
  *
  * Creates an accel editor widget and returns it. It should be added to
  * container and displayed to users.
  *
- * Returns a #GtkWidget containing the editor.
+ * Returns: a #GtkWidget containing the editor.
  */
 GtkWidget *
 anjuta_ui_get_accel_editor (AnjutaUI *ui)

Modified: trunk/libanjuta/interfaces/anjuta-idl-compiler.pl
==============================================================================
--- trunk/libanjuta/interfaces/anjuta-idl-compiler.pl	(original)
+++ trunk/libanjuta/interfaces/anjuta-idl-compiler.pl	Sat Sep  6 15:11:49 2008
@@ -1178,6 +1178,7 @@
 	$answer .=
 "
 };
+
 ";
 	# Enum GType prototypes.
 	if (defined ($enums_hr))

Modified: trunk/libanjuta/interfaces/libanjuta.idl
==============================================================================
--- trunk/libanjuta/interfaces/libanjuta.idl	(original)
+++ trunk/libanjuta/interfaces/libanjuta.idl	Sat Sep  6 15:11:49 2008
@@ -670,7 +670,7 @@
 	*
 	* Returns: FALSE if there is an error.
 	*/
-	gboolean override (gchar **dir, gchar ***argv, gchar ***envp); 
+	gboolean override (gchar **dirp, gchar ***argvp, gchar ***envp); 
 
 	/**
 	* ianjuta_environment_get_real_directory:
@@ -691,9 +691,12 @@
 /**
  * SECTION:ianjuta-buildable
  * @title: IAnjutaBuildable
- * @short_description: Implemented by plugins that can build
+ * @short_description: Implemented by plugins that can build. This interface
+ * will be replaced by #IAnjutaBuilder (for build functions) and 
+ * #IAnjutaEnvironment for ianjuta_buildable_set_command,
+ * ianjuta_buildable_reset_command and ianjuta_buildable_get_command.
  * @see_also: 
- * @stability: Unstable
+ * @stability: Obsolete
  * @include: libanjuta/interfaces/ianjuta-buildable.h
  * 
  */
@@ -853,7 +856,7 @@
 	* @obj: Self
 	* @err: Error propagation and reporting.
 	* 
-	* Returns all plugins supporting loader interface.
+	* Returns: all plugins supporting loader interface.
 	*/
 	List<AnjutaPlugin*> find_plugins ();
 	
@@ -981,7 +984,7 @@
 	 *
 	 * Can the editor undo the last operation?
 	 *
-	 * Returns true if editor can undo, else FALSE
+	 * Returns: TRUE if editor can undo, else FALSE
 	 */
 	gboolean can_undo();
 	
@@ -992,7 +995,7 @@
 	 *
 	 * Can the editor redo the last operation?
 	 *
-	 * Returns true if editor can redo, else FALSE
+	 * Returns: TRUE if editor can redo, else FALSE
 	 */
 	gboolean can_redo ();
 	
@@ -1470,7 +1473,7 @@
 	 *
 	 * Gets the iter positioned at the start of the editor buffer.
 	 *
-	 * Retrun value: Cell iter set to the begining of the editor.
+	 * Return value: Cell iter set to the begining of the editor.
 	 */
 	IAnjutaIterable* get_start_position ();
 	
@@ -1543,8 +1546,7 @@
 		 * @obj: Self
 		 * @err: Error propagation and reporting
 		 *
-		 * Gets start position of selection text. If there is no selection,
-		 * returns -1.
+		 * Gets start position of selection text.
 		 *
 		 * Return: Start of selection or NULL if there is no selection.
 		 */
@@ -1558,7 +1560,7 @@
 		 * Get end position of selection. If there is no selection, returns
 		 * NULL.
 		 * 
-		 * Return: End of selection or NULL if there is no selection.
+		 * Returns: End of selection or NULL if there is no selection.
 		 */
 		IAnjutaIterable* get_end ();
 
@@ -1776,6 +1778,7 @@
 		/* IAnjutaEdiotrAssist::assist_chosen:
 		 * @obj: self
 		 * @selection: The selection index
+		 * @err: Error propagation and reporting
 		 *
 		 * User's selection from the choices. It is the index of the choice
 		 * presented with ianjuta_editor_assist_suggest().
@@ -1797,7 +1800,8 @@
 		 */
 		void suggest (List<const gchar*> choices, IAnjutaIterable *position, int char_alignment);
 		
-		/** ianjuta_editor_assist_hide_suggestions
+		/**
+		 * ianjuta_editor_assist_hide_suggestions:
 		 * @obj: Self
 		 * @err: Error propagation and reporting
 		 *
@@ -1840,13 +1844,12 @@
 		 *
 		 * Usually the editor might have some suggestions to make
 		 * for a context. For example in a simple word completion context.
+		 * The list of suggestion returned is allocated dynamically. The whole
+		 * list, including the the strings should be freed when done.
 		 * If the editor has no suggestions to make, it returns NULL.
 		 * 
-		 * Returns: A list of suggestions for the given context or NULL
+		 * Returns: A list of dynamically allocated strings for the given context or NULL
 		 * if there is nothing to suggest.
-		 * 
-		 * Returns: A list of dynamically allocated strings. The whole
-		 * list, including the the strings should be freed when done.
 		 */
 		List<const gchar*> get_suggestions (const gchar *context);
 	}
@@ -1921,8 +1924,8 @@
 		/**
 		 * ianjuta_editor_language_set_language:
 		 * @obj: Self
+		 * @language: Language
 		 * @err: Error propagation and reporting
-		 * @lang: Language
 		 *
 		 * Force the editor to use a given language
 		 *
@@ -2158,7 +2161,7 @@
 	 * string is returned that is the multibyte unicode character.
 	 * NULL is returned if the cell does not have any character.
 	 * 
-	 * Retruns: a newly created string representing the cell's unicode
+	 * Returns: a newly created string representing the cell's unicode
 	 * character.
 	 */
 	gchar *get_character ();
@@ -2189,7 +2192,7 @@
 	 * involved in ianjuta_editor_cell_get_character(), this function
 	 * is mainly useful for fast iteration (such as copying data).
 	 * 
-	 * Retruns: a byte character.
+	 * Returns: a byte character.
 	 */
 	gchar get_char (gint char_index);
 	
@@ -2998,7 +3001,7 @@
 	*
 	* Returns: element URIs. Must be freed when no longer required.
 	*/
-	List<const gchar*> add_sources (List<const gchar*> source_uri_to_add, const gchar *default_location_uri);
+	List<const gchar*> add_sources (List<const gchar*> source_uris_to_add, const gchar *default_location_uri);
 	
 	/**
 	* ianjuta_project_manager_add_target:
@@ -3301,7 +3304,6 @@
 	* @file: fixme
 	* @mime_type: fixme
 	* @source_search_directories: fixme
-	* @terminal: fixme
 	* @err: Error propagation and reporting.
 	* 
 	* fixme
@@ -3615,7 +3617,6 @@
 	/**
 	* ianjuta_debugger_info_target:
 	* @obj: Self
-	* @funx: fixme
 	* @user_data: fixme
 	* @err: Error propagation and reporting.
 	* 
@@ -3706,7 +3707,7 @@
 	/**
 	* ianjuta_debugger_set_thread:
 	* @obj: Self
-	* @frame: fixme
+	* @thread: fixme
 	* @err: Error propagation and reporting.
 	* 
 	* fixme
@@ -3774,8 +3775,6 @@
 	* @err: Error propagation and reporting.
 	* 
 	* fixme
-	*
-	* Returns: fixme
 	*/
 	void enable_log (IAnjutaMessageView *log);
 
@@ -3785,8 +3784,6 @@
 	* @err: Error propagation and reporting.
 	* 
 	* fixme
-	*
-	* Returns: fixme
 	*/
 	void disable_log ();
 
@@ -3876,7 +3873,7 @@
 		* @obj: Self
 		* @address: Address of the breakpoint
 		* @callback: Callback to call when the breakpoint has been set
-		* @user_date: User data that is passed back to the callback
+		* @user_data: User data that is passed back to the callback
 		* @err: Error propagation and reporting.
 		* 
 		* Set a breakpoint at the specified address.
@@ -4595,62 +4592,100 @@
 	}
 	
 	/**
+	 * ianjuta_symbol_get_id:
+	 * @obj: Self
+	 * @err: Error propagation and reporting.
+	 *
 	 * An unique identifier for the symbol: pay attention that when engine re-parse
 	 * the files this id may change.
-	 * @return 0 on error.
+	 *
+	 * Returns: 0 on error.
 	 */
 	gint get_id ();
 	
 	/**
-	* ianjuta_symbol_get_name:
-	* The name of the symbol
-	*/
+	 * ianjuta_symbol_get_name:
+	 * @obj: Self
+	 * @err: Error propagation and reporting.
+	 *
+	 * Returns: The name of the symbol
+	 */
 	const gchar *get_name ();
 	
 	/**
 	 * ianjuta_symbol_get_file:
-	 * The file of the symbol
+	 * @obj: Self
+	 * @err: Error propagation and reporting.
+	 *
+	 * Returns: The file of the symbol
 	 */
 	GFile *get_file();
 	
 	/**
-	* ianjuta_symbol_get_line:
-	* Line of the file in which the symbol is declared.
-	*/	
+	 * ianjuta_symbol_get_line:
+	 * @obj: Self
+	 * @err: Error propagation and reporting.
+	 *
+	 * Returns: Line of the file in which the symbol is declared.a
+	 */	
 	gulong get_line ();	
 
 	/**
-	* ianjuta_symbol_is_local:
-	* Is the symbol a static (private) one?
-	*/	
+	 * ianjuta_symbol_is_local:
+	 * @obj: Self
+	 * @err: Error propagation and reporting.
+	 *
+	 * Is the symbol a static (private) one?
+	 *
+	 * Returns: TRUE if the symbol is local
+	 */	
 	gboolean is_local ();
 	
 	/**
-	* ianjuta_symbol_get_args:
-	* If symbol is a function then this will return a string with the args.
-	*/	
+	 *ianjuta_symbol_get_args:
+	 * @obj: Self
+	 * @err: Error propagation and reporting.
+	 *
+ 	 *
+	 * If symbol is a function then this will return a string with the args.
+	 *
+	 * Returns: args as string or NULL
+	 */	
 	const gchar *get_args ();
 
 	/**
 	 * ianjuta_symbol_get_sym_type:
+	 * @obj: Self
+	 * @err: Error propagation and reporting.
+	 *
 	 * You can obtain an IAnjutaSymbolType of the symbol.
 	 * To have a string representation see ianjuta_symbol_get_extra_info_string ().
 	 * You *need* a symbol with FIELD_TYPE enabled attribute. e.g. use ianjuta_symbol_manager_search
 	 * passing FIELD_TYPE as info_fields.
+	 *
+	 * Returns: a #IAnjutaSymbolType
 	 */
 	Type get_sym_type ();
 	
 	/** 
-	* ianjuta_symbol_get_extra_info_string:
- 	* @sym_info: Just one FIELD_* per time. It is NOT possible to pass something like
-	* FIELD_1 | FIELD_2 | ...
- 	*/
+	 * ianjuta_symbol_get_extra_info_string:
+	 * @obj: Self
+ 	 * @sym_info: Just one FIELD_* per time. It is NOT possible to pass something like
+	 * FIELD_1 | FIELD_2 | ...
+	 * @err: Error propagation and reporting.
+	 *
+ 	 */
 	const gchar *get_extra_info_string (Field sym_info);
 
 	/** 
-	 * Pixbuf icon representing the symbol. 
+	 * ianjuta_symbol_get_icon:
+	 * @obj: Self
+	 * @err: Error propagation and reporting.
+	 *
 	 * You *need* a symbol with FIELD_ACCESS | FIELD_KIND enabled attribute. e.g. use 
 	 * ianjuta_symbol_manager_search passing FIELD_ACCESS | FIELD_KIND as info_fields.
+	 *
+	 * Returns: a Pixbuf icon representing the symbol. 
 	 */
 	const GdkPixbuf *get_icon ();	
 }
@@ -4731,8 +4766,9 @@
     * the file. 
 	*
 	* Returns Iterator should contain just one element if the query is successful, 
-	* no element or NULL is returned if function went wrong.	
-	* 
+	* no element or NULL is returned if function went wrong.
+	*
+	* Returns: an iterator
 	*/
 	IAnjutaIterable* get_scope (const gchar* filename, gulong line, IAnjutaSymbolField info_fields);
 
@@ -4891,7 +4927,7 @@
 	 *	double colon following location) is missing in .plugin file
 	 * @IANJUTA_PLUGIN_FACTORY_MISSING_MODULE: Module file name not found,
 	 *	plugin module is probably not installed
-	 * @IANJUTA_PLUGIN_FACTORY_UNLOADABLE_MODULE: Module file cannot be
+	 * @IANJUTA_PLUGIN_FACTORY_INVALID_MODULE: Module file cannot be
 	 *	loaded, not a shared library perhaps
 	 * @IANJUTA_PLUGIN_FACTORY_MISSING_FUNCTION: Module does not contain
 	 *	registration function, library is not an anjuta plugin or

Modified: trunk/manuals/reference/libanjuta/Makefile.am
==============================================================================
--- trunk/manuals/reference/libanjuta/Makefile.am	(original)
+++ trunk/manuals/reference/libanjuta/Makefile.am	Sat Sep  6 15:11:49 2008
@@ -42,7 +42,7 @@
 
 # Header files to ignore when scanning.
 # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
-IGNORE_HFILES=egg* glue* e-*
+IGNORE_HFILES=
 
 # Images to copy into HTML directory.
 # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png

Modified: trunk/manuals/reference/libanjuta/libanjuta-docs.sgml
==============================================================================
--- trunk/manuals/reference/libanjuta/libanjuta-docs.sgml	(original)
+++ trunk/manuals/reference/libanjuta/libanjuta-docs.sgml	Sat Sep  6 15:11:49 2008
@@ -73,7 +73,10 @@
     <xi:include href="xml/anjuta-command.xml"/>
     <xi:include href="xml/anjuta-sync-command.xml"/>
     <xi:include href="xml/anjuta-async-command.xml"/>
+    <xi:include href="xml/anjuta-vcs-status-tree-view.xml"/>
     <xi:include href="xml/anjuta-message-area.xml"/>
+    <xi:include href="xml/anjuta-convert.xml"/>
+    <xi:include href="xml/anjuta-version.xml"/>
   </chapter>
   
   <chapter id="libanjuta-internal-api">
@@ -99,6 +102,7 @@
 	<xi:include href="xml/ianjuta-debug-manager.xml"/>
 	<xi:include href="xml/ianjuta-document.xml"/>
 	<xi:include href="xml/ianjuta-document-manager.xml"/>
+	<xi:include href="xml/ianjuta-editor.xml"/>
 	<xi:include href="xml/ianjuta-editor-assist.xml"/>
 	<xi:include href="xml/ianjuta-editor-cell.xml"/>
 	<xi:include href="xml/ianjuta-editor-cell-style.xml"/>
@@ -107,7 +111,6 @@
 	<xi:include href="xml/ianjuta-editor-factory.xml"/>
 	<xi:include href="xml/ianjuta-editor-folds.xml"/>
 	<xi:include href="xml/ianjuta-editor-goto.xml"/>
-	<xi:include href="xml/ianjuta-editor.xml"/>
 	<xi:include href="xml/ianjuta-editor-hover.xml"/>
 	<xi:include href="xml/ianjuta-editor-language.xml"/>
 	<xi:include href="xml/ianjuta-editor-line-mode.xml"/>
@@ -115,6 +118,7 @@
 	<xi:include href="xml/ianjuta-editor-selection.xml"/>
 	<xi:include href="xml/ianjuta-editor-view.xml"/>
 	<xi:include href="xml/ianjuta-editor-zoom.xml"/>
+	<xi:include href="xml/ianjuta-environment.xml"/>
 	<xi:include href="xml/ianjuta-file.xml"/>
 	<xi:include href="xml/ianjuta-file-loader.xml"/>
 	<xi:include href="xml/ianjuta-file-manager.xml"/>
@@ -130,10 +134,9 @@
 	<xi:include href="xml/ianjuta-markable.xml"/>
 	<xi:include href="xml/ianjuta-message-manager.xml"/>
 	<xi:include href="xml/ianjuta-message-view.xml"/>
+	<xi:include href="xml/ianjuta-plugin-factory.xml"/>
 	<xi:include href="xml/ianjuta-preferences.xml"/>
 	<xi:include href="xml/ianjuta-print.xml"/>
-	<xi:include href="xml/ianjuta-plugin-factory.xml"/>
-	<xi:include href="xml/ianjuta-plugin-loader.xml"/>
 	<xi:include href="xml/ianjuta-project-manager.xml"/>
 	<xi:include href="xml/ianjuta-stream.xml"/>
 	<xi:include href="xml/ianjuta-stream-loader.xml"/>
@@ -142,7 +145,6 @@
 	<xi:include href="xml/ianjuta-symbol-manager.xml"/>
 	<xi:include href="xml/ianjuta-terminal.xml"/>
 	<xi:include href="xml/ianjuta-todo.xml"/>
-	<xi:include href="xml/ianjuta-variable-debugger.xml"/>
 	<xi:include href="xml/ianjuta-vcs.xml"/>
 	<xi:include href="xml/ianjuta-wizard.xml"/>
     <xi:include href="xml/libanjuta-iface-marshallers.xml"/>

Modified: trunk/manuals/reference/libanjuta/libanjuta-sections.txt
==============================================================================
--- trunk/manuals/reference/libanjuta/libanjuta-sections.txt	(original)
+++ trunk/manuals/reference/libanjuta/libanjuta-sections.txt	Sat Sep  6 15:11:49 2008
@@ -40,6 +40,8 @@
 anjuta_ui_get_accel_group
 anjuta_ui_get_accel_editor
 anjuta_ui_dump_tree
+anjuta_ui_load_accels
+anjuta_ui_save_accels
 BEGIN_REGISTER_ICON
 REGISTER_ICON_FULL
 REGISTER_ICON
@@ -74,6 +76,7 @@
 anjuta_status_disable_splash
 anjuta_status_progress_add_ticks
 anjuta_status_progress_tick
+anjuta_status_progress_increment_ticks
 anjuta_status_progress_pulse
 anjuta_status_progress_reset
 <SUBSECTION Standard>
@@ -86,6 +89,42 @@
 </SECTION>
 
 <SECTION>
+<FILE>anjuta-plugin-handle</FILE>
+AnjutaPluginHandlePriv
+<TITLE>AnjutaPluginHandle</TITLE>
+AnjutaPluginHandle
+anjuta_plugin_handle_new
+anjuta_plugin_handle_get_id
+anjuta_plugin_handle_get_name
+anjuta_plugin_handle_get_about
+anjuta_plugin_handle_get_icon_path
+anjuta_plugin_handle_get_path
+anjuta_plugin_handle_get_user_activatable
+anjuta_plugin_handle_get_resident
+anjuta_plugin_handle_get_language
+anjuta_plugin_handle_get_description
+anjuta_plugin_handle_get_dependency_names
+anjuta_plugin_handle_get_dependencies
+anjuta_plugin_handle_get_dependents
+anjuta_plugin_handle_get_interfaces
+anjuta_plugin_handle_get_can_load
+anjuta_plugin_handle_get_checked
+anjuta_plugin_handle_get_resolve_pass
+anjuta_plugin_handle_set_can_load
+anjuta_plugin_handle_set_checked
+anjuta_plugin_handle_set_resolve_pass
+anjuta_plugin_handle_unresolve_dependencies
+<SUBSECTION Standard>
+ANJUTA_PLUGIN_HANDLE
+ANJUTA_IS_PLUGIN_HANDLE
+ANJUTA_TYPE_PLUGIN_HANDLE
+anjuta_plugin_handle_get_type
+ANJUTA_PLUGIN_HANDLE_CLASS
+ANJUTA_IS_PLUGIN_HANDLE_CLASS
+ANJUTA_PLUGIN_HANDLE_GET_CLASS
+</SECTION>
+
+<SECTION>
 <FILE>cell-renderer-captioned-image</FILE>
 <TITLE>AnjutaCellRendererCaptionedImage</TITLE>
 AnjutaCellRendererCaptionedImage
@@ -118,6 +157,34 @@
 </SECTION>
 
 <SECTION>
+<FILE>anjuta-plugin</FILE>
+AnjutaGluePlugin
+AnjutaPluginPrivate
+AnjutaPluginValueAdded
+AnjutaPluginValueRemoved
+<TITLE>AnjutaPlugin</TITLE>
+AnjutaPlugin
+anjuta_plugin_activate
+anjuta_plugin_deactivate
+anjuta_plugin_is_active
+anjuta_plugin_add_watch
+anjuta_plugin_remove_watch
+ANJUTA_PLUGIN_BEGIN
+ANJUTA_PLUGIN_END
+ANJUTA_PLUGIN_ADD_INTERFACE
+ANJUTA_PLUGIN_BOILERPLATE
+ANJUTA_SIMPLE_PLUGIN
+<SUBSECTION Standard>
+ANJUTA_PLUGIN
+ANJUTA_IS_PLUGIN
+ANJUTA_TYPE_PLUGIN
+anjuta_plugin_get_type
+ANJUTA_PLUGIN_CLASS
+ANJUTA_IS_PLUGIN_CLASS
+ANJUTA_PLUGIN_GET_CLASS
+</SECTION>
+
+<SECTION>
 <FILE>anjuta-preferences-dialog</FILE>
 AnjutaPreferencesDialogPrivate
 <TITLE>AnjutaPreferencesDialog</TITLE>
@@ -135,6 +202,42 @@
 </SECTION>
 
 <SECTION>
+<FILE>anjuta-plugin-manager</FILE>
+ANJUTA_PLUGIN_MANAGER_ERROR
+AnjutaPluginManagerError
+AnjutaPluginManagerPriv
+<TITLE>AnjutaPluginManager</TITLE>
+AnjutaPluginManager
+anjuta_plugin_manager_error_quark
+anjuta_plugin_manager_new
+anjuta_plugin_manager_is_active_plugin
+anjuta_plugin_manager_get_plugin
+anjuta_plugin_manager_get_plugin_by_id
+anjuta_plugin_manager_unload_plugin
+anjuta_plugin_manager_unload_plugin_by_id
+anjuta_plugin_manager_get_active_plugins
+anjuta_plugin_manager_get_active_plugin_objects
+anjuta_plugin_manager_get_plugins_page
+anjuta_plugin_manager_get_remembered_plugins_page
+anjuta_plugin_manager_query
+anjuta_plugin_manager_select
+anjuta_plugin_manager_select_and_activate
+anjuta_plugin_manager_activate_plugins
+anjuta_plugin_manager_unload_all_plugins
+anjuta_plugin_manager_get_remembered_plugins
+anjuta_plugin_manager_set_remembered_plugins
+anjuta_plugin_manager_get_interface
+<SUBSECTION Standard>
+ANJUTA_PLUGIN_MANAGER
+ANJUTA_IS_PLUGIN_MANAGER
+ANJUTA_TYPE_PLUGIN_MANAGER
+anjuta_plugin_manager_get_type
+ANJUTA_PLUGIN_MANAGER_CLASS
+ANJUTA_IS_PLUGIN_MANAGER_CLASS
+ANJUTA_PLUGIN_MANAGER_GET_CLASS
+</SECTION>
+
+<SECTION>
 <FILE>anjuta-shell</FILE>
 ANJUTA_SHELL_ERROR
 AnjutaShell
@@ -224,6 +327,49 @@
 </SECTION>
 
 <SECTION>
+<FILE>anjuta-c-module</FILE>
+AnjutaCModule
+anjuta_c_module_new
+anjuta_c_module_get_last_error
+<SUBSECTION Standard>
+ANJUTA_C_MODULE
+ANJUTA_IS_C_MODULE
+ANJUTA_TYPE_C_MODULE
+anjuta_c_module_get_type
+ANJUTA_C_MODULE_CLASS
+ANJUTA_IS_C_MODULE_CLASS
+ANJUTA_C_MODULE_GET_CLASS
+</SECTION>
+
+<SECTION>
+<FILE>anjuta-profile</FILE>
+ANJUTA_PROFILE_ERROR
+AnjutaProfileError
+AnjutaProfilePriv
+<TITLE>AnjutaProfile</TITLE>
+AnjutaProfile
+anjuta_profile_error_quark
+anjuta_profile_new
+anjuta_profile_get_name
+anjuta_profile_add_plugin
+anjuta_profile_remove_plugin
+anjuta_profile_add_plugins_from_xml
+anjuta_profile_has_plugin
+anjuta_profile_get_plugins
+anjuta_profile_to_xml
+anjuta_profile_set_sync_uri
+anjuta_profile_sync
+<SUBSECTION Standard>
+ANJUTA_PROFILE
+ANJUTA_IS_PROFILE
+ANJUTA_TYPE_PROFILE
+anjuta_profile_get_type
+ANJUTA_PROFILE_CLASS
+ANJUTA_IS_PROFILE_CLASS
+ANJUTA_PROFILE_GET_CLASS
+</SECTION>
+
+<SECTION>
 <FILE>anjuta-preferences</FILE>
 AnjutaPropertyObjectType
 AnjutaPropertyDataType
@@ -260,6 +406,7 @@
 anjuta_preferences_default_get
 anjuta_preferences_default_get_int
 anjuta_preferences_get_dialog
+anjuta_preferences_is_dialog_created
 anjuta_preferences_notify_add
 anjuta_preferences_notify_remove
 anjuta_preferences_get_prefix
@@ -297,7 +444,6 @@
 anjuta_launcher_set_check_passwd_prompt
 anjuta_launcher_set_terminal_echo
 anjuta_launcher_set_terminate_on_exit
-anjuta_launcher_disable_password_check
 <SUBSECTION Standard>
 ANJUTA_LAUNCHER
 ANJUTA_IS_LAUNCHER
@@ -308,50 +454,6 @@
 </SECTION>
 
 <SECTION>
-<FILE>anjuta-c-module</FILE>
-AnjutaCModule
-AnjutaCModuleClass
-anjuta_c_module_new
-anjuta_c_module_get_last_error
-<SUBSECTION Standard>
-ANJUTA_C_MODULE
-ANJUTA_IS_C_MODULE
-ANJUTA_TYPE_C_MODULE
-anjuta_c_module_get_type
-ANJUTA_C_MODULE_CLASS
-ANJUTA_IS_C_MODULE_CLASS
-ANJUTA_C_MODULE_GET_CLASS
-</SECTION>
-
-<SECTION>
-<FILE>anjuta-plugin</FILE>
-AnjutaGluePlugin
-AnjutaPluginPrivate
-AnjutaPluginValueAdded
-AnjutaPluginValueRemoved
-<TITLE>AnjutaPlugin</TITLE>
-AnjutaPlugin
-anjuta_plugin_activate
-anjuta_plugin_deactivate
-anjuta_plugin_is_active
-anjuta_plugin_add_watch
-anjuta_plugin_remove_watch
-ANJUTA_PLUGIN_BEGIN
-ANJUTA_PLUGIN_END
-ANJUTA_PLUGIN_ADD_INTERFACE
-ANJUTA_PLUGIN_BOILERPLATE
-ANJUTA_SIMPLE_PLUGIN
-<SUBSECTION Standard>
-ANJUTA_PLUGIN
-ANJUTA_IS_PLUGIN
-ANJUTA_TYPE_PLUGIN
-anjuta_plugin_get_type
-ANJUTA_PLUGIN_CLASS
-ANJUTA_IS_PLUGIN_CLASS
-ANJUTA_PLUGIN_GET_CLASS
-</SECTION>
-
-<SECTION>
 <FILE>anjuta-command</FILE>
 AnjutaCommandPriv
 <TITLE>AnjutaCommand</TITLE>
@@ -359,6 +461,7 @@
 anjuta_command_start
 anjuta_command_notify_data_arrived
 anjuta_command_notify_complete
+anjuta_command_notify_progress
 anjuta_command_set_error_message
 anjuta_command_get_error_message
 <SUBSECTION Standard>
@@ -372,105 +475,6 @@
 </SECTION>
 
 <SECTION>
-<FILE>anjuta-plugin-handle</FILE>
-AnjutaPluginHandlePriv
-<TITLE>AnjutaPluginHandle</TITLE>
-AnjutaPluginHandle
-anjuta_plugin_handle_new
-anjuta_plugin_handle_get_id
-anjuta_plugin_handle_get_name
-anjuta_plugin_handle_get_about
-anjuta_plugin_handle_get_icon_path
-anjuta_plugin_handle_get_path
-anjuta_plugin_handle_get_user_activatable
-anjuta_plugin_handle_get_resident
-anjuta_plugin_handle_get_language
-anjuta_plugin_handle_get_description
-anjuta_plugin_handle_get_dependency_names
-anjuta_plugin_handle_get_dependencies
-anjuta_plugin_handle_get_dependents
-anjuta_plugin_handle_get_interfaces
-anjuta_plugin_handle_get_can_load
-anjuta_plugin_handle_get_checked
-anjuta_plugin_handle_get_resolve_pass
-anjuta_plugin_handle_set_can_load
-anjuta_plugin_handle_set_checked
-anjuta_plugin_handle_set_resolve_pass
-anjuta_plugin_handle_unresolve_dependencies
-<SUBSECTION Standard>
-ANJUTA_PLUGIN_HANDLE
-ANJUTA_IS_PLUGIN_HANDLE
-ANJUTA_TYPE_PLUGIN_HANDLE
-anjuta_plugin_handle_get_type
-ANJUTA_PLUGIN_HANDLE_CLASS
-ANJUTA_IS_PLUGIN_HANDLE_CLASS
-ANJUTA_PLUGIN_HANDLE_GET_CLASS
-</SECTION>
-
-<SECTION>
-<FILE>anjuta-plugin-manager</FILE>
-ANJUTA_PLUGIN_MANAGER_ERROR
-AnjutaPluginManagerError
-AnjutaPluginManagerPriv
-<TITLE>AnjutaPluginManager</TITLE>
-AnjutaPluginManager
-anjuta_plugin_manager_error_quark
-anjuta_plugin_manager_new
-anjuta_plugin_manager_get_plugin
-anjuta_plugin_manager_get_plugin_by_id
-anjuta_plugin_manager_unload_plugin
-anjuta_plugin_manager_unload_plugin_by_id
-anjuta_plugin_manager_get_active_plugins
-anjuta_plugin_manager_get_active_plugin_objects
-anjuta_plugin_manager_get_plugins_page
-anjuta_plugin_manager_get_remembered_plugins_page
-anjuta_plugin_manager_query
-anjuta_plugin_manager_select
-anjuta_plugin_manager_select_and_activate
-anjuta_plugin_manager_activate_plugins
-anjuta_plugin_manager_unload_all_plugins
-anjuta_plugin_manager_get_remembered_plugins
-anjuta_plugin_manager_set_remembered_plugins
-anjuta_plugin_manager_get_interface
-<SUBSECTION Standard>
-ANJUTA_PLUGIN_MANAGER
-ANJUTA_IS_PLUGIN_MANAGER
-ANJUTA_TYPE_PLUGIN_MANAGER
-anjuta_plugin_manager_get_type
-ANJUTA_PLUGIN_MANAGER_CLASS
-ANJUTA_IS_PLUGIN_MANAGER_CLASS
-ANJUTA_PLUGIN_MANAGER_GET_CLASS
-</SECTION>
-
-<SECTION>
-<FILE>anjuta-profile</FILE>
-ANJUTA_PROFILE_ERROR
-AnjutaProfileError
-AnjutaProfilePriv
-<TITLE>AnjutaProfile</TITLE>
-AnjutaProfile
-anjuta_profile_error_quark
-anjuta_profile_new
-anjuta_profile_get_name
-anjuta_profile_add_plugin
-anjuta_profile_remove_plugin
-anjuta_profile_add_plugins_from_xml
-anjuta_profile_has_plugin
-anjuta_profile_get_plugins
-anjuta_profile_to_xml
-anjuta_profile_set_sync_uri
-anjuta_profile_sync
-<SUBSECTION Standard>
-ANJUTA_PROFILE
-ANJUTA_IS_PROFILE
-ANJUTA_TYPE_PROFILE
-anjuta_profile_get_type
-ANJUTA_PROFILE_CLASS
-ANJUTA_IS_PROFILE_CLASS
-ANJUTA_PROFILE_GET_CLASS
-</SECTION>
-
-<SECTION>
 <FILE>anjuta-profile-manager</FILE>
 AnjutaProfileManagerPriv
 <TITLE>AnjutaProfileManager</TITLE>
@@ -492,77 +496,18 @@
 </SECTION>
 
 <SECTION>
-<FILE>anjuta-glue-code</FILE>
-<TITLE>AnjutaGlueCPlugin</TITLE>
-AnjutaGlueCPlugin
-anjuta_glue_c_plugin_new
-<SUBSECTION Standard>
-ANJUTA_GLUE_C_PLUGIN
-ANJUTA_GLUE_IS_C_PLUGIN
-ANJUTA_GLUE_TYPE_C_PLUGIN
-anjuta_glue_c_plugin_get_type
-ANJUTA_GLUE_C_PLUGIN_CLASS
-ANJUTA_GLUE_IS_C_PLUGIN_CLASS
-ANJUTA_GLUE_C_PLUGIN_GET_CLASS
-</SECTION>
-
-<SECTION>
-<FILE>anjuta-glue-plugin.old</FILE>
-ANJUTA_GLUE_PLUGIN
-AnjutaGluePluginComponent
-AnjutaGluePluginComponentGetTypeFunc
-<TITLE>AnjutaGluePlugin</TITLE>
-AnjutaGluePlugin
-anjuta_glue_plugin_new
-ANJUTA_GLUE_PLUGIN_MODULE
-ANJUTA_GLUE_REGISTER_COMPONENTS
-ANJUTA_GLUE_GET_COMPONENT_TYPE
-<SUBSECTION Standard>
-ANJUTA_TYPE_GLUE_PLUGIN
-ANJUTA_GLUE_IS_PLUGIN
-anjuta_glue_plugin_get_type
-ANJUTA_GLUE_PLUGIN_CLASS
-ANJUTA_GLUE_IS_PLUGIN_CLASS
-ANJUTA_GLUE_PLUGIN_GET_CLASS
-</SECTION>
-
-<SECTION>
-<FILE>anjuta-glue-plugin.old1</FILE>
-AnjutaGluePluginComponent
-AnjutaGluePluginComponentGetTypeFunc
-AnjutaGluePluginGetTypeFunc
-<TITLE>AnjutaGluePlugin</TITLE>
-AnjutaGluePlugin
-anjuta_glue_plugin_new
-anjuta_glue_plugin_set_module_path
-anjuta_glue_plugin_get_component_type
-anjuta_glue_plugin_get_name
-ANJUTA_GLUE_PLUGIN_MODULE
-ANJUTA_GLUE_REGISTER_COMPONENTS
-ANJUTA_GLUE_GET_COMPONENT_TYPE
-<SUBSECTION Standard>
-ANJUTA_GLUE_PLUGIN
-ANJUTA_GLUE_IS_PLUGIN
-ANJUTA_GLUE_TYPE_PLUGIN
-anjuta_glue_plugin_get_type
-ANJUTA_GLUE_PLUGIN_CLASS
-ANJUTA_GLUE_IS_PLUGIN_CLASS
-ANJUTA_GLUE_PLUGIN_GET_CLASS
-</SECTION>
-
-<SECTION>
-<FILE>anjuta-glue-c.old</FILE>
-<TITLE>AnjutaGlueCPlugin</TITLE>
-AnjutaGlueCPlugin
-anjuta_glue_c_plugin_new
-<SUBSECTION Standard>
-ANJUTA_GLUE_C_PLUGIN
-ANJUTA_GLUE_IS_C_PLUGIN
-ANJUTA_GLUE_TYPE_C_PLUGIN
-anjuta_glue_c_plugin_get_type
-ANJUTA_GLUE_C_PLUGIN_CLASS
-ANJUTA_GLUE_IS_C_PLUGIN_CLASS
-ANJUTA_GLUE_C_PLUGIN_GET_CLASS
+<FILE>anjuta-c-plugin-factory</FILE>
+AnjutaCPluginFactory
+anjuta_c_plugin_factory_new
+anjuta_c_plugin_factory_free
+<SUBSECTION Standard>
+ANJUTA_C_PLUGIN_FACTORY
+ANJUTA_IS_C_PLUGIN_FACTORY
+ANJUTA_TYPE_C_PLUGIN_FACTORY
+anjuta_c_plugin_factory_get_type
+ANJUTA_C_PLUGIN_FACTORY_CLASS
+ANJUTA_IS_C_PLUGIN_FACTORY_CLASS
+ANJUTA_C_PLUGIN_FACTORY_GET_CLASS
 </SECTION>
 
 <SECTION>
@@ -589,22 +534,6 @@
 </SECTION>
 
 <SECTION>
-<FILE>anjuta-c-plugin-factory</FILE>
-AnjutaCPluginFactory
-AnjutaCPluginFactoryClass
-anjuta_c_plugin_factory_new
-anjuta_c_plugin_factory_free
-<SUBSECTION Standard>
-ANJUTA_C_PLUGIN_FACTORY
-ANJUTA_IS_C_PLUGIN_FACTORY
-ANJUTA_TYPE_C_PLUGIN_FACTORY
-anjuta_c_plugin_factory_get_type
-ANJUTA_C_PLUGIN_FACTORY_CLASS
-ANJUTA_IS_C_PLUGIN_FACTORY_CLASS
-ANJUTA_C_PLUGIN_FACTORY_GET_CLASS
-</SECTION>
-
-<SECTION>
 <FILE>anjuta-message-area</FILE>
 AnjutaMessageAreaPrivate
 <TITLE>AnjutaMessageArea</TITLE>
@@ -643,11 +572,11 @@
 <FILE>ianjuta-editor</FILE>
 IANJUTA_TYPE_EDITOR_ATTRIBUTE
 IANJUTA_TYPE_EDITOR_ERROR
-IAnjutaEditorAttribute
-IAnjutaEditorError
 IANJUTA_EDITOR_ERROR
 IAnjutaEditor
 IAnjutaEditorIface
+IAnjutaEditorAttribute
+IAnjutaEditorError
 ianjuta_editor_error_get_type
 ianjuta_editor_error_quark
 ianjuta_editor_get_type
@@ -711,10 +640,10 @@
 <SECTION>
 <FILE>ianjuta-buildable</FILE>
 IANJUTA_TYPE_BUILDABLE_COMMAND
-IAnjutaBuildableCommand
 IANJUTA_BUILDABLE_ERROR
 IAnjutaBuildable
 IAnjutaBuildableIface
+IAnjutaBuildableCommand
 ianjuta_buildable_error_quark
 ianjuta_buildable_get_type
 ianjuta_buildable_build
@@ -737,12 +666,13 @@
 <SECTION>
 <FILE>ianjuta-builder</FILE>
 IANJUTA_TYPE_BUILDER_ERROR
-IAnjutaBuilderError
 IANJUTA_BUILDER_ERROR
-IAnjutaBuilderHandle
-IAnjutaBuilderCallback
+IANJUTA_BUILDER_ROOT_URI
 IAnjutaBuilder
 IAnjutaBuilderIface
+IAnjutaBuilderError
+IAnjutaBuilderHandle
+IAnjutaBuilderCallback
 ianjuta_builder_error_quark
 ianjuta_builder_get_type
 ianjuta_builder_build
@@ -776,19 +706,19 @@
 IANJUTA_TYPE_DEBUGGER_ERROR
 IANJUTA_TYPE_DEBUGGER_OUTPUT_TYPE
 IANJUTA_TYPE_DEBUGGER_STATE
+IANJUTA_DEBUGGER_ERROR
+IAnjutaDebugger
+IAnjutaDebuggerIface
 IAnjutaDebuggerData
 IAnjutaDebuggerError
 IAnjutaDebuggerOutputType
 IAnjutaDebuggerState
 IAnjutaDebuggerFrame
-IANJUTA_DEBUGGER_ERROR
 IAnjutaDebuggerCallback
 IAnjutaDebuggerGListCallback
 IAnjutaDebuggerGCharCallback
 IAnjutaDebuggerOutputCallback
 IAnjutaDebuggerMemoryCallback
-IAnjutaDebugger
-IAnjutaDebuggerIface
 ianjuta_debugger_error_get_type
 ianjuta_debugger_output_type_get_type
 ianjuta_debugger_state_get_type
@@ -825,8 +755,10 @@
 ianjuta_debugger_run
 ianjuta_debugger_run_to
 ianjuta_debugger_send_command
+ianjuta_debugger_set_environment
 ianjuta_debugger_set_frame
 ianjuta_debugger_set_thread
+ianjuta_debugger_set_working_directory
 ianjuta_debugger_start
 ianjuta_debugger_step_in
 ianjuta_debugger_step_out
@@ -841,24 +773,157 @@
 </SECTION>
 
 <SECTION>
+<FILE>ianjuta-debugger-breakpoint</FILE>
+IANJUTA_TYPE_DEBUGGER_BREAKPOINT_METHOD
+IANJUTA_TYPE_DEBUGGER_BREAKPOINT_TYPE
+IANJUTA_DEBUGGER_BREAKPOINT_ERROR
+IAnjutaDebuggerBreakpoint
+IAnjutaDebuggerBreakpointIface
+IAnjutaDebuggerBreakpointMethod
+IAnjutaDebuggerBreakpointType
+IAnjutaDebuggerBreakpointItem
+ianjuta_debugger_breakpoint_type_get_type
+ianjuta_debugger_breakpoint_error_quark
+ianjuta_debugger_breakpoint_get_type
+ianjuta_debugger_breakpoint_clear_breakpoint
+ianjuta_debugger_breakpoint_condition_breakpoint
+ianjuta_debugger_breakpoint_enable_breakpoint
+ianjuta_debugger_breakpoint_ignore_breakpoint
+ianjuta_debugger_breakpoint_implement_breakpoint
+ianjuta_debugger_breakpoint_list_breakpoint
+ianjuta_debugger_breakpoint_set_breakpoint_at_address
+ianjuta_debugger_breakpoint_set_breakpoint_at_function
+ianjuta_debugger_breakpoint_set_breakpoint_at_line
+<SUBSECTION Standard>
+IANJUTA_DEBUGGER_BREAKPOINT
+IANJUTA_IS_DEBUGGER_BREAKPOINT
+IANJUTA_TYPE_DEBUGGER_BREAKPOINT
+ianjuta_debugger_breakpoint_method_get_type
+IANJUTA_DEBUGGER_BREAKPOINT_GET_IFACE
+</SECTION>
+
+<SECTION>
+<FILE>ianjuta-debugger-instruction</FILE>
+IANJUTA_DEBUGGER_INSTRUCTION_ERROR
+IAnjutaDebuggerInstruction
+IAnjutaDebuggerInstructionIface
+IAnjutaDebuggerInstructionALine
+IAnjutaDebuggerInstructionDisassembly
+ianjuta_debugger_instruction_error_quark
+ianjuta_debugger_instruction_disassemble
+ianjuta_debugger_instruction_run_to_address
+ianjuta_debugger_instruction_step_in_instruction
+ianjuta_debugger_instruction_step_over_instruction
+<SUBSECTION Standard>
+IANJUTA_DEBUGGER_INSTRUCTION
+IANJUTA_IS_DEBUGGER_INSTRUCTION
+IANJUTA_TYPE_DEBUGGER_INSTRUCTION
+ianjuta_debugger_instruction_get_type
+IANJUTA_DEBUGGER_INSTRUCTION_GET_IFACE
+</SECTION>
+
+<SECTION>
+<FILE>ianjuta-debugger-memory</FILE>
+IANJUTA_DEBUGGER_MEMORY_ERROR
+IAnjutaDebuggerMemory
+IAnjutaDebuggerMemoryIface
+IAnjutaDebuggerMemoryBlock
+ianjuta_debugger_memory_error_quark
+ianjuta_debugger_memory_inspect
+<SUBSECTION Standard>
+IANJUTA_DEBUGGER_MEMORY
+IANJUTA_IS_DEBUGGER_MEMORY
+IANJUTA_TYPE_DEBUGGER_MEMORY
+ianjuta_debugger_memory_get_type
+IANJUTA_DEBUGGER_MEMORY_GET_IFACE
+</SECTION>
+
+<SECTION>
+<FILE>ianjuta-debugger-register</FILE>
+IANJUTA_DEBUGGER_REGISTER_ERROR
+IAnjutaDebuggerRegister
+IAnjutaDebuggerRegisterIface
+IAnjutaDebuggerRegisterData
+ianjuta_debugger_register_error_quark
+ianjuta_debugger_register_list_register
+ianjuta_debugger_register_update_register
+ianjuta_debugger_register_write_register
+<SUBSECTION Standard>
+IANJUTA_DEBUGGER_REGISTER
+IANJUTA_IS_DEBUGGER_REGISTER
+IANJUTA_TYPE_DEBUGGER_REGISTER
+ianjuta_debugger_register_get_type
+IANJUTA_DEBUGGER_REGISTER_GET_IFACE
+</SECTION>
+
+<SECTION>
+<FILE>ianjuta-debugger-variable</FILE>
+IANJUTA_DEBUGGER_VARIABLE_ERROR
+IAnjutaDebuggerVariable
+IAnjutaDebuggerVariableIface
+IAnjutaDebuggerVariableObject
+ianjuta_debugger_variable_error_quark
+ianjuta_debugger_variable_assign
+ianjuta_debugger_variable_create
+ianjuta_debugger_variable_destroy
+ianjuta_debugger_variable_evaluate
+ianjuta_debugger_variable_list_children
+ianjuta_debugger_variable_update
+<SUBSECTION Standard>
+IANJUTA_DEBUGGER_VARIABLE
+IANJUTA_IS_DEBUGGER_VARIABLE
+IANJUTA_TYPE_DEBUGGER_VARIABLE
+ianjuta_debugger_variable_get_type
+IANJUTA_DEBUGGER_VARIABLE_GET_IFACE
+</SECTION>
+
+<SECTION>
+<FILE>ianjuta-document</FILE>
+IANJUTA_DOCUMENT_ERROR
+IAnjutaDocument
+IAnjutaDocumentIface
+ianjuta_document_error_quark
+ianjuta_document_begin_undo_action
+ianjuta_document_can_redo
+ianjuta_document_can_undo
+ianjuta_document_clear
+ianjuta_document_copy
+ianjuta_document_cut
+ianjuta_document_end_undo_action
+ianjuta_document_get_filename
+ianjuta_document_grab_focus
+ianjuta_document_paste
+ianjuta_document_redo
+ianjuta_document_undo
+<SUBSECTION Standard>
+IANJUTA_DOCUMENT
+IANJUTA_IS_DOCUMENT
+IANJUTA_TYPE_DOCUMENT
+ianjuta_document_get_type
+IANJUTA_DOCUMENT_GET_IFACE
+</SECTION>
+
+<SECTION>
 <FILE>ianjuta-document-manager</FILE>
 IANJUTA_TYPE_DOCUMENT_MANAGER_ERROR
-IAnjutaDocumentManagerError
 IANJUTA_DOCUMENT_MANAGER_ERROR
+IANJUTA_DOCUMENT_MANAGER_CURRENT_DOCUMENT
 IAnjutaDocumentManager
 IAnjutaDocumentManagerIface
+IAnjutaDocumentManagerError
 ianjuta_document_manager_error_quark
 ianjuta_document_manager_get_type
 ianjuta_document_manager_add_buffer
 ianjuta_document_manager_add_document
-ianjuta_document_manager_find_document_with_path
+ianjuta_document_manager_find_document_with_file
 ianjuta_document_manager_get_current_document
 ianjuta_document_manager_get_doc_widgets
-ianjuta_document_manager_get_full_filename
+ianjuta_document_manager_get_file
 ianjuta_document_manager_goto_file_line
 ianjuta_document_manager_goto_file_line_mark
 ianjuta_document_manager_remove_document
 ianjuta_document_manager_set_current_document
+ianjuta_document_manager_set_message_area
 <SUBSECTION Standard>
 IANJUTA_DOCUMENT_MANAGER
 IANJUTA_IS_DOCUMENT_MANAGER
@@ -1039,10 +1104,10 @@
 <SECTION>
 <FILE>ianjuta-editor-line-mode</FILE>
 IANJUTA_TYPE_EDITOR_LINE_MODE_TYPE
-IAnjutaEditorLineModeType
 IANJUTA_EDITOR_LINE_MODE_ERROR
 IAnjutaEditorLineMode
 IAnjutaEditorLineModeIface
+IAnjutaEditorLineModeType
 ianjuta_editor_line_mode_error_quark
 ianjuta_editor_line_mode_get_type
 ianjuta_editor_line_mode_convert
@@ -1058,6 +1123,22 @@
 </SECTION>
 
 <SECTION>
+<FILE>ianjuta-editor-search</FILE>
+IANJUTA_EDITOR_SEARCH_ERROR
+IAnjutaEditorSearch
+IAnjutaEditorSearchIface
+ianjuta_editor_search_error_quark
+ianjuta_editor_search_backward
+ianjuta_editor_search_forward
+<SUBSECTION Standard>
+IANJUTA_EDITOR_SEARCH
+IANJUTA_IS_EDITOR_SEARCH
+IANJUTA_TYPE_EDITOR_SEARCH
+ianjuta_editor_search_get_type
+IANJUTA_EDITOR_SEARCH_GET_IFACE
+</SECTION>
+
+<SECTION>
 <FILE>ianjuta-editor-selection</FILE>
 IANJUTA_EDITOR_SELECTION_ERROR
 IAnjutaEditorSelection
@@ -1115,12 +1196,28 @@
 </SECTION>
 
 <SECTION>
+<FILE>ianjuta-environment</FILE>
+IANJUTA_ENVIRONMENT_ERROR
+IAnjutaEnvironment
+IAnjutaEnvironmentIface
+ianjuta_environment_error_quark
+ianjuta_environment_get_real_directory
+ianjuta_environment_override
+<SUBSECTION Standard>
+IANJUTA_ENVIRONMENT
+IANJUTA_IS_ENVIRONMENT
+IANJUTA_TYPE_ENVIRONMENT
+ianjuta_environment_get_type
+IANJUTA_ENVIRONMENT_GET_IFACE
+</SECTION>
+
+<SECTION>
 <FILE>ianjuta-file</FILE>
 IANJUTA_FILE_ERROR
 IAnjutaFile
 IAnjutaFileIface
 ianjuta_file_error_quark
-ianjuta_file_get_uri
+ianjuta_file_get_file
 ianjuta_file_open
 <SUBSECTION Standard>
 IANJUTA_FILE
@@ -1149,6 +1246,7 @@
 <SECTION>
 <FILE>ianjuta-file-manager</FILE>
 IANJUTA_FILE_MANAGER_ERROR
+IANJUTA_FILE_MANAGER_SELECTED_FILE
 IAnjutaFileManager
 IAnjutaFileManagerIface
 ianjuta_file_manager_error_quark
@@ -1170,6 +1268,7 @@
 IAnjutaFileSavableIface
 ianjuta_file_savable_error_quark
 ianjuta_file_savable_is_dirty
+ianjuta_file_savable_is_read_only
 ianjuta_file_savable_save
 ianjuta_file_savable_save_as
 ianjuta_file_savable_set_dirty
@@ -1199,10 +1298,10 @@
 <SECTION>
 <FILE>ianjuta-indicable</FILE>
 IANJUTA_TYPE_INDICABLE_INDICATOR
-IAnjutaIndicableIndicator
 IANJUTA_INDICABLE_ERROR
 IAnjutaIndicable
 IAnjutaIndicableIface
+IAnjutaIndicableIndicator
 ianjuta_indicable_error_quark
 ianjuta_indicable_get_type
 ianjuta_indicable_clear
@@ -1222,8 +1321,8 @@
 IAnjutaIterableIface
 ianjuta_iterable_error_quark
 ianjuta_iterable_assign
-ianjuta_iterable_compare
 ianjuta_iterable_clone
+ianjuta_iterable_compare
 ianjuta_iterable_diff
 ianjuta_iterable_first
 ianjuta_iterable_foreach
@@ -1253,11 +1352,32 @@
 ianjuta_iterable_tree_has_children
 ianjuta_iterable_tree_parent
 <SUBSECTION Standard>
-IANJUTA_ITERABLE_TREE
-IANJUTA_IS_ITERABLE_TREE
-IANJUTA_TYPE_ITERABLE_TREE
-ianjuta_iterable_tree_get_type
-IANJUTA_ITERABLE_TREE_GET_IFACE
+IANJUTA_ITERABLE_TREE
+IANJUTA_IS_ITERABLE_TREE
+IANJUTA_TYPE_ITERABLE_TREE
+ianjuta_iterable_tree_get_type
+IANJUTA_ITERABLE_TREE_GET_IFACE
+</SECTION>
+
+<SECTION>
+<FILE>ianjuta-language</FILE>
+IANJUTA_LANGUAGE_ERROR
+IAnjutaLanguage
+IAnjutaLanguageIface
+IAnjutaLanguageId
+ianjuta_language_error_quark
+ianjuta_language_get_from_editor
+ianjuta_language_get_from_mime_type
+ianjuta_language_get_from_string
+ianjuta_language_get_name
+ianjuta_language_get_name_from_editor
+ianjuta_language_get_strings
+<SUBSECTION Standard>
+IANJUTA_LANGUAGE
+IANJUTA_IS_LANGUAGE
+IANJUTA_TYPE_LANGUAGE
+ianjuta_language_get_type
+IANJUTA_LANGUAGE_GET_IFACE
 </SECTION>
 
 <SECTION>
@@ -1310,11 +1430,11 @@
 <FILE>ianjuta-markable</FILE>
 IANJUTA_TYPE_MARKABLE_ERROR
 IANJUTA_TYPE_MARKABLE_MARKER
-IAnjutaMarkableError
-IAnjutaMarkableMarker
 IANJUTA_MARKABLE_ERROR
 IAnjutaMarkable
 IAnjutaMarkableIface
+IAnjutaMarkableError
+IAnjutaMarkableMarker
 ianjuta_markable_marker_get_type
 ianjuta_markable_error_quark
 ianjuta_markable_get_type
@@ -1334,10 +1454,10 @@
 <SECTION>
 <FILE>ianjuta-message-manager</FILE>
 IANJUTA_TYPE_MESSAGE_MANAGER_ERROR
-IAnjutaMessageManagerError
 IANJUTA_MESSAGE_MANAGER_ERROR
 IAnjutaMessageManager
 IAnjutaMessageManagerIface
+IAnjutaMessageManagerError
 ianjuta_message_manager_error_quark
 ianjuta_message_manager_get_type
 ianjuta_message_manager_add_view
@@ -1358,10 +1478,10 @@
 <SECTION>
 <FILE>ianjuta-message-view</FILE>
 IANJUTA_TYPE_MESSAGE_VIEW_TYPE
-IAnjutaMessageViewType
 IANJUTA_MESSAGE_VIEW_ERROR
 IAnjutaMessageView
 IAnjutaMessageViewIface
+IAnjutaMessageViewType
 ianjuta_message_view_error_quark
 ianjuta_message_view_get_type
 ianjuta_message_view_append
@@ -1380,6 +1500,24 @@
 </SECTION>
 
 <SECTION>
+<FILE>ianjuta-plugin-factory</FILE>
+IANJUTA_TYPE_PLUGIN_FACTORY_ERROR
+IANJUTA_PLUGIN_FACTORY_ERROR
+IAnjutaPluginFactory
+IAnjutaPluginFactoryIface
+IAnjutaPluginFactoryError
+ianjuta_plugin_factory_error_quark
+ianjuta_plugin_factory_get_type
+ianjuta_plugin_factory_new_plugin
+<SUBSECTION Standard>
+IANJUTA_PLUGIN_FACTORY
+IANJUTA_IS_PLUGIN_FACTORY
+IANJUTA_TYPE_PLUGIN_FACTORY
+ianjuta_plugin_factory_error_get_type
+IANJUTA_PLUGIN_FACTORY_GET_IFACE
+</SECTION>
+
+<SECTION>
 <FILE>ianjuta-preferences</FILE>
 IANJUTA_PREFERENCES_ERROR
 IAnjutaPreferences
@@ -1412,21 +1550,6 @@
 </SECTION>
 
 <SECTION>
-<FILE>ianjuta-profile</FILE>
-IANJUTA_PROFILE_ERROR
-IAnjutaProfile
-IAnjutaProfileIface
-ianjuta_profile_error_quark
-ianjuta_profile_load
-<SUBSECTION Standard>
-IANJUTA_PROFILE
-IANJUTA_IS_PROFILE
-IANJUTA_TYPE_PROFILE
-ianjuta_profile_get_type
-IANJUTA_PROFILE_GET_IFACE
-</SECTION>
-
-<SECTION>
 <FILE>ianjuta-project-manager</FILE>
 IANJUTA_TYPE_PROJECT_MANAGER_CAPABILITIES
 IANJUTA_TYPE_PROJECT_MANAGER_ELEMENT_TYPE
@@ -1515,28 +1638,23 @@
 <FILE>ianjuta-symbol</FILE>
 IANJUTA_TYPE_SYMBOL_FIELD
 IANJUTA_TYPE_SYMBOL_TYPE
-IAnjutaSymbolField
-IAnjutaSymbolType
 IANJUTA_SYMBOL_ERROR
 IAnjutaSymbol
 IAnjutaSymbolIface
+IAnjutaSymbolField
+IAnjutaSymbolType
 ianjuta_symbol_type_get_type
 ianjuta_symbol_error_quark
 ianjuta_symbol_get_type
-ianjuta_symbol_access
-ianjuta_symbol_args
-ianjuta_symbol_file
-ianjuta_symbol_icon
-ianjuta_symbol_impl
-ianjuta_symbol_inheritance
+ianjuta_symbol_get_args
+ianjuta_symbol_get_extra_info_string
+ianjuta_symbol_get_file
+ianjuta_symbol_get_icon
+ianjuta_symbol_get_id
+ianjuta_symbol_get_line
+ianjuta_symbol_get_name
+ianjuta_symbol_get_sym_type
 ianjuta_symbol_is_local
-ianjuta_symbol_line
-ianjuta_symbol_name
-ianjuta_symbol_scope
-ianjuta_symbol_type
-ianjuta_symbol_type_name
-ianjuta_symbol_type_str
-ianjuta_symbol_var_type
 <SUBSECTION Standard>
 IANJUTA_SYMBOL
 IANJUTA_IS_SYMBOL
@@ -1551,8 +1669,12 @@
 IAnjutaSymbolManager
 IAnjutaSymbolManagerIface
 ianjuta_symbol_manager_error_quark
+ianjuta_symbol_manager_get_class_parents
 ianjuta_symbol_manager_get_members
-ianjuta_symbol_manager_get_parents
+ianjuta_symbol_manager_get_parent_scope
+ianjuta_symbol_manager_get_scope
+ianjuta_symbol_manager_get_symbol_by_id
+ianjuta_symbol_manager_get_symbol_more_info
 ianjuta_symbol_manager_search
 <SUBSECTION Standard>
 IANJUTA_SYMBOL_MANAGER
@@ -1626,262 +1748,6 @@
 </SECTION>
 
 <SECTION>
-<FILE>ianjuta-document</FILE>
-IANJUTA_DOCUMENT_ERROR
-IAnjutaDocument
-IAnjutaDocumentIface
-ianjuta_document_error_quark
-ianjuta_document_begin_undo_action
-ianjuta_document_can_redo
-ianjuta_document_can_undo
-ianjuta_document_clear
-ianjuta_document_copy
-ianjuta_document_cut
-ianjuta_document_end_undo_action
-ianjuta_document_get_filename
-ianjuta_document_grab_focus
-ianjuta_document_paste
-ianjuta_document_redo
-ianjuta_document_undo
-<SUBSECTION Standard>
-IANJUTA_DOCUMENT
-IANJUTA_IS_DOCUMENT
-IANJUTA_TYPE_DOCUMENT
-ianjuta_document_get_type
-IANJUTA_DOCUMENT_GET_IFACE
-</SECTION>
-
-<SECTION>
-<FILE>ianjuta-debugger-instruction</FILE>
-IAnjutaDebuggerInstructionALine
-IAnjutaDebuggerInstructionDisassembly
-IANJUTA_DEBUGGER_INSTRUCTION_ERROR
-IAnjutaDebuggerInstruction
-IAnjutaDebuggerInstructionIface
-ianjuta_debugger_instruction_error_quark
-ianjuta_debugger_instruction_disassemble
-ianjuta_debugger_instruction_run_to_address
-ianjuta_debugger_instruction_step_in
-ianjuta_debugger_instruction_step_over
-<SUBSECTION Standard>
-IANJUTA_DEBUGGER_INSTRUCTION
-IANJUTA_IS_DEBUGGER_INSTRUCTION
-IANJUTA_TYPE_DEBUGGER_INSTRUCTION
-ianjuta_debugger_instruction_get_type
-IANJUTA_DEBUGGER_INSTRUCTION_GET_IFACE
-</SECTION>
-
-<SECTION>
-<FILE>ianjuta-debugger-cpu</FILE>
-IANJUTA_DEBUGGER_CPU_ERROR
-IAnjutaDebuggerCpu
-IAnjutaDebuggerCpuIface
-ianjuta_debugger_cpu_error_quark
-ianjuta_debugger_cpu_disassemble
-ianjuta_debugger_cpu_inspect_memory
-ianjuta_debugger_cpu_list_register
-ianjuta_debugger_cpu_update_register
-ianjuta_debugger_cpu_write_register
-<SUBSECTION Standard>
-IANJUTA_DEBUGGER_CPU
-IANJUTA_IS_DEBUGGER_CPU
-IANJUTA_TYPE_DEBUGGER_CPU
-ianjuta_debugger_cpu_get_type
-IANJUTA_DEBUGGER_CPU_GET_IFACE
-</SECTION>
-
-<SECTION>
-<FILE>ianjuta-breakpoint-debugger</FILE>
-IANJUTA_BREAKPOINT_DEBUGGER_ERROR
-IAnjutaBreakpointDebugger
-IAnjutaBreakpointDebuggerIface
-ianjuta_breakpoint_debugger_error_quark
-ianjuta_breakpoint_debugger_clear_breakpoint
-ianjuta_breakpoint_debugger_condition_breakpoint
-ianjuta_breakpoint_debugger_enable_breakpoint
-ianjuta_breakpoint_debugger_ignore_breakpoint
-ianjuta_breakpoint_debugger_set_breakpoint_at_address
-ianjuta_breakpoint_debugger_set_breakpoint_at_function
-ianjuta_breakpoint_debugger_set_breakpoint_at_line
-<SUBSECTION Standard>
-IANJUTA_BREAKPOINT_DEBUGGER
-IANJUTA_IS_BREAKPOINT_DEBUGGER
-IANJUTA_TYPE_BREAKPOINT_DEBUGGER
-ianjuta_breakpoint_debugger_get_type
-IANJUTA_BREAKPOINT_DEBUGGER_GET_IFACE
-</SECTION>
-
-<SECTION>
-<FILE>ianjuta-language</FILE>
-IANJUTA_LANGUAGE_ERROR
-IAnjutaLanguageId
-IAnjutaLanguage
-IAnjutaLanguageIface
-ianjuta_language_error_quark
-ianjuta_language_get_from_editor
-ianjuta_language_get_from_mime_type
-ianjuta_language_get_from_string
-ianjuta_language_get_name
-ianjuta_language_get_name_from_editor
-ianjuta_language_get_strings
-<SUBSECTION Standard>
-IANJUTA_LANGUAGE
-IANJUTA_IS_LANGUAGE
-IANJUTA_TYPE_LANGUAGE
-ianjuta_language_get_type
-IANJUTA_LANGUAGE_GET_IFACE
-</SECTION>
-
-<SECTION>
-<FILE>ianjuta-plugin-loader</FILE>
-IANJUTA_PLUGIN_LOADER_ERROR
-IAnjutaPluginLoader
-IAnjutaPluginLoaderIface
-ianjuta_plugin_loader_error_quark
-ianjuta_plugin_loader_new_module
-<SUBSECTION Standard>
-IANJUTA_PLUGIN_LOADER
-IANJUTA_IS_PLUGIN_LOADER
-IANJUTA_TYPE_PLUGIN_LOADER
-ianjuta_plugin_loader_get_type
-IANJUTA_PLUGIN_LOADER_GET_IFACE
-</SECTION>
-
-<SECTION>
-<FILE>ianjuta-editor-search</FILE>
-IANJUTA_EDITOR_SEARCH_ERROR
-IAnjutaEditorSearch
-IAnjutaEditorSearchIface
-ianjuta_editor_search_error_quark
-ianjuta_editor_search_backward
-ianjuta_editor_search_forward
-<SUBSECTION Standard>
-IANJUTA_EDITOR_SEARCH
-IANJUTA_IS_EDITOR_SEARCH
-IANJUTA_TYPE_EDITOR_SEARCH
-ianjuta_editor_search_get_type
-IANJUTA_EDITOR_SEARCH_GET_IFACE
-</SECTION>
-
-<SECTION>
-<FILE>ianjuta-plugin-factory</FILE>
-IANJUTA_TYPE_PLUGIN_FACTORY_ERROR
-IAnjutaPluginFactoryError
-IANJUTA_PLUGIN_FACTORY_ERROR
-IAnjutaPluginFactory
-IAnjutaPluginFactoryIface
-ianjuta_plugin_factory_error_quark
-ianjuta_plugin_factory_get_type
-ianjuta_plugin_factory_new_plugin
-<SUBSECTION Standard>
-IANJUTA_PLUGIN_FACTORY
-IANJUTA_IS_PLUGIN_FACTORY
-IANJUTA_TYPE_PLUGIN_FACTORY
-ianjuta_plugin_factory_error_get_type
-IANJUTA_PLUGIN_FACTORY_GET_IFACE
-</SECTION>
-
-<SECTION>
-<FILE>ianjuta-debugger-memory</FILE>
-IAnjutaDebuggerMemoryBlock
-IANJUTA_DEBUGGER_MEMORY_ERROR
-IAnjutaDebuggerMemory
-IAnjutaDebuggerMemoryIface
-ianjuta_debugger_memory_error_quark
-ianjuta_debugger_memory_inspect
-<SUBSECTION Standard>
-IANJUTA_DEBUGGER_MEMORY
-IANJUTA_IS_DEBUGGER_MEMORY
-IANJUTA_TYPE_DEBUGGER_MEMORY
-ianjuta_debugger_memory_get_type
-IANJUTA_DEBUGGER_MEMORY_GET_IFACE
-</SECTION>
-
-<SECTION>
-<FILE>ianjuta-editor-autocomplete</FILE>
-IANJUTA_EDITOR_AUTOCOMPLETE_ERROR
-IAnjutaEditorAutocomplete
-IAnjutaEditorAutocompleteIface
-ianjuta_editor_autocomplete_error_quark
-ianjuta_editor_autocomplete_activate
-<SUBSECTION Standard>
-IANJUTA_EDITOR_AUTOCOMPLETE
-IANJUTA_IS_EDITOR_AUTOCOMPLETE
-IANJUTA_TYPE_EDITOR_AUTOCOMPLETE
-ianjuta_editor_autocomplete_get_type
-IANJUTA_EDITOR_AUTOCOMPLETE_GET_IFACE
-</SECTION>
-
-<SECTION>
-<FILE>ianjuta-debugger-variable</FILE>
-IAnjutaDebuggerVariableObject
-IANJUTA_DEBUGGER_VARIABLE_ERROR
-IAnjutaDebuggerVariable
-IAnjutaDebuggerVariableIface
-ianjuta_debugger_variable_error_quark
-ianjuta_debugger_variable_assign
-ianjuta_debugger_variable_create
-ianjuta_debugger_variable_destroy
-ianjuta_debugger_variable_evaluate
-ianjuta_debugger_variable_list_children
-ianjuta_debugger_variable_update
-<SUBSECTION Standard>
-IANJUTA_DEBUGGER_VARIABLE
-IANJUTA_IS_DEBUGGER_VARIABLE
-IANJUTA_TYPE_DEBUGGER_VARIABLE
-ianjuta_debugger_variable_get_type
-IANJUTA_DEBUGGER_VARIABLE_GET_IFACE
-</SECTION>
-
-<SECTION>
-<FILE>ianjuta-debugger-breakpoint</FILE>
-IANJUTA_TYPE_DEBUGGER_BREAKPOINT_METHOD
-IANJUTA_TYPE_DEBUGGER_BREAKPOINT_TYPE
-IAnjutaDebuggerBreakpointMethod
-IAnjutaDebuggerBreakpointType
-IAnjutaDebuggerBreakpointItem
-IANJUTA_DEBUGGER_BREAKPOINT_ERROR
-IAnjutaDebuggerBreakpoint
-IAnjutaDebuggerBreakpointIface
-ianjuta_debugger_breakpoint_type_get_type
-ianjuta_debugger_breakpoint_error_quark
-ianjuta_debugger_breakpoint_get_type
-ianjuta_debugger_breakpoint_clear
-ianjuta_debugger_breakpoint_condition
-ianjuta_debugger_breakpoint_enable
-ianjuta_debugger_breakpoint_ignore
-ianjuta_debugger_breakpoint_implement
-ianjuta_debugger_breakpoint_list
-ianjuta_debugger_breakpoint_set_at_address
-ianjuta_debugger_breakpoint_set_at_function
-ianjuta_debugger_breakpoint_set_at_line
-<SUBSECTION Standard>
-IANJUTA_DEBUGGER_BREAKPOINT
-IANJUTA_IS_DEBUGGER_BREAKPOINT
-IANJUTA_TYPE_DEBUGGER_BREAKPOINT
-ianjuta_debugger_breakpoint_method_get_type
-IANJUTA_DEBUGGER_BREAKPOINT_GET_IFACE
-</SECTION>
-
-<SECTION>
-<FILE>ianjuta-debugger-register</FILE>
-IAnjutaDebuggerRegisterData
-IANJUTA_DEBUGGER_REGISTER_ERROR
-IAnjutaDebuggerRegister
-IAnjutaDebuggerRegisterIface
-ianjuta_debugger_register_error_quark
-ianjuta_debugger_register_list
-ianjuta_debugger_register_update
-ianjuta_debugger_register_write
-<SUBSECTION Standard>
-IANJUTA_DEBUGGER_REGISTER
-IANJUTA_IS_DEBUGGER_REGISTER
-IANJUTA_TYPE_DEBUGGER_REGISTER
-ianjuta_debugger_register_get_type
-IANJUTA_DEBUGGER_REGISTER_GET_IFACE
-</SECTION>
-
-<SECTION>
 <FILE>anjuta-plugin-description</FILE>
 AnjutaPluginDescription
 AnjutaPluginDescriptionSectionFunc
@@ -1932,15 +1798,28 @@
 <SECTION>
 <FILE>anjuta-encodings</FILE>
 AnjutaEncoding
+ANJUTA_TYPE_ENCODING
+anjuta_encoding_get_type
+anjuta_encoding_copy
+anjuta_encoding_free
 anjuta_encoding_get_from_charset
 anjuta_encoding_get_from_index
 anjuta_encoding_to_string
+anjuta_encoding_get_name
 anjuta_encoding_get_charset
-anjuta_encoding_get_encodings
-anjuta_encodings_init
-SAVE_ENCODING_ORIGINAL
-SAVE_ENCODING_CURRENT_LOCALE
-SUPPORTED_ENCODINGS
+anjuta_encoding_get_utf8
+anjuta_encoding_get_current
+</SECTION>
+
+<SECTION>
+<FILE>anjuta-version</FILE>
+LIBANJUTA_MAJOR_VERSION
+LIBANJUTA_MINOR_VERSION
+LIBANJUTA_MICRO_VERSION
+LIBANJUTA_VERSION
+LIBANJUTA_VERSION_S
+LIBANJUTA_VERSION_HEX
+ANJUTA_CHECK_VERSION
 </SECTION>
 
 <SECTION>
@@ -1969,16 +1848,28 @@
 anjuta_util_glist_strings_prefix
 anjuta_util_glist_strings_sufix
 anjuta_util_glist_strings_sort
+anjuta_util_glist_strings_join
 anjuta_util_glist_from_string
 anjuta_util_glist_strings_dup
 anjuta_util_glist_path_dedup
 anjuta_util_update_string_list
 anjuta_util_create_dir
+anjuta_util_user_shell
 anjuta_util_execute_shell
 anjuta_util_escape_quotes
 anjuta_util_path_has_extension
 anjuta_util_get_real_path
+anjuta_util_uri_get_dirname
+anjuta_util_replace_home_dir_with_tilde
+anjuta_util_str_middle_truncate
 anjuta_util_get_uri_mime_type
+anjuta_util_help_display
+anjuta_util_get_user_data_file
+anjuta_util_get_user_cache_file
+anjuta_util_get_user_config_file
+anjuta_util_get_user_data_file_path
+anjuta_util_get_user_cache_file_path
+anjuta_util_get_user_config_file_path
 ANJUTA_TYPE_BEGIN
 ANJUTA_TYPE_END
 ANJUTA_TYPE_ADD_INTERFACE
@@ -2009,6 +1900,8 @@
 ANJUTA_TYPE_SHELL_ERROR
 anjuta_shell_placement_get_type
 ANJUTA_TYPE_SHELL_PLACEMENT
+anjuta_convert_error_get_type
+ANJUTA_TYPE_CONVERT_ERROR
 anjuta_plugin_description_parse_error_get_type
 ANJUTA_TYPE_PLUGIN_DESCRIPTION_PARSE_ERROR
 anjuta_plugin_manager_error_get_type
@@ -2036,16 +1929,17 @@
 </SECTION>
 
 <SECTION>
-<FILE>anjuta-boxed</FILE>
-IAnjutaDebuggerBreakpoint
-IANJUTA_TYPE_DEBUGGER_BREAKPOINT_TYPE
-ianjuta_debugger_breakpoint_type_get_type
-IANJUTA_TYPE_DEBUGGER_BREAKPOINT
-ianjuta_debugger_breakpoint_get_type
-ianjuta_debugger_breakpoint_new
-ianjuta_debugger_breakpoint_free
-ianjuta_debugger_breakpoint_copy
-ianjuta_debugger_breakpoint_is_equal
+<FILE>anjuta-utils-priv</FILE>
+forkpty
+</SECTION>
+
+<SECTION>
+<FILE>anjuta-convert</FILE>
+AnjutaConvertError
+ANJUTA_CONVERT_ERROR
+anjuta_convert_error_quark
+anjuta_convert_to_utf8
+anjuta_convert_from_utf8
 </SECTION>
 
 <SECTION>
@@ -2056,15 +1950,6 @@
 </SECTION>
 
 <SECTION>
-<FILE>anjuta-utils-priv</FILE>
-forkpty
-</SECTION>
-
-<SECTION>
-<FILE>anjuta-widgets</FILE>
-</SECTION>
-
-<SECTION>
 <FILE>anjuta-async-command</FILE>
 ANJUTA_TYPE_ASYNC_COMMAND
 ANJUTA_ASYNC_COMMAND
@@ -2083,16 +1968,21 @@
 </SECTION>
 
 <SECTION>
+<FILE>anjuta-widgets</FILE>
+</SECTION>
+
+<SECTION>
 <FILE>libanjuta-iface-marshallers</FILE>
 libanjuta_iface_cclosure_marshal_VOID__BOOLEAN
 libanjuta_iface_cclosure_marshal_VOID__BOOLEAN_INT
 libanjuta_iface_cclosure_marshal_VOID__BOXED
 libanjuta_iface_cclosure_marshal_VOID__ENUM
 libanjuta_iface_cclosure_marshal_VOID__INT
-libanjuta_iface_cclosure_marshal_VOID__INT_BOOLEAN_INT_INT_STRING
-libanjuta_iface_cclosure_marshal_VOID__INT_CHAR
+libanjuta_iface_cclosure_marshal_VOID__INT_INT
 libanjuta_iface_cclosure_marshal_VOID__INT_INT_ULONG_STRING_UINT
 libanjuta_iface_cclosure_marshal_VOID__OBJECT
+libanjuta_iface_cclosure_marshal_VOID__OBJECT_BOOLEAN_INT_INT_STRING
+libanjuta_iface_cclosure_marshal_VOID__OBJECT_CHAR
 libanjuta_iface_cclosure_marshal_VOID__POINTER
 libanjuta_iface_cclosure_marshal_VOID__STRING
 libanjuta_iface_cclosure_marshal_VOID__STRING_STRING

Modified: trunk/manuals/reference/libanjuta/libanjuta.types
==============================================================================
--- trunk/manuals/reference/libanjuta/libanjuta.types	(original)
+++ trunk/manuals/reference/libanjuta/libanjuta.types	Sat Sep  6 15:11:49 2008
@@ -1,29 +1,66 @@
 #include <libanjuta/libanjuta.h>
 #include <libanjuta/interfaces/libanjuta-interfaces.h>
 
-anjuta_shell_get_type
-anjuta_preferences_get_type
-anjuta_preferences_dialog_get_type
+anjuta_serializer_get_type
 anjuta_ui_get_type
 anjuta_status_get_type
-anjuta_launcher_get_type
-anjuta_plugin_get_type
 anjuta_plugin_handle_get_type
+anjuta_cell_renderer_captioned_image_get_type
+anjuta_plugin_get_type
+anjuta_preferences_dialog_get_type
 anjuta_plugin_manager_get_type
-anjuta_profile_get_type
-anjuta_profile_manager_get_type
+anjuta_shell_get_type
+anjuta_encoding_get_type
 anjuta_save_prompt_get_type
-anjuta_serializer_get_type
 anjuta_session_get_type
+anjuta_c_module_get_type
+anjuta_profile_get_type
+anjuta_preferences_get_type
+anjuta_launcher_get_type
+anjuta_shell_error_get_type
+anjuta_shell_placement_get_type
+anjuta_convert_error_get_type
+anjuta_plugin_description_parse_error_get_type
+anjuta_plugin_manager_error_get_type
+anjuta_profile_error_get_type
+anjuta_property_object_type_get_type
+anjuta_property_data_type_get_type
+anjuta_preferences_filter_type_get_type
+anjuta_launcher_output_type_get_type
+anjuta_session_phase_get_type
+anjuta_serializer_mode_get_type
+anjuta_vcs_status_get_type
+anjuta_command_get_type
+anjuta_profile_manager_get_type
+g_error_get_type
+anjuta_c_plugin_factory_get_type
+anjuta_vcs_status_tree_view_get_type
+anjuta_async_command_get_type
+anjuta_message_area_get_type
+anjuta_sync_command_get_type
+ianjuta_editor_attribute_get_type
+ianjuta_editor_error_get_type
+ianjuta_editor_get_type
 ianjuta_bookmark_get_type
+ianjuta_buildable_command_get_type
 ianjuta_buildable_get_type
+ianjuta_builder_error_get_type
+ianjuta_builder_get_type
+ianjuta_debug_manager_get_type
+ianjuta_debugger_data_get_type
+ianjuta_debugger_error_get_type
+ianjuta_debugger_output_type_get_type
+ianjuta_debugger_state_get_type
 ianjuta_debugger_get_type
+ianjuta_debugger_breakpoint_method_get_type
+ianjuta_debugger_breakpoint_type_get_type
 ianjuta_debugger_breakpoint_get_type
-ianjuta_debugger_variable_get_type
-ianjuta_debugger_register_get_type
-ianjuta_debugger_memory_get_type
 ianjuta_debugger_instruction_get_type
-ianjuta_debug_manager_get_type
+ianjuta_debugger_memory_get_type
+ianjuta_debugger_register_get_type
+ianjuta_debugger_variable_get_type
+ianjuta_document_get_type
+ianjuta_document_manager_error_get_type
 ianjuta_document_manager_get_type
 ianjuta_editor_assist_get_type
 ianjuta_editor_cell_get_type
@@ -33,33 +70,48 @@
 ianjuta_editor_factory_get_type
 ianjuta_editor_folds_get_type
 ianjuta_editor_goto_get_type
-ianjuta_editor_get_type
 ianjuta_editor_hover_get_type
 ianjuta_editor_language_get_type
+ianjuta_editor_line_mode_type_get_type
 ianjuta_editor_line_mode_get_type
+ianjuta_editor_search_get_type
 ianjuta_editor_selection_get_type
 ianjuta_editor_view_get_type
 ianjuta_editor_zoom_get_type
+ianjuta_environment_get_type
 ianjuta_file_get_type
 ianjuta_file_loader_get_type
 ianjuta_file_manager_get_type
 ianjuta_file_savable_get_type
 ianjuta_help_get_type
+ianjuta_indicable_indicator_get_type
 ianjuta_indicable_get_type
 ianjuta_iterable_get_type
 ianjuta_iterable_tree_get_type
+ianjuta_language_get_type
 ianjuta_language_support_get_type
 ianjuta_loader_get_type
 ianjuta_macro_get_type
+ianjuta_markable_error_get_type
+ianjuta_markable_marker_get_type
 ianjuta_markable_get_type
+ianjuta_message_manager_error_get_type
 ianjuta_message_manager_get_type
+ianjuta_message_view_type_get_type
 ianjuta_message_view_get_type
+ianjuta_plugin_factory_error_get_type
+ianjuta_plugin_factory_get_type
 ianjuta_preferences_get_type
 ianjuta_print_get_type
+ianjuta_project_manager_capabilities_get_type
+ianjuta_project_manager_element_type_get_type
+ianjuta_project_manager_target_type_get_type
 ianjuta_project_manager_get_type
 ianjuta_stream_get_type
 ianjuta_stream_loader_get_type
 ianjuta_stream_savable_get_type
+ianjuta_symbol_field_get_type
+ianjuta_symbol_type_get_type
 ianjuta_symbol_get_type
 ianjuta_symbol_manager_get_type
 ianjuta_terminal_get_type



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]