Fix up the docs

Taken from gedit,
commit: 42a6a8d8d87f32572f56b56a9c4e92f7181d339a
from: Garrett Regier <alias301@gmail.com>
This commit is contained in:
infirit 2015-09-05 21:06:15 +02:00
parent 1618c8f724
commit 3d9e640cc4
15 changed files with 205 additions and 77 deletions

View File

@ -551,6 +551,7 @@ pluma_app_create_window_real (PlumaApp *app,
/** /**
* pluma_app_create_window: * pluma_app_create_window:
* @app: the #PlumaApp * @app: the #PlumaApp
* @screen: (allow-none):
* *
* Create a new #PlumaWindow part of @app. * Create a new #PlumaWindow part of @app.
* *
@ -591,8 +592,8 @@ _pluma_app_restore_window (PlumaApp *app,
* *
* Returns all the windows currently present in #PlumaApp. * Returns all the windows currently present in #PlumaApp.
* *
* Return value: the list of #PlumaWindows objects. The list * Return value: (transfer none): the list of #PlumaWindows objects.
* should not be freed * The list should not be freed
*/ */
const GList * const GList *
pluma_app_get_windows (PlumaApp *app) pluma_app_get_windows (PlumaApp *app)
@ -737,7 +738,8 @@ _pluma_app_get_window_in_viewport (PlumaApp *app,
* *
* Returns all the documents currently open in #PlumaApp. * Returns all the documents currently open in #PlumaApp.
* *
* Return value: a newly allocated list of #PlumaDocument objects * Return value: (element-type Pluma.Document) (transfer container):
* a newly allocated list of #PlumaDocument objects
*/ */
GList * GList *
pluma_app_get_documents (PlumaApp *app) pluma_app_get_documents (PlumaApp *app)
@ -766,7 +768,8 @@ pluma_app_get_documents (PlumaApp *app)
* *
* Returns all the views currently present in #PlumaApp. * Returns all the views currently present in #PlumaApp.
* *
* Return value: a newly allocated list of #PlumaView objects * Return value: (element-type Pluma.View) (transfer container):
* a newly allocated list of #PlumaView objects
*/ */
GList * GList *
pluma_app_get_views (PlumaApp *app) pluma_app_get_views (PlumaApp *app)

View File

@ -304,8 +304,14 @@ load_uri_list (PlumaWindow *window,
/** /**
* pluma_commands_load_uri: * pluma_commands_load_uri:
* @window:
* @uri:
* @encoding: (allow-none):
* @line_pos:
* *
* Do nothing if URI does not exist * Do nothing if uri does not exist
*
* Returns: (transfer container):
*/ */
void void
pluma_commands_load_uri (PlumaWindow *window, pluma_commands_load_uri (PlumaWindow *window,
@ -330,8 +336,14 @@ pluma_commands_load_uri (PlumaWindow *window,
/** /**
* pluma_commands_load_uris: * pluma_commands_load_uris:
* @window:
* @uris:
* @encoding:
* @line_pos:
* *
* Ignore non-existing URIs * Ignore non-existing URIs
*
* Returns: (transfer container):
*/ */
gint gint
pluma_commands_load_uris (PlumaWindow *window, pluma_commands_load_uris (PlumaWindow *window,

View File

@ -60,6 +60,7 @@ typedef enum {
} PlumaDebugSection; } PlumaDebugSection;
/* FIXME this is an issue for introspection */
#define DEBUG_VIEW PLUMA_DEBUG_VIEW, __FILE__, __LINE__, G_STRFUNC #define DEBUG_VIEW PLUMA_DEBUG_VIEW, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_SEARCH PLUMA_DEBUG_SEARCH, __FILE__, __LINE__, G_STRFUNC #define DEBUG_SEARCH PLUMA_DEBUG_SEARCH, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_PRINT PLUMA_DEBUG_PRINT, __FILE__, __LINE__, G_STRFUNC #define DEBUG_PRINT PLUMA_DEBUG_PRINT, __FILE__, __LINE__, G_STRFUNC

View File

@ -1003,6 +1003,11 @@ set_content_type (PlumaDocument *doc,
} }
} }
/**
* pluma_document_set_content_type:
* @doc:
* @content_type: (allow-none):
*/
void void
pluma_document_set_content_type (PlumaDocument *doc, pluma_document_set_content_type (PlumaDocument *doc,
const gchar *content_type) const gchar *content_type)
@ -1070,7 +1075,12 @@ pluma_document_set_uri (PlumaDocument *doc,
set_content_type (doc, NULL); set_content_type (doc, NULL);
} }
/* Never returns NULL */ /**
* pluma_document_get_uri_for_display:
* @doc:
*
* Note: this never returns %NULL.
**/
gchar * gchar *
pluma_document_get_uri_for_display (PlumaDocument *doc) pluma_document_get_uri_for_display (PlumaDocument *doc)
{ {
@ -1083,7 +1093,12 @@ pluma_document_get_uri_for_display (PlumaDocument *doc)
return pluma_utils_uri_for_display (doc->priv->uri); return pluma_utils_uri_for_display (doc->priv->uri);
} }
/* Never returns NULL */ /**
* pluma_document_get_short_name_for_display:
* @doc:
*
* Note: this never returns %NULL.
**/
gchar * gchar *
pluma_document_get_short_name_for_display (PlumaDocument *doc) pluma_document_get_short_name_for_display (PlumaDocument *doc)
{ {
@ -1098,6 +1113,11 @@ pluma_document_get_short_name_for_display (PlumaDocument *doc)
return pluma_utils_basename_for_display (doc->priv->uri); return pluma_utils_basename_for_display (doc->priv->uri);
} }
/**
* pluma_document_set_short_name_for_display:
* @doc:
* @short_name: (allow-none):
*/
void void
pluma_document_set_short_name_for_display (PlumaDocument *doc, pluma_document_set_short_name_for_display (PlumaDocument *doc,
const gchar *short_name) const gchar *short_name)
@ -1118,7 +1138,12 @@ pluma_document_get_content_type (PlumaDocument *doc)
return g_strdup (doc->priv->content_type); return g_strdup (doc->priv->content_type);
} }
/* Never returns NULL */ /**
* pluma_document_get_mime_type:
* @doc:
*
* Note: this never returns %NULL.
**/
gchar * gchar *
pluma_document_get_mime_type (PlumaDocument *doc) pluma_document_get_mime_type (PlumaDocument *doc)
{ {
@ -1760,6 +1785,12 @@ compute_num_of_lines (const gchar *text)
return n; return n;
} }
/**
* pluma_document_set_search_text"
* @doc:
* @text: (allow-none):
* @flags:
**/
void void
pluma_document_set_search_text (PlumaDocument *doc, pluma_document_set_search_text (PlumaDocument *doc,
const gchar *text, const gchar *text,
@ -1822,6 +1853,11 @@ pluma_document_set_search_text (PlumaDocument *doc,
g_object_notify (G_OBJECT (doc), "can-search-again"); g_object_notify (G_OBJECT (doc), "can-search-again");
} }
/**
* pluma_document_get_search_text:
* @doc:
* @flags: (allow-none):
*/
gchar * gchar *
pluma_document_get_search_text (PlumaDocument *doc, pluma_document_get_search_text (PlumaDocument *doc,
guint *flags) guint *flags)
@ -1843,6 +1879,14 @@ pluma_document_get_can_search_again (PlumaDocument *doc)
(*doc->priv->search_text != '\0')); (*doc->priv->search_text != '\0'));
} }
/**
* pluma_document_search_forward:
* @doc:
* @start: (allow-none):
* @end: (allow-none):
* @match_start: (allow-none):
* @match_end: (allow=none):
**/
gboolean gboolean
pluma_document_search_forward (PlumaDocument *doc, pluma_document_search_forward (PlumaDocument *doc,
const GtkTextIter *start, const GtkTextIter *start,
@ -1928,6 +1972,14 @@ pluma_document_search_forward (PlumaDocument *doc,
return found; return found;
} }
/**
* pluma_document_search_backward:
* @doc:
* @start: (allow-none):
* @end: (allow-none):
* @match_start: (allow-none):
* @match_end: (allow=none):
**/
gboolean gboolean
pluma_document_search_backward (PlumaDocument *doc, pluma_document_search_backward (PlumaDocument *doc,
const GtkTextIter *start, const GtkTextIter *start,
@ -2013,6 +2065,7 @@ pluma_document_search_backward (PlumaDocument *doc,
return found; return found;
} }
/* FIXME this is an issue for introspection regardning @find */
gint gint
pluma_document_replace_all (PlumaDocument *doc, pluma_document_replace_all (PlumaDocument *doc,
const gchar *find, const gchar *find,
@ -2146,6 +2199,11 @@ pluma_document_replace_all (PlumaDocument *doc,
return cont; return cont;
} }
/**
* pluma_document_set_language:
* @doc:
* @lang: (allow-none):
**/
void void
pluma_document_set_language (PlumaDocument *doc, pluma_document_set_language (PlumaDocument *doc,
GtkSourceLanguage *lang) GtkSourceLanguage *lang)

View File

@ -430,6 +430,11 @@ pluma_encodings_combo_box_get_selected_encoding (PlumaEncodingsComboBox *menu)
return NULL; return NULL;
} }
/**
* pluma_encodings_combo_box_set_selected_encoding:
* @menu:
* @encoding: (allow-none):
**/
void void
pluma_encodings_combo_box_set_selected_encoding (PlumaEncodingsComboBox *menu, pluma_encodings_combo_box_set_selected_encoding (PlumaEncodingsComboBox *menu,
const PlumaEncoding *encoding) const PlumaEncoding *encoding)

View File

@ -461,11 +461,13 @@ pluma_file_chooser_dialog_new_valist (const gchar *title,
/** /**
* pluma_file_chooser_dialog_new: * pluma_file_chooser_dialog_new:
* @title: Title of the dialog, or %NULL * @title: (allow-none): Title of the dialog, or %NULL
* @parent: Transient parent of the dialog, or %NULL * @parent: (allow-none): Transient parent of the dialog, or %NULL
* @action: Open or save mode for the dialog * @action: Open or save mode for the dialog
* @first_button_text: stock ID or text to go in the first button, or %NULL * @first_button_text: (allow-none): stock ID or text to go in
* @Varargs: response ID for the first button, then additional (button, id) pairs, ending with %NULL * the first button, or %NULL
* @Varargs: (allow-none): response ID for the first button, then
* additional (button, id) pairs, ending with %NULL
* *
* Creates a new #PlumaFileChooserDialog. This function is analogous to * Creates a new #PlumaFileChooserDialog. This function is analogous to
* gtk_dialog_new_with_buttons(). * gtk_dialog_new_with_buttons().

View File

@ -45,6 +45,7 @@ typedef struct
struct _PlumaMessageType struct _PlumaMessageType
{ {
/* FIXME this is an issue for introspection */
gint ref_count; gint ref_count;
gchar *object_path; gchar *object_path;
@ -121,8 +122,8 @@ pluma_message_type_get_type (void)
/** /**
* pluma_message_type_identifier: * pluma_message_type_identifier:
* @object_path: the object path * @object_path: (allow-none): the object path
* @method: the method * @method: (allow-none): the method
* *
* Get the string identifier for @method at @object_path. * Get the string identifier for @method at @object_path.
* *
@ -138,7 +139,7 @@ pluma_message_type_identifier (const gchar *object_path,
/** /**
* pluma_message_type_is_valid_object_path: * pluma_message_type_is_valid_object_path:
* @object_path: the object path * @object_path: (allow-none): the object path
* *
* Returns whether @object_path is a valid object path * Returns whether @object_path is a valid object path
* *
@ -226,8 +227,8 @@ pluma_message_type_is_supported (GType type)
/** /**
* pluma_message_type_new_valist: * pluma_message_type_new_valist:
* @object_path: the object path * @object_path: (allow-none): the object path
* @method: the method * @method: (allow-none): the method
* @num_optional: number of optional arguments * @num_optional: number of optional arguments
* @var_args: key/gtype pair variable argument list * @var_args: key/gtype pair variable argument list
* *
@ -267,8 +268,8 @@ pluma_message_type_new_valist (const gchar *object_path,
/** /**
* pluma_message_type_new: * pluma_message_type_new:
* @object_path: the object path * @object_path: (allow-none): the object path
* @method: the method * @method: (allow-none): the method
* @num_optional: number of optional arguments * @num_optional: number of optional arguments
* @...: key/gtype pair variable argument list * @...: key/gtype pair variable argument list
* *

View File

@ -266,7 +266,7 @@ pluma_message_get_object_path (PlumaMessage *message)
/** /**
* pluma_message_set: * pluma_message_set:
* @message: the #PlumaMessage * @message: the #PlumaMessage
* @...: a NULL terminated variable list of key/value pairs * @...: a %NULL terminated variable list of key/value pairs
* *
* Set values of message arguments. The supplied @var_args should contain * Set values of message arguments. The supplied @var_args should contain
* pairs of keys and argument values. * pairs of keys and argument values.
@ -288,7 +288,7 @@ pluma_message_set (PlumaMessage *message,
/** /**
* pluma_message_set_valist: * pluma_message_set_valist:
* @message: the #PlumaMessage * @message: the #PlumaMessage
* @var_args: a NULL terminated variable list of key/value pairs * @var_args: a %NULL terminated variable list of key/value pairs
* *
* Set values of message arguments. The supplied @var_args should contain * Set values of message arguments. The supplied @var_args should contain
* pairs of keys and argument values. * pairs of keys and argument values.
@ -338,7 +338,7 @@ pluma_message_set_valist (PlumaMessage *message,
* pluma_message_set_value: * pluma_message_set_value:
* @message: the #PlumaMessage * @message: the #PlumaMessage
* @key: the argument key * @key: the argument key
* @value: the argument value * @value: (out): the argument value
* *
* Set value of message argument @key to @value. * Set value of message argument @key to @value.
* *
@ -367,8 +367,8 @@ pluma_message_set_value (PlumaMessage *message,
/** /**
* pluma_message_set_valuesv: * pluma_message_set_valuesv:
* @message: the #PlumaMessage * @message: the #PlumaMessage
* @keys: keys to set values for * @keys: (array-length=n_values): keys to set values for
* @values: values to set * @values: (array-length=n_values): values to set
* @n_values: number of arguments to set values for * @n_values: number of arguments to set values for
* *
* Set message argument values. * Set message argument values.
@ -390,10 +390,11 @@ pluma_message_set_valuesv (PlumaMessage *message,
} }
} }
/* FIXME this is an issue for introspection */
/** /**
* pluma_message_get: * pluma_message_get:
* @message: the #PlumaMessage * @message: the #PlumaMessage
* @...: a NULL variable argument list of key/value container pairs * @...: a %NULL variable argument list of key/value container pairs
* *
* Get values of message arguments. The supplied @var_args should contain * Get values of message arguments. The supplied @var_args should contain
* pairs of keys and pointers to variables which are set to the argument * pairs of keys and pointers to variables which are set to the argument
@ -416,7 +417,7 @@ pluma_message_get (PlumaMessage *message,
/** /**
* pluma_message_get_valist: * pluma_message_get_valist:
* @message: the #PlumaMessage * @message: the #PlumaMessage
* @var_args: a NULL variable argument list of key/value container pairs * @var_args: a %NULL variable argument list of key/value container pairs
* *
* Get values of message arguments. The supplied @var_args should contain * Get values of message arguments. The supplied @var_args should contain
* pairs of keys and pointers to variables which are set to the argument * pairs of keys and pointers to variables which are set to the argument
@ -470,7 +471,7 @@ pluma_message_get_valist (PlumaMessage *message,
* pluma_message_get_value: * pluma_message_get_value:
* @message: the #PlumaMessage * @message: the #PlumaMessage
* @key: the argument key * @key: the argument key
* @value: value return container * @value: (out): value return container
* *
* Get the value of a specific message argument. @value will be initialized * Get the value of a specific message argument. @value will be initialized
* with the correct type. * with the correct type.

View File

@ -738,9 +738,9 @@ pluma_panel_add_item_with_stock_icon (PlumaPanel *panel,
* @item: the item to be removed from the panel * @item: the item to be removed from the panel
* *
* Removes the widget @item from the panel if it is in the @panel and returns * Removes the widget @item from the panel if it is in the @panel and returns
* TRUE if there was not any problem. * %TRUE if there was not any problem.
* *
* Returns: TRUE if it was well removed. * Returns: %TRUE if it was well removed.
*/ */
gboolean gboolean
pluma_panel_remove_item (PlumaPanel *panel, pluma_panel_remove_item (PlumaPanel *panel,
@ -793,7 +793,7 @@ pluma_panel_remove_item (PlumaPanel *panel,
* *
* Switches to the page that contains @item. * Switches to the page that contains @item.
* *
* Returns: TRUE if it was activated * Returns: %TRUE if it was activated
*/ */
gboolean gboolean
pluma_panel_activate_item (PlumaPanel *panel, pluma_panel_activate_item (PlumaPanel *panel,
@ -819,11 +819,11 @@ pluma_panel_activate_item (PlumaPanel *panel,
/** /**
* pluma_panel_item_is_active: * pluma_panel_item_is_active:
* @panel: a #PlumaPanel * @panel: a #PlumaPanel
* @item: a widget contained in #PlumaPanel * @item: a #GtkWidget
* *
* Whether @item is the one current active in @panel * Returns whether @item is the active widget in @panel
* *
* Returns: TRUE if the widget is active * Returns: %TRUE if @item is the active widget
*/ */
gboolean gboolean
pluma_panel_item_is_active (PlumaPanel *panel, pluma_panel_item_is_active (PlumaPanel *panel,

View File

@ -307,12 +307,22 @@ pluma_status_combo_box_init (PlumaStatusComboBox *self)
} }
/* public functions */ /* public functions */
/**
* pluma_status_combo_box_new:
* @label: (allow-none):
*/
GtkWidget * GtkWidget *
pluma_status_combo_box_new (const gchar *label) pluma_status_combo_box_new (const gchar *label)
{ {
return g_object_new (PLUMA_TYPE_STATUS_COMBO_BOX, "label", label, NULL); return g_object_new (PLUMA_TYPE_STATUS_COMBO_BOX, "label", label, NULL);
} }
/**
* pluma_status_combo_box_set_label:
* @combo:
* @label: (allow-none):
*/
void void
pluma_status_combo_box_set_label (PlumaStatusComboBox *combo, pluma_status_combo_box_set_label (PlumaStatusComboBox *combo,
const gchar *label) const gchar *label)
@ -341,6 +351,12 @@ item_activated (GtkMenuItem *item,
pluma_status_combo_box_set_item (combo, item); pluma_status_combo_box_set_item (combo, item);
} }
/**
* pluma_status_combo_box_add_item:
* @combo:
* @item:
* @text: (allow-none):
*/
void void
pluma_status_combo_box_add_item (PlumaStatusComboBox *combo, pluma_status_combo_box_add_item (PlumaStatusComboBox *combo,
GtkMenuItem *item, GtkMenuItem *item,
@ -388,6 +404,12 @@ pluma_status_combo_box_get_item_text (PlumaStatusComboBox *combo,
return ret; return ret;
} }
/**
* pluma_status_combo_box_set_item_text:
* @combo:
* @item:
* @text: (allow-none):
*/
void void
pluma_status_combo_box_set_item_text (PlumaStatusComboBox *combo, pluma_status_combo_box_set_item_text (PlumaStatusComboBox *combo,
GtkMenuItem *item, GtkMenuItem *item,

View File

@ -268,6 +268,7 @@ remove_message_timeout (PlumaStatusbar *statusbar)
return FALSE; return FALSE;
} }
/* FIXME this is an issue for introspection */
/** /**
* pluma_statusbar_flash_message: * pluma_statusbar_flash_message:
* @statusbar: a #PlumaStatusbar * @statusbar: a #PlumaStatusbar

View File

@ -61,7 +61,11 @@
#define STDIN_DELAY_MICROSECONDS 100000 #define STDIN_DELAY_MICROSECONDS 100000
/* Returns true if uri is a file: uri and is not a chained uri */ /**
* pluma_utils_uris_has_file_scheme
*
* Returns: %TRUE if @uri is a file: uri and is not a chained uri
*/
gboolean gboolean
pluma_utils_uri_has_file_scheme (const gchar *uri) pluma_utils_uri_has_file_scheme (const gchar *uri)
{ {
@ -288,11 +292,12 @@ finally_2:
} }
/** /**
* pluma_utils_set_atk_name_description * pluma_utils_set_atk_name_description:
* @widget : The Gtk widget for which name/description to be set * @widget: The Gtk widget for which name/description to be set
* @name : Atk name string * @name: Atk name string
* @description : Atk description string * @description: Atk description string
* Description : This function sets up name and description *
* This function sets up name and description
* for a specified gtk widget. * for a specified gtk widget.
*/ */
void void
@ -315,10 +320,12 @@ pluma_utils_set_atk_name_description (GtkWidget *widget,
} }
/** /**
* pluma_set_atk__relation * pluma_set_atk_relation:
* @obj1,@obj2 : specified widgets. * @obj1: specified widget.
* @rel_type : the type of relation to set up. * @obj2: specified widget.
* Description : This function establishes atk relation * @rel_type: the type of relation to set up.
*
* This function establishes atk relation
* between 2 specified widgets. * between 2 specified widgets.
*/ */
void void
@ -693,7 +700,11 @@ pluma_utils_make_valid_utf8 (const char *name)
return g_string_free (string, FALSE); return g_string_free (string, FALSE);
} }
/* Note that this function replace home dir with ~ */ /**
* pluma_utils_uri_get_dirname:
*
* Note: this function replace home dir with ~
*/
gchar * gchar *
pluma_utils_uri_get_dirname (const gchar *uri) pluma_utils_uri_get_dirname (const gchar *uri)
{ {
@ -842,7 +853,9 @@ pluma_utils_replace_home_dir_with_tilde (const gchar *uri)
/* the following two functions are courtesy of galeon */ /* the following two functions are courtesy of galeon */
/** /**
* pluma_utils_get_current_workspace: Get the current workspace * pluma_utils_get_current_workspace:
*
* Get the current workspace
* *
* Get the currently visible workspace for the #GdkScreen. * Get the currently visible workspace for the #GdkScreen.
* *
@ -891,7 +904,9 @@ pluma_utils_get_current_workspace (GdkScreen *screen)
} }
/** /**
* pluma_utils_get_window_workspace: Get the workspace the window is on * pluma_utils_get_window_workspace:
*
* Get the workspace the window is on
* *
* This function gets the workspace that the #GtkWindow is visible on, * This function gets the workspace that the #GtkWindow is visible on,
* it returns PLUMA_ALL_WORKSPACES if the window is sticky, or if * it returns PLUMA_ALL_WORKSPACES if the window is sticky, or if
@ -940,7 +955,9 @@ pluma_utils_get_window_workspace (GtkWindow *gtkwindow)
} }
/** /**
* pluma_utils_get_current_viewport: Get the current viewport origin * pluma_utils_get_current_viewport:
*
* Get the current viewport origin
* *
* Get the currently visible viewport origin for the #GdkScreen. * Get the currently visible viewport origin for the #GdkScreen.
* *
@ -1085,21 +1102,22 @@ handle_builder_error (const gchar *message, ...)
return label; return label;
} }
/* FIXME this is an issue for introspection */
/** /**
* pluma_utils_get_ui_objects: * pluma_utils_get_ui_objects:
* @filename: the path to the gtk builder file * @filename: the path to the gtk builder file
* @root_objects: a NULL terminated list of root objects to load or NULL to * @root_objects: a %NULL terminated list of root objects to load or NULL to
* load all objects * load all objects
* @error_widget: a pointer were a #GtkLabel * @error_widget: a pointer were a #GtkLabel
* @object_name: the name of the first object * @object_name: the name of the first object
* @...: a pointer were the first object is returned, followed by more * @...: a pointer were the first object is returned, followed by more
* name / object pairs and terminated by NULL. * name / object pairs and terminated by %NULL.
* *
* This function gets the requested objects from a GtkBuilder ui file. In case * This function gets the requested objects from a GtkBuilder ui file. In case
* of error it returns FALSE and sets error_widget to a GtkLabel containing * of error it returns %FALSE and sets error_widget to a GtkLabel containing
* the error message to display. * the error message to display.
* *
* Returns FALSE if an error occurs, TRUE on success. * Returns: %FALSE if an error occurs, %TRUE on success.
*/ */
gboolean gboolean
pluma_utils_get_ui_objects (const gchar *filename, pluma_utils_get_ui_objects (const gchar *filename,
@ -1232,7 +1250,7 @@ pluma_utils_make_canonical_uri_from_shell_arg (const gchar *str)
* pluma_utils_file_has_parent: * pluma_utils_file_has_parent:
* @gfile: the GFile to check the parent for * @gfile: the GFile to check the parent for
* *
* Return TRUE if the specified gfile has a parent (is not the root), FALSE * Return %TRUE if the specified gfile has a parent (is not the root), %FALSE
* otherwise * otherwise
*/ */
gboolean gboolean
@ -1359,11 +1377,10 @@ pluma_utils_uri_for_display (const gchar *uri)
/** /**
* pluma_utils_drop_get_uris: * pluma_utils_drop_get_uris:
* @selection_data: the #GtkSelectionData from drag_data_received * @selection_data: the #GtkSelectionData from drag_data_received
* @info: the info from drag_data_received
* *
* Create a list of valid uri's from a uri-list drop. * Create a list of valid uri's from a uri-list drop.
* *
* Return value: a string array which will hold the uris or NULL if there * Return value: a string array which will hold the uris or %NULL if there
* were no valid uris. g_strfreev should be used when the * were no valid uris. g_strfreev should be used when the
* string array is no longer used * string array is no longer used
*/ */
@ -1410,18 +1427,19 @@ null_ptr (gchar **ptr)
/** /**
* pluma_utils_decode_uri: * pluma_utils_decode_uri:
* @uri: the uri to decode * @uri: the uri to decode
* @scheme: return value pointer for the uri's scheme (e.g. http, sftp, ...) * @scheme: (allow-none): return value pointer for the uri's
* @user: return value pointer for the uri user info * scheme (e.g. http, sftp, ...), or %NULL
* @port: return value pointer for the uri port * @user: (allow-none): return value pointer for the uri user info, or %NULL
* @host: return value pointer for the uri host * @port: (allow-none): return value pointer for the uri port, or %NULL
* @path: return value pointer for the uri path * @host: (allow-none): return value pointer for the uri host, or %NULL
* @path: (allow-none): return value pointer for the uri path, or %NULL
* *
* Parse and break an uri apart in its individual components like the uri * Parse and break an uri apart in its individual components like the uri
* scheme, user info, port, host and path. The return value pointer can be * scheme, user info, port, host and path. The return value pointer can be
* NULL to ignore certain parts of the uri. If the function returns TRUE, then * %NULL to ignore certain parts of the uri. If the function returns %TRUE, then
* all return value pointers should be freed using g_free * all return value pointers should be freed using g_free
* *
* Return value: TRUE if the uri could be properly decoded, FALSE otherwise. * Return value: %TRUE if the uri could be properly decoded, %FALSE otherwise.
*/ */
gboolean gboolean
pluma_utils_decode_uri (const gchar *uri, pluma_utils_decode_uri (const gchar *uri,

View File

@ -463,7 +463,7 @@ pluma_view_focus_out (GtkWidget *widget, GdkEventFocus *event)
* @doc: a #PlumaDocument * @doc: a #PlumaDocument
* *
* Creates a new #PlumaView object displaying the @doc document. * Creates a new #PlumaView object displaying the @doc document.
* @doc cannot be NULL. * @doc cannot be %NULL.
* *
* Return value: a new #PlumaView * Return value: a new #PlumaView
**/ **/
@ -649,6 +649,7 @@ pluma_view_scroll_to_cursor (PlumaView *view)
0.0); 0.0);
} }
/* FIXME this is an issue for introspection */
/** /**
* pluma_view_set_font: * pluma_view_set_font:
* @view: a #PlumaView * @view: a #PlumaView

View File

@ -4115,7 +4115,8 @@ add_document (PlumaTab *tab, GList **res)
* Gets a newly allocated list with all the documents in the window. * Gets a newly allocated list with all the documents in the window.
* This list must be freed. * This list must be freed.
* *
* Returns: a newly allocated list with all the documents in the window * Returns: (element-type Pluma.Document) (transfer container): a newly
* allocated list with all the documents in the window
*/ */
GList * GList *
pluma_window_get_documents (PlumaWindow *window) pluma_window_get_documents (PlumaWindow *window)
@ -4149,7 +4150,8 @@ add_view (PlumaTab *tab, GList **res)
* *
* Gets a list with all the views in the window. This list must be freed. * Gets a list with all the views in the window. This list must be freed.
* *
* Returns: a newly allocated list with all the views in the window * Returns: (element-type Pluma.View) (transfer container): a newly allocated
* list with all the views in the window
*/ */
GList * GList *
pluma_window_get_views (PlumaWindow *window) pluma_window_get_views (PlumaWindow *window)
@ -4210,7 +4212,7 @@ pluma_window_close_all_tabs (PlumaWindow *window)
/** /**
* pluma_window_close_tabs: * pluma_window_close_tabs:
* @window: a #PlumaWindow * @window: a #PlumaWindow
* @tabs: a list of #PlumaTab * @tabs: (element-type Pluma.Tab): a list of #PlumaTab
* *
* Closes all tabs specified by @tabs. * Closes all tabs specified by @tabs.
*/ */
@ -4426,7 +4428,8 @@ _pluma_window_set_default_location (PlumaWindow *window,
* *
* Gets the list of documents that need to be saved before closing the window. * Gets the list of documents that need to be saved before closing the window.
* *
* Returns: a list of #PlumaDocument that need to be saved before closing the window * Returns: (element-type Pluma.Document) (transfer container): a list of
* #PlumaDocument that need to be saved before closing the window
*/ */
GList * GList *
pluma_window_get_unsaved_documents (PlumaWindow *window) pluma_window_get_unsaved_documents (PlumaWindow *window)
@ -4630,7 +4633,7 @@ pluma_window_get_tab_from_location (PlumaWindow *window,
* Gets the #PlumaMessageBus associated with @window. The returned reference * Gets the #PlumaMessageBus associated with @window. The returned reference
* is owned by the window and should not be unreffed. * is owned by the window and should not be unreffed.
* *
* Return value: the #PlumaMessageBus associated with @window * Return value: (transfer none): the #PlumaMessageBus associated with @window
*/ */
PlumaMessageBus * PlumaMessageBus *
pluma_window_get_message_bus (PlumaWindow *window) pluma_window_get_message_bus (PlumaWindow *window)