/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * Copyright (C) 2009 Richard Hughes * * 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 can be included directly." #endif #ifndef __PK_UPDATE_DETAIL_H #define __PK_UPDATE_DETAIL_H #include #include #include G_BEGIN_DECLS #define PK_TYPE_UPDATE_DETAIL (pk_update_detail_get_type ()) #define PK_UPDATE_DETAIL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), PK_TYPE_UPDATE_DETAIL, PkUpdateDetail)) #define PK_UPDATE_DETAIL_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), PK_TYPE_UPDATE_DETAIL, PkUpdateDetailClass)) #define PK_IS_UPDATE_DETAIL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), PK_TYPE_UPDATE_DETAIL)) #define PK_IS_UPDATE_DETAIL_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), PK_TYPE_UPDATE_DETAIL)) #define PK_UPDATE_DETAIL_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), PK_TYPE_UPDATE_DETAIL, PkUpdateDetailClass)) typedef struct _PkUpdateDetailPrivate PkUpdateDetailPrivate; typedef struct _PkUpdateDetail PkUpdateDetail; typedef struct _PkUpdateDetailClass PkUpdateDetailClass; #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC G_DEFINE_AUTOPTR_CLEANUP_FUNC(PkUpdateDetail, g_object_unref) #endif struct _PkUpdateDetail { PkSource parent; PkUpdateDetailPrivate *priv; }; struct _PkUpdateDetailClass { PkSourceClass 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_update_detail_get_type (void); PkUpdateDetail *pk_update_detail_new (void); const gchar *pk_update_detail_get_package_id (PkUpdateDetail *update_detail); gchar **pk_update_detail_get_updates (PkUpdateDetail *update_detail); gchar **pk_update_detail_get_obsoletes (PkUpdateDetail *update_detail); gchar **pk_update_detail_get_vendor_urls (PkUpdateDetail *update_detail); gchar **pk_update_detail_get_bugzilla_urls (PkUpdateDetail *update_detail); gchar **pk_update_detail_get_cve_urls (PkUpdateDetail *update_detail); PkRestartEnum pk_update_detail_get_restart (PkUpdateDetail *update_detail); const gchar *pk_update_detail_get_update_text (PkUpdateDetail *update_detail); const gchar *pk_update_detail_get_changelog (PkUpdateDetail *update_detail); PkUpdateStateEnum pk_update_detail_get_state (PkUpdateDetail *update_detail); const gchar *pk_update_detail_get_issued (PkUpdateDetail *update_detail); const gchar *pk_update_detail_get_updated (PkUpdateDetail *update_detail); G_END_DECLS #endif /* __PK_UPDATE_DETAIL_H */