2017-05-20 22:21:14 +02:00
|
|
|
/* GIO - GLib Input, Output and Streaming Library
|
|
|
|
*
|
|
|
|
* Copyright 2017 Red Hat, Inc.
|
|
|
|
*
|
2022-05-18 10:12:45 +02:00
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
*
|
2017-05-20 22:21:14 +02:00
|
|
|
* 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
|
2017-06-02 12:46:13 +02:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2017-05-20 22:21:14 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2017-06-02 12:46:13 +02:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2017-05-20 22:21:14 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __G_OPEN_URI_PORTAL_H__
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <gio/gio.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2024-02-16 10:43:25 +01:00
|
|
|
gboolean g_openuri_portal_open_file (GFile *file,
|
|
|
|
const char *parent_window,
|
2024-02-16 11:19:56 +01:00
|
|
|
const char *startup_id,
|
2024-02-16 10:43:25 +01:00
|
|
|
GError **error);
|
|
|
|
|
|
|
|
void g_openuri_portal_open_file_async (GFile *file,
|
|
|
|
const char *parent_window,
|
2024-02-16 11:19:56 +01:00
|
|
|
const char *startup_id,
|
2024-02-16 10:43:25 +01:00
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
gboolean g_openuri_portal_open_file_finish (GAsyncResult *result,
|
|
|
|
GError **error);
|
2017-05-20 22:21:14 +02:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif
|