/usr/include/PackageKit/packagekit-glib2/pk-progress.h is in libpackagekit-glib2-dev 1.0.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2009 Richard Hughes <richard@hughsie.com>
*
* Licensed under the GNU Lesser General Public License Version 2.1
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#if !defined (__PACKAGEKIT_H_INSIDE__) && !defined (PK_COMPILATION)
#error "Only <packagekit.h> can be included directly."
#endif
#ifndef __PK_PROGRESS_H
#define __PK_PROGRESS_H
#include <glib-object.h>
#include <packagekit-glib2/pk-enum.h>
#include <packagekit-glib2/pk-package.h>
#include <packagekit-glib2/pk-item-progress.h>
G_BEGIN_DECLS
#define PK_TYPE_PROGRESS (pk_progress_get_type ())
#define PK_PROGRESS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), PK_TYPE_PROGRESS, PkProgress))
#define PK_PROGRESS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), PK_TYPE_PROGRESS, PkProgressClass))
#define PK_IS_PROGRESS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), PK_TYPE_PROGRESS))
#define PK_IS_PROGRESS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), PK_TYPE_PROGRESS))
#define PK_PROGRESS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), PK_TYPE_PROGRESS, PkProgressClass))
#define PK_PROGRESS_TYPE_ERROR (pk_progress_error_get_type ())
typedef struct _PkProgressPrivate PkProgressPrivate;
typedef struct _PkProgress PkProgress;
typedef struct _PkProgressClass PkProgressClass;
struct _PkProgress
{
GObject parent;
PkProgressPrivate *priv;
};
struct _PkProgressClass
{
GObjectClass parent_class;
/* padding for future expansion */
void (*_pk_reserved1) (void);
void (*_pk_reserved2) (void);
void (*_pk_reserved3) (void);
void (*_pk_reserved4) (void);
void (*_pk_reserved5) (void);
};
GType pk_progress_get_type (void);
PkProgress *pk_progress_new (void);
void pk_progress_test (gpointer user_data);
typedef enum {
PK_PROGRESS_TYPE_PACKAGE_ID,
PK_PROGRESS_TYPE_TRANSACTION_ID,
PK_PROGRESS_TYPE_PERCENTAGE,
PK_PROGRESS_TYPE_ALLOW_CANCEL,
PK_PROGRESS_TYPE_STATUS,
PK_PROGRESS_TYPE_ROLE,
PK_PROGRESS_TYPE_CALLER_ACTIVE,
PK_PROGRESS_TYPE_ELAPSED_TIME,
PK_PROGRESS_TYPE_REMAINING_TIME,
PK_PROGRESS_TYPE_SPEED,
PK_PROGRESS_TYPE_DOWNLOAD_SIZE_REMAINING,
PK_PROGRESS_TYPE_UID,
PK_PROGRESS_TYPE_PACKAGE,
PK_PROGRESS_TYPE_ITEM_PROGRESS,
PK_PROGRESS_TYPE_TRANSACTION_FLAGS,
PK_PROGRESS_TYPE_INVALID
} PkProgressType;
typedef void (*PkProgressCallback) (PkProgress *progress,
PkProgressType type,
gpointer user_data);
gboolean pk_progress_set_package_id (PkProgress *progress,
const gchar *package_id);
gboolean pk_progress_set_item_progress (PkProgress *progress,
PkItemProgress *item_progress);
gboolean pk_progress_set_transaction_id (PkProgress *progress,
const gchar *package_id);
gboolean pk_progress_set_percentage (PkProgress *progress,
gint percentage);
gboolean pk_progress_set_status (PkProgress *progress,
PkStatusEnum status);
gboolean pk_progress_set_role (PkProgress *progress,
PkRoleEnum role);
gboolean pk_progress_set_allow_cancel (PkProgress *progress,
gboolean allow_cancel);
gboolean pk_progress_set_caller_active (PkProgress *progress,
gboolean caller_active);
gboolean pk_progress_set_elapsed_time (PkProgress *progress,
guint elapsed_time);
gboolean pk_progress_set_remaining_time (PkProgress *progress,
guint remaining_time);
gboolean pk_progress_set_speed (PkProgress *progress,
guint speed);
gboolean pk_progress_set_download_size_remaining(PkProgress *progress,
guint64 download_size_remaining);
gboolean pk_progress_set_transaction_flags (PkProgress *progress,
guint64 transaction_flags);
gboolean pk_progress_set_uid (PkProgress *progress,
guint uid);
gboolean pk_progress_set_package (PkProgress *progress,
PkPackage *package);
G_END_DECLS
#endif /* __PK_PROGRESS_H */
|