From 6f0f7d1b40a8fa8d46a2d6f4317600001cdbbb18 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:57:27 +0200 Subject: Adding upstream version 43.5. Signed-off-by: Daniel Baumann --- src/gs-repo-row.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/gs-repo-row.h (limited to 'src/gs-repo-row.h') diff --git a/src/gs-repo-row.h b/src/gs-repo-row.h new file mode 100644 index 0000000..0cbbdc6 --- /dev/null +++ b/src/gs-repo-row.h @@ -0,0 +1,35 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * vi:set noexpandtab tabstop=8 shiftwidth=8: + * + * Copyright (C) 2015-2018 Kalev Lember + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#pragma once + +#include "gnome-software-private.h" +#include + +G_BEGIN_DECLS + +#define GS_TYPE_REPO_ROW (gs_repo_row_get_type ()) + +G_DECLARE_DERIVABLE_TYPE (GsRepoRow, gs_repo_row, GS, REPO_ROW, GtkListBoxRow) + +struct _GsRepoRowClass +{ + GtkListBoxRowClass parent_class; + void (*remove_clicked) (GsRepoRow *row); + void (*switch_clicked) (GsRepoRow *row); +}; + +GtkWidget *gs_repo_row_new (GsApp *repo, + gboolean always_allow_enable_disable); +GsApp *gs_repo_row_get_repo (GsRepoRow *row); +void gs_repo_row_mark_busy (GsRepoRow *row); +void gs_repo_row_unmark_busy (GsRepoRow *row); +gboolean gs_repo_row_get_is_busy (GsRepoRow *row); +void gs_repo_row_emit_switch_clicked (GsRepoRow *self); + +G_END_DECLS -- cgit v1.2.3