Files
sysprof/src/libsysprof/sysprof-document-task-private.h
Christian Hergert 50d556b13e sysprof: add SysprofDocumentTask abstraction
This provides a task abstraction to SysprofDocumentLoader so that we can
elevate information about tasks to the user interface. It also moves the
spinner to a menu button w/ popover to display those tasks.
2024-10-10 17:02:06 -07:00

54 lines
2.1 KiB
C

/*
* sysprof-document-task-private.h
*
* Copyright 2024 Christian Hergert <chergert@redhat.com>
*
* 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 <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#pragma once
#include <gio/gio.h>
#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