blob: 94a6ea1a769dba78afaf5493153d0470538ec109 (
plain)
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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
* vi:set noexpandtab tabstop=8 shiftwidth=8:
*
* Copyright (C) 2016-2018 Richard Hughes <richard@hughsie.com>
* Copyright (C) 2019 Kalev Lember <klember@redhat.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#pragma once
#include <glib-object.h>
#include <gnome-software.h>
#include <packagekit-glib2/packagekit.h>
G_BEGIN_DECLS
#define GS_TYPE_PACKAGEKIT_HELPER (gs_packagekit_helper_get_type ())
G_DECLARE_FINAL_TYPE (GsPackagekitHelper, gs_packagekit_helper, GS, PACKAGEKIT_HELPER, GObject)
GsPackagekitHelper *gs_packagekit_helper_new (GsPlugin *plugin);
GsPlugin *gs_packagekit_helper_get_plugin (GsPackagekitHelper *self);
void gs_packagekit_helper_add_app (GsPackagekitHelper *self,
GsApp *app);
void gs_packagekit_helper_set_progress_app (GsPackagekitHelper *self,
GsApp *progress_app);
GsApp *gs_packagekit_helper_get_app_by_id (GsPackagekitHelper *self,
const gchar *package_id);
void gs_packagekit_helper_cb (PkProgress *progress,
PkProgressType type,
gpointer user_data);
G_END_DECLS
|