/* * sysprof-document-task-private.h * * Copyright 2024 Christian Hergert * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * SPDX-License-Identifier: GPL-3.0-or-later */ #pragma once #include #include "sysprof-document-loader.h" #include "sysprof-document-task.h" G_BEGIN_DECLS typedef struct _SysprofDocumentTask SysprofDocumentTaskScope; struct _SysprofDocumentTaskClass { GObjectClass parent_class; void (*cancel) (SysprofDocumentTask *self); }; GCancellable *_sysprof_document_task_get_cancellable (SysprofDocumentTask *self); void _sysprof_document_task_set_title (SysprofDocumentTask *self, const char *title); void _sysprof_document_task_take_message (SysprofDocumentTask *self, char *message); void _sysprof_document_task_set_progress (SysprofDocumentTask *self, double progress); SysprofDocumentTaskScope *_sysprof_document_task_register (SysprofDocumentTask *self, SysprofDocumentLoader *loader); void _sysprof_document_task_unregister (SysprofDocumentTask *self); G_DEFINE_AUTOPTR_CLEANUP_FUNC (SysprofDocumentTaskScope, _sysprof_document_task_unregister) G_END_DECLS