summaryrefslogtreecommitdiffstats
path: root/plugins/packagekit/gs-packagekit-task.h
blob: ff4bcc60f56cc010721892ab04275ef1fecacce3 (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
36
37
38
/* -*- 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 <glib-object.h>
#include <gnome-software.h>
#include <packagekit-glib2/packagekit.h>

#include "gs-packagekit-helper.h"

G_BEGIN_DECLS

#define GS_TYPE_PACKAGEKIT_TASK (gs_packagekit_task_get_type ())

G_DECLARE_DERIVABLE_TYPE (GsPackagekitTask, gs_packagekit_task, GS, PACKAGEKIT_TASK, PkTask)

struct _GsPackagekitTaskClass
{
	PkTaskClass parent_class;
};

PkTask		*gs_packagekit_task_new		(GsPlugin		*plugin);
void		 gs_packagekit_task_setup	(GsPackagekitTask	*task,
						 GsPluginAction		 action,
						 gboolean		 interactive);
GsPluginAction	 gs_packagekit_task_get_action	(GsPackagekitTask	*task);
void		 gs_packagekit_task_take_helper	(GsPackagekitTask	*task,
						 GsPackagekitHelper	*helper);
GsPackagekitHelper *
		 gs_packagekit_task_get_helper	(GsPackagekitTask	*task);

G_END_DECLS