/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * vi:set noexpandtab tabstop=8 shiftwidth=8: * * Copyright (C) 2013 Richard Hughes * Copyright (C) 2015-2017 Kalev Lember * * SPDX-License-Identifier: GPL-2.0+ */ #pragma once #include #include "gs-app-list.h" #include "gs-plugin-loader.h" #include "gs-page.h" G_BEGIN_DECLS #define GS_TYPE_UPDATES_SECTION (gs_updates_section_get_type ()) G_DECLARE_FINAL_TYPE (GsUpdatesSection, gs_updates_section, GS, UPDATES_SECTION, GtkListBox) typedef enum { GS_UPDATES_SECTION_KIND_OFFLINE_FIRMWARE, GS_UPDATES_SECTION_KIND_OFFLINE, GS_UPDATES_SECTION_KIND_ONLINE, GS_UPDATES_SECTION_KIND_ONLINE_FIRMWARE, GS_UPDATES_SECTION_KIND_LAST } GsUpdatesSectionKind; GtkListBox *gs_updates_section_new (GsUpdatesSectionKind kind, GsPluginLoader *plugin_loader, GsPage *page); GsAppList *gs_updates_section_get_list (GsUpdatesSection *self); void gs_updates_section_add_app (GsUpdatesSection *self, GsApp *app); void gs_updates_section_remove_all (GsUpdatesSection *self); void gs_updates_section_set_size_groups (GsUpdatesSection *self, GtkSizeGroup *image, GtkSizeGroup *name, GtkSizeGroup *desc, GtkSizeGroup *button, GtkSizeGroup *header); G_END_DECLS