summaryrefslogtreecommitdiffstats
path: root/src/gs-app-tile.h
blob: 37c77ef7da12db1b51a9662f7699c6b4cdb5117c (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) 2013 Matthias Clasen <mclasen@redhat.com>
 * Copyright (C) 2019 Richard Hughes <richard@hughsie.com>
 *
 * SPDX-License-Identifier: GPL-2.0+
 */

#pragma once

#include <gtk/gtk.h>

#include "gnome-software-private.h"

G_BEGIN_DECLS

#define GS_TYPE_APP_TILE (gs_app_tile_get_type ())

G_DECLARE_DERIVABLE_TYPE (GsAppTile, gs_app_tile, GS, APP_TILE, GtkButton)

struct _GsAppTileClass
{
	GtkButtonClass		parent_class;
	void			 (*refresh)		(GsAppTile	*self);
};

GsApp		*gs_app_tile_get_app	(GsAppTile	*self);
void		 gs_app_tile_set_app	(GsAppTile	*self,
					 GsApp		*app);

G_END_DECLS