summaryrefslogtreecommitdiffstats
path: root/src/gs-review-row.h
blob: 48139ce9634ff8a0d43c5a7ff402b6de5d273ae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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