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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/* -*- 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>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include "config.h"
#include "gs-category-tile.h"
#include "gs-common.h"
struct _GsCategoryTile
{
GtkButton parent_instance;
GsCategory *cat;
GtkWidget *label;
GtkWidget *image;
};
G_DEFINE_TYPE (GsCategoryTile, gs_category_tile, GTK_TYPE_BUTTON)
GsCategory *
gs_category_tile_get_category (GsCategoryTile *tile)
{
g_return_val_if_fail (GS_IS_CATEGORY_TILE (tile), NULL);
return tile->cat;
}
static void
gs_category_tile_refresh (GsCategoryTile *tile)
{
/* set labels */
gtk_label_set_label (GTK_LABEL (tile->label),
gs_category_get_name (tile->cat));
gtk_image_set_from_icon_name (GTK_IMAGE (tile->image),
gs_category_get_icon (tile->cat),
GTK_ICON_SIZE_MENU);
}
void
gs_category_tile_set_category (GsCategoryTile *tile, GsCategory *cat)
{
g_return_if_fail (GS_IS_CATEGORY_TILE (tile));
g_return_if_fail (GS_IS_CATEGORY (cat));
g_set_object (&tile->cat, cat);
gs_category_tile_refresh (tile);
}
static void
gs_category_tile_destroy (GtkWidget *widget)
{
GsCategoryTile *tile = GS_CATEGORY_TILE (widget);
g_clear_object (&tile->cat);
GTK_WIDGET_CLASS (gs_category_tile_parent_class)->destroy (widget);
}
static void
gs_category_tile_init (GsCategoryTile *tile)
{
gtk_widget_set_has_window (GTK_WIDGET (tile), FALSE);
gtk_widget_init_template (GTK_WIDGET (tile));
}
static void
gs_category_tile_class_init (GsCategoryTileClass *klass)
{
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
widget_class->destroy = gs_category_tile_destroy;
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/Software/gs-category-tile.ui");
gtk_widget_class_bind_template_child (widget_class, GsCategoryTile, label);
gtk_widget_class_bind_template_child (widget_class, GsCategoryTile, image);
}
GtkWidget *
gs_category_tile_new (GsCategory *cat)
{
GsCategoryTile *tile;
tile = g_object_new (GS_TYPE_CATEGORY_TILE, NULL);
gs_category_tile_set_category (tile, cat);
return GTK_WIDGET (tile);
}
|