blob: 2368b04ee15144586e2ed5141d565af71f86880e (
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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
* vi:set noexpandtab tabstop=8 shiftwidth=8:
*
* Copyright (C) 2018 Kalev Lember <klember@redhat.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#pragma once
#include "gnome-software-private.h"
#include <gtk/gtk.h>
G_BEGIN_DECLS
#define GS_TYPE_ORIGIN_POPOVER_ROW (gs_origin_popover_row_get_type ())
G_DECLARE_DERIVABLE_TYPE (GsOriginPopoverRow, gs_origin_popover_row, GS, ORIGIN_POPOVER_ROW, GtkListBoxRow)
struct _GsOriginPopoverRowClass
{
GtkListBoxRowClass parent_class;
};
GtkWidget *gs_origin_popover_row_new (GsApp *app);
GsApp *gs_origin_popover_row_get_app (GsOriginPopoverRow *row);
void gs_origin_popover_row_set_selected (GsOriginPopoverRow *row,
gboolean selected);
void gs_origin_popover_row_set_size_group (GsOriginPopoverRow *row,
GtkSizeGroup *size_group);
G_END_DECLS
|