blob: 0e9dafcddb8613bfca0d204007dd7ac1f292ad72 (
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
|
/* -*- 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>
G_BEGIN_DECLS
#define GS_TYPE_REVIEW_HISTOGRAM (gs_review_histogram_get_type ())
G_DECLARE_DERIVABLE_TYPE (GsReviewHistogram, gs_review_histogram, GS, REVIEW_HISTOGRAM, GtkWidget)
struct _GsReviewHistogramClass
{
GtkWidgetClass parent_class;
};
GtkWidget *gs_review_histogram_new (void);
void gs_review_histogram_set_ratings (GsReviewHistogram *histogram,
gint rating_percent,
GArray *review_ratings);
G_END_DECLS
|