diff options
Diffstat (limited to '')
-rw-r--r-- | src/gs-repos-section.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/gs-repos-section.h b/src/gs-repos-section.h new file mode 100644 index 0000000..e26189f --- /dev/null +++ b/src/gs-repos-section.h @@ -0,0 +1,31 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * vi:set noexpandtab tabstop=8 shiftwidth=8: + * + * Copyright (C) 2021 Red Hat <www.redhat.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#pragma once + +#include <adwaita.h> +#include <gtk/gtk.h> + +#include "gnome-software-private.h" +#include "gs-app.h" + +G_BEGIN_DECLS + +#define GS_TYPE_REPOS_SECTION (gs_repos_section_get_type ()) + +G_DECLARE_FINAL_TYPE (GsReposSection, gs_repos_section, GS, REPOS_SECTION, AdwPreferencesGroup) + +GtkWidget *gs_repos_section_new (gboolean always_allow_enable_disable); +void gs_repos_section_add_repo (GsReposSection *self, + GsApp *repo); +const gchar *gs_repos_section_get_title (GsReposSection *self); +const gchar *gs_repos_section_get_sort_key (GsReposSection *self); +void gs_repos_section_set_sort_key (GsReposSection *self, + const gchar *sort_key); + +G_END_DECLS |