widget-factory: Add a file chooser
authorMatthias Clasen <mclasen@redhat.com>
Fri, 9 Sep 2022 18:28:08 +0000 (14:28 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 9 Sep 2022 18:28:08 +0000 (14:28 -0400)
We don't have a readily accessible file chooser
in our demo apps. Fix that by making the Open
menu item on page 2 bring up a file chooser.

demos/widget-factory/widget-factory.c

index 7e30b8b9e8bec5cf07ec9e4d333ba4a56df96abc..4ec907d5311438e296f35da8ebed3fd17f507416 100644 (file)
@@ -213,6 +213,31 @@ activate_background (GSimpleAction *action,
   populate_flowbox (flowbox);
 }
 
+static void
+file_chooser_response (GtkNativeDialog *self,
+                       int              response)
+{
+  gtk_native_dialog_destroy (self);
+}
+
+static void
+activate_open_file (GSimpleAction *action,
+                    GVariant      *parameter,
+                    gpointer       user_data)
+{
+  GtkFileChooserNative *chooser;
+
+  chooser = gtk_file_chooser_native_new ("Open file",
+                                         NULL,
+                                         GTK_FILE_CHOOSER_ACTION_OPEN,
+                                         "Open",
+                                         "Cancel");
+
+  g_signal_connect (chooser, "response", G_CALLBACK (file_chooser_response), NULL);
+
+  gtk_native_dialog_show (GTK_NATIVE_DIALOG (chooser));
+}
+
 static void
 activate_open (GSimpleAction *action,
                GVariant      *parameter,
@@ -2451,7 +2476,7 @@ main (int argc, char *argv[])
     { "share", activate_action, NULL, NULL, NULL },
     { "labels", activate_action, NULL, NULL, NULL },
     { "new", activate_action, NULL, NULL, NULL },
-    { "open", activate_action, NULL, NULL, NULL },
+    { "open", activate_open_file, NULL, NULL, NULL },
     { "open-in", activate_action, NULL, NULL, NULL },
     { "open-tab", activate_action, NULL, NULL, NULL },
     { "open-window", activate_action, NULL, NULL, NULL },