gedit r6657 - in trunk: . gedit
- From: icq svn gnome org
- To: svn-commits-list gnome org
- Subject: gedit r6657 - in trunk: . gedit
- Date: Sun, 7 Dec 2008 15:49:50 +0000 (UTC)
Author: icq
Date: Sun Dec 7 15:49:50 2008
New Revision: 6657
URL: http://svn.gnome.org/viewvc/gedit?rev=6657&view=rev
Log:
2008-12-07 Ignacio Casal Quinteiro <nacho resa gmail com>
* gedit/gedit-window.c:
Added some doc.
Modified:
trunk/ChangeLog
trunk/gedit/gedit-window.c
Modified: trunk/gedit/gedit-window.c
==============================================================================
--- trunk/gedit/gedit-window.c (original)
+++ trunk/gedit/gedit-window.c Sun Dec 7 15:49:50 2008
@@ -3342,7 +3342,14 @@
*res = g_list_prepend (*res, view);
}
-/* Returns a newly allocated list with all the views in the window */
+/**
+ * gedit_window_get_views:
+ * @window: a #GeditWindow
+ *
+ * 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
+ */
GList *
gedit_window_get_views (GeditWindow *window)
{
@@ -3437,6 +3444,13 @@
return new_window;
}
+/**
+ * gedit_window_set_active_tab:
+ * @window: a #GeditWindow
+ * @tab: a #GeditTab
+ *
+ * Switches to the tab that matches with @tab.
+ */
void
gedit_window_set_active_tab (GeditWindow *window,
GeditTab *tab)
@@ -3470,6 +3484,14 @@
return window->priv->removing_tabs;
}
+/**
+ * gedit_window_get_ui_manager:
+ * @window: a #GeditWindow
+ *
+ * Gets the #GtkUIManager associated with the @window.
+ *
+ * Returns: the #GtkUIManager of the @window.
+ */
GtkUIManager *
gedit_window_get_ui_manager (GeditWindow *window)
{
@@ -3478,6 +3500,14 @@
return window->priv->manager;
}
+/**
+ * gedit_window_get_side_panel:
+ * @window. a #GeditWindow
+ *
+ * Gets the side #GeditPanel of the @window.
+ *
+ * Returns: the side #GeditPanel.
+ */
GeditPanel *
gedit_window_get_side_panel (GeditWindow *window)
{
@@ -3486,6 +3516,14 @@
return GEDIT_PANEL (window->priv->side_panel);
}
+/**
+ * gedit_window_get_bottom_panel:
+ * @window. a #GeditWindow
+ *
+ * Gets the bottom #GeditPanel of the @window.
+ *
+ * Returns: the bottom #GeditPanel.
+ */
GeditPanel *
gedit_window_get_bottom_panel (GeditWindow *window)
{
@@ -3494,6 +3532,14 @@
return GEDIT_PANEL (window->priv->bottom_panel);
}
+/**
+ * gedit_window_get_statusbar:
+ * @window: a #GeditWindow
+ *
+ * Gets the #GeditStatusbar of the @window.
+ *
+ * Returns: the #GeditStatusbar of the @window.
+ */
GtkWidget *
gedit_window_get_statusbar (GeditWindow *window)
{
@@ -3502,6 +3548,14 @@
return window->priv->statusbar;
}
+/**
+ * gedit_window_get_state:
+ * @window: a #GeditWindow
+ *
+ * Retrieves the state of the @window.
+ *
+ * Returns: the current #GeditWindowState of the @window.
+ */
GeditWindowState
gedit_window_get_state (GeditWindow *window)
{
@@ -3548,7 +3602,14 @@
}
}
-/* Returns the documents that need to be saved before closing the window */
+/**
+ * gedit_window_get_unsaved_documents:
+ * @window: a #GeditWindow
+ *
+ * Gets the list of documents that need to be saved before closing the window.
+ *
+ * Returns: a list of #GeditDocument that need to be saved before closing the window
+ */
GList *
gedit_window_get_unsaved_documents (GeditWindow *window)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]