diff options
Diffstat (limited to 'lib/river/src/river-output.c')
-rw-r--r-- | lib/river/src/river-output.c | 22 |
1 files changed, 21 insertions, 1 deletions
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; } |