diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:57:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:57:27 +0000 |
commit | 6f0f7d1b40a8fa8d46a2d6f4317600001cdbbb18 (patch) | |
tree | d423850ae901365e582137bdf2b5cbdffd7ca266 /src/gs-review-row.h | |
parent | Initial commit. (diff) | |
download | gnome-software-6f0f7d1b40a8fa8d46a2d6f4317600001cdbbb18.tar.xz gnome-software-6f0f7d1b40a8fa8d46a2d6f4317600001cdbbb18.zip |
Adding upstream version 43.5.upstream/43.5upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/gs-review-row.h')
-rw-r--r-- | src/gs-review-row.h | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/gs-review-row.h b/src/gs-review-row.h new file mode 100644 index 0000000..48139ce --- /dev/null +++ b/src/gs-review-row.h @@ -0,0 +1,56 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * vi:set noexpandtab tabstop=8 shiftwidth=8: + * + * Copyright (C) 2016 Canonical Ltd. + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#pragma once + +#include <gtk/gtk.h> + +#include "gnome-software-private.h" + +G_BEGIN_DECLS + +/** + * GsReviewAction: + * @GS_REVIEW_ACTION_UPVOTE: Add a vote to the review. + * @GS_REVIEW_ACTION_DOWNVOTE: Remove a vote from the review. + * @GS_REVIEW_ACTION_DISMISS: Dismiss (ignore) the review when moderating. + * @GS_REVIEW_ACTION_REPORT: Report the review for inappropriate content. + * @GS_REVIEW_ACTION_REMOVE: Remove one of your own reviews. + * + * Actions which can be performed on a review. + * + * Since: 41 + */ +typedef enum +{ + GS_REVIEW_ACTION_UPVOTE, + GS_REVIEW_ACTION_DOWNVOTE, + GS_REVIEW_ACTION_DISMISS, + GS_REVIEW_ACTION_REPORT, + GS_REVIEW_ACTION_REMOVE, +} GsReviewAction; + +#define GS_TYPE_REVIEW_ROW (gs_review_row_get_type ()) + +G_DECLARE_DERIVABLE_TYPE (GsReviewRow, gs_review_row, GS, REVIEW_ROW, GtkListBoxRow) + +struct _GsReviewRowClass +{ + GtkListBoxRowClass parent_class; + void (*button_clicked) (GsReviewRow *review_row, + GsPluginAction action); +}; + +GtkWidget *gs_review_row_new (AsReview *review); +AsReview *gs_review_row_get_review (GsReviewRow *review_row); +void gs_review_row_set_actions (GsReviewRow *review_row, + guint64 actions); +void gs_review_row_set_network_available (GsReviewRow *review_row, + gboolean network_available); + +G_END_DECLS |