From 56294d30a82ec2da6f9ce399740c1ef65a9ddef4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 17:18:46 +0200 Subject: Adding upstream version 3.38.1. Signed-off-by: Daniel Baumann --- src/gs-repo-row.h | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 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..ff2564e --- /dev/null +++ b/src/gs-repo-row.h @@ -0,0 +1,40 @@ +/* -*- 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 (*button_clicked) (GsRepoRow *row); +}; + +GtkWidget *gs_repo_row_new (void); +void gs_repo_row_set_name (GsRepoRow *row, + const gchar *name); +void gs_repo_row_set_comment (GsRepoRow *row, + const gchar *comment); +void gs_repo_row_set_url (GsRepoRow *row, + const gchar *url); +void gs_repo_row_set_repo (GsRepoRow *row, + GsApp *repo); +GsApp *gs_repo_row_get_repo (GsRepoRow *row); +void gs_repo_row_show_details (GsRepoRow *row); +void gs_repo_row_hide_details (GsRepoRow *row); +void gs_repo_row_show_status (GsRepoRow *row); + +G_END_DECLS -- cgit v1.2.3