summaryrefslogtreecommitdiffstats
path: root/src/nautilus-app-chooser.h
blob: 3131f49359e8345b66fe13c2ef4fcc96147f89ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (C) 2022 António Fernandes <antoniof@gnome.org>
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

#pragma once

#include <gtk/gtk.h>

G_BEGIN_DECLS

#define NAUTILUS_TYPE_APP_CHOOSER (nautilus_app_chooser_get_type())

G_DECLARE_FINAL_TYPE (NautilusAppChooser, nautilus_app_chooser, NAUTILUS, APP_CHOOSER, GtkDialog)

NautilusAppChooser *nautilus_app_chooser_new (GList     *files,
                                              GtkWindow *parent_window);

GAppInfo           *nautilus_app_chooser_get_app_info (NautilusAppChooser *self);

G_END_DECLS