blob: 1c04a7b641e0ceb9fef69b25fb6d84ba1f45aaa1 (
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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
* vi:set noexpandtab tabstop=8 shiftwidth=8:
*
* Copyright (C) 2013 Matthias Clasen <mclasen@redhat.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#pragma once
#include <adwaita.h>
#include "gnome-software-private.h"
#include "gs-debug.h"
#define GS_APPLICATION_TYPE (gs_application_get_type ())
G_DECLARE_FINAL_TYPE (GsApplication, gs_application, GS, APPLICATION, AdwApplication)
GsApplication *gs_application_new (GsDebug *debug);
gboolean gs_application_has_active_window (GsApplication *application);
void gs_application_emit_install_resources_done
(GsApplication *application,
const gchar *ident,
const GError *op_error);
void gs_application_send_notification (GsApplication *self,
const gchar *notification_id,
GNotification *notification,
guint timeout_minutes);
void gs_application_withdraw_notification (GsApplication *self,
const gchar *notification_id);
|