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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
* vi:set noexpandtab tabstop=8 shiftwidth=8:
*
* Copyright (C) 2013 Richard Hughes <richard@hughsie.com>
* Copyright (C) 2015-2017 Kalev Lember <klember@redhat.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#pragma once
#include "gs-page.h"
G_BEGIN_DECLS
#define GS_TYPE_EXTRAS_PAGE (gs_extras_page_get_type ())
G_DECLARE_FINAL_TYPE (GsExtrasPage, gs_extras_page, GS, EXTRAS_PAGE, GsPage)
typedef enum {
GS_EXTRAS_PAGE_MODE_UNKNOWN,
GS_EXTRAS_PAGE_MODE_INSTALL_PACKAGE_FILES,
GS_EXTRAS_PAGE_MODE_INSTALL_PROVIDE_FILES,
GS_EXTRAS_PAGE_MODE_INSTALL_PACKAGE_NAMES,
GS_EXTRAS_PAGE_MODE_INSTALL_MIME_TYPES,
GS_EXTRAS_PAGE_MODE_INSTALL_FONTCONFIG_RESOURCES,
GS_EXTRAS_PAGE_MODE_INSTALL_GSTREAMER_RESOURCES,
GS_EXTRAS_PAGE_MODE_INSTALL_PLASMA_RESOURCES,
GS_EXTRAS_PAGE_MODE_INSTALL_PRINTER_DRIVERS,
GS_EXTRAS_PAGE_MODE_LAST
} GsExtrasPageMode;
const gchar *gs_extras_page_mode_to_string (GsExtrasPageMode mode);
GsExtrasPage *gs_extras_page_new (void);
void gs_extras_page_search (GsExtrasPage *self,
const gchar *mode,
gchar **resources,
const gchar *desktop_id,
const gchar *ident);
G_END_DECLS
|