summaryrefslogtreecommitdiffstats
path: root/src/nautilus-app-chooser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nautilus-app-chooser.h')
-rw-r--r--src/nautilus-app-chooser.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/nautilus-app-chooser.h b/src/nautilus-app-chooser.h
new file mode 100644
index 0000000..3131f49
--- /dev/null
+++ b/src/nautilus-app-chooser.h
@@ -0,0 +1,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