summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorkotontrion <[email protected]>2024-09-05 15:07:35 +0200
committerkotontrion <[email protected]>2024-09-05 15:07:35 +0200
commitcd132bb89ee212233b348c4a5a7bf4a6683eef55 (patch)
treef6597d76bd34c314305d32ecde1f7192ed53078c /lib
parent67055f44ff9332c9a79434fac838041f7ff0f1f0 (diff)
river: improve docs
Diffstat (limited to 'lib')
-rw-r--r--lib/river/src/astal-river.c3
-rw-r--r--lib/river/src/river-output.c22
-rw-r--r--lib/river/src/river.c24
3 files changed, 44 insertions, 5 deletions
diff --git a/lib/river/src/astal-river.c b/lib/river/src/astal-river.c
index 37f34d5..a1d3ce5 100644
--- a/lib/river/src/astal-river.c
+++ b/lib/river/src/astal-river.c
@@ -1,9 +1,10 @@
+#include "astal-river.h"
+
#include <getopt.h>
#include <json-glib/json-glib.h>
#include <stdlib.h>
#include "gio/gio.h"
-#include "astal-river.h"
GMainLoop* loop;
diff --git a/lib/river/src/river-output.c b/lib/river/src/river-output.c
index 6317db1..dc5f17d 100644
--- a/lib/river/src/river-output.c
+++ b/lib/river/src/river-output.c
@@ -48,9 +48,17 @@ static GParamSpec* astal_river_output_properties[ASTAL_RIVER_OUTPUT_N_PROPERTIES
};
/**
- * astal_river_output_get_nid
+ * AstalRiverOutput
+ *
+ * holds all the information associated with a monitor.
+ */
+
+/**
+ * astal_river_output_get_id
* @self: the AstalRiverOutput object
*
+ * the id of the underlying wl_output object
+ *
* Returns: the id of the underlying wl_output object
*/
guint astal_river_output_get_id(AstalRiverOutput* self) { return self->id; }
@@ -59,6 +67,8 @@ guint astal_river_output_get_id(AstalRiverOutput* self) { return self->id; }
* astal_river_output_get_name
* @self: the AstalRiverOutput object
*
+ * the name of the output
+ *
* Returns: (transfer none) (nullable): the name of the output
*/
gchar* astal_river_output_get_name(AstalRiverOutput* self) { return self->name; }
@@ -67,6 +77,8 @@ gchar* astal_river_output_get_name(AstalRiverOutput* self) { return self->name;
* astal_river_output_get_layout_name
* @self: the AstalRiverOutput object
*
+ * the currently used layout name of the output
+ *
* Returns: (transfer none) (nullable): the currently used layout name of the output
*/
gchar* astal_river_output_get_layout_name(AstalRiverOutput* self) { return self->layout_name; }
@@ -75,6 +87,8 @@ gchar* astal_river_output_get_layout_name(AstalRiverOutput* self) { return self-
* astal_river_output_get_focused_view
* @self: the AstalRiverOutput object
*
+ * the focused view on the output
+ *
* Returns: (transfer none) (nullable): the focused view on the output
*/
gchar* astal_river_output_get_focused_view(AstalRiverOutput* self) { return self->focused_view; }
@@ -90,6 +104,8 @@ void astal_river_output_set_focused_view(AstalRiverOutput* self, const gchar* fo
* astal_river_output_get_focused_tags
* @self: the AstalRiverOutput object
*
+ * the focused tags of the output
+ *
* Returns: the focused tags of the output
*/
guint astal_river_output_get_focused_tags(AstalRiverOutput* self) { return self->focused_tags; }
@@ -98,6 +114,8 @@ guint astal_river_output_get_focused_tags(AstalRiverOutput* self) { return self-
* astal_river_output_get_urgent_tags
* @self: the AstalRiverOutput object
*
+ * the urgent tags of the output
+ *
* Returns: the urgent tags of the output
*/
guint astal_river_output_get_urgent_tags(AstalRiverOutput* self) { return self->urgent_tags; }
@@ -106,6 +124,8 @@ guint astal_river_output_get_urgent_tags(AstalRiverOutput* self) { return self->
* astal_river_output_get_occupied_tags
* @self: the AstalRiverOutput object
*
+ * the occupied tags of the output
+ *
* Returns: the occupied tags of the output
*/
guint astal_river_output_get_occupied_tags(AstalRiverOutput* self) { return self->occupied_tags; }
diff --git a/lib/river/src/river.c b/lib/river/src/river.c
index a735898..edf6af3 100644
--- a/lib/river/src/river.c
+++ b/lib/river/src/river.c
@@ -95,9 +95,17 @@ static AstalRiverOutput* find_output_by_name(AstalRiverRiver* self, gchar* name)
}
/**
+ * AstalRiverRiver
+ *
+ * This class creates a connection to the river compositor.
+ */
+
+/**
* astal_river_river_get_outputs
* @self: the AstalRiverRiver object
*
+ * returns a list of all outputs
+ *
* Returns: (transfer none) (element-type AstalRiver.Output): a list of all outputs
*
*/
@@ -108,6 +116,8 @@ GList* astal_river_river_get_outputs(AstalRiverRiver* self) { return self->outpu
* @self: the AstalRiverRiver object
* @name: the name of the output
*
+ * returns the output with the given name or null
+ *
* Returns: (transfer none) (nullable): the output with the given name or null
*/
AstalRiverOutput* astal_river_river_get_output(AstalRiverRiver* self, gchar* name) {
@@ -118,6 +128,8 @@ AstalRiverOutput* astal_river_river_get_output(AstalRiverRiver* self, gchar* nam
* astal_river_river_get_focused_view
* @self: the AstalRiverOutput object
*
+ * returns the currently focused view
+ *
* Returns: (transfer none) (nullable): the currently focused view
*/
gchar* astal_river_river_get_focused_view(AstalRiverRiver* self) { return self->focused_view; }
@@ -126,6 +138,8 @@ gchar* astal_river_river_get_focused_view(AstalRiverRiver* self) { return self->
* astal_river_river_get_focused_output
* @self: the AstalRiverOutput object
*
+ * returns the name of the currently focused output
+ *
* Returns: (transfer none) (nullable): the name of the currently focused output
*/
gchar* astal_river_river_get_focused_output(AstalRiverRiver* self) { return self->focused_output; }
@@ -134,6 +148,8 @@ gchar* astal_river_river_get_focused_output(AstalRiverRiver* self) { return self
* astal_river_river_get_mode
* @self: the AstalRiverOutput object
*
+ * returns the currently active mode
+ *
* Returns: (transfer none) (nullable): the currently active mode
*/
gchar* astal_river_river_get_mode(AstalRiverRiver* self) { return self->mode; }
@@ -274,7 +290,7 @@ const struct zriver_command_callback_v1_listener cb_listener = {
* @cmd: (array length=length): the command to execute
* @callback: (scope async) (nullable): the callback to invoke.
*
- * Calls the given callback with the provided parameters.
+ * Sends a given command to the compositor and calls the callback after it was executed.
*/
void astal_river_river_run_command_async(AstalRiverRiver* self, gint length, const gchar** cmd,
AstalRiverCommandCallback callback) {
@@ -376,7 +392,7 @@ static void astal_river_river_init(AstalRiverRiver* self) {
/**
* astal_river_river_new
*
- * creates a new River object. It is recommended to use the get_default() method
+ * creates a new River object. It is recommended to use the [[email protected]_default] method
* instead of this method.
*
* Returns: (nullable): a newly created connection to river
@@ -395,6 +411,8 @@ static void disconnect_signal(gpointer key, gpointer value, gpointer user_data)
/**
* astal_river_river_get_default
*
+ * returns the default River object.
+ *
* Returns: (nullable) (transfer none): gets the default River object.
*/
AstalRiverRiver* astal_river_river_get_default() {
@@ -470,7 +488,7 @@ static void astal_river_river_class_init(AstalRiverRiverClass* class) {
/**
* AstalRiverRiver:outputs: (type GList(AstalRiverOutput))
*
- * A list of AstalRiverOutput objects
+ * A list of [[email protected]] objects
*/
astal_river_river_properties[ASTAL_RIVER_RIVER_PROP_OUTPUTS] =
g_param_spec_pointer("outputs", "outputs", "a list of all outputs", G_PARAM_READABLE);