]> Pileus Git - ~andy/gtk/blob - tests/testappchooser.c
stylecontext: Do invalidation on first resize container
[~andy/gtk] / tests / testappchooser.c
1 /* testappchooser.c
2  * Copyright (C) 2010 Red Hat, Inc.
3  * Authors: Cosimo Cecchi
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include "config.h"
20
21 #include <stdlib.h>
22 #include <gtk/gtk.h>
23
24 static GtkWidget *toplevel;
25 static GFile *file;
26 static GtkWidget *grid, *file_l, *open;
27 static GtkWidget *radio_file, *radio_content, *dialog;
28 static GtkWidget *app_chooser_widget;
29 static GtkWidget *def, *recommended, *fallback, *other, *all;
30
31 static void
32 dialog_response (GtkDialog *d,
33                  gint       response_id,
34                  gpointer   user_data)
35 {
36   GAppInfo *app_info;
37   const gchar *name;
38
39   g_print ("Response: %d\n", response_id);
40
41   if (response_id == GTK_RESPONSE_OK)
42     {
43       app_info = gtk_app_chooser_get_app_info (GTK_APP_CHOOSER (d));
44       if (app_info)
45         {
46           name = g_app_info_get_name (app_info);
47           g_print ("Application selected: %s\n", name);
48           g_object_unref (app_info);
49         }
50       else
51         g_print ("No application selected\n");
52     }
53
54   gtk_widget_destroy (GTK_WIDGET (d));
55   dialog = NULL;
56 }
57
58 static void
59 bind_props (void)
60 {
61   g_object_bind_property (def, "active",
62                           app_chooser_widget, "show-default",
63                           G_BINDING_SYNC_CREATE);
64   g_object_bind_property (recommended, "active",
65                           app_chooser_widget, "show-recommended",
66                           G_BINDING_SYNC_CREATE);
67   g_object_bind_property (fallback, "active",
68                           app_chooser_widget, "show-fallback",
69                           G_BINDING_SYNC_CREATE);
70   g_object_bind_property (other, "active",
71                           app_chooser_widget, "show-other",
72                           G_BINDING_SYNC_CREATE);
73   g_object_bind_property (all, "active",
74                           app_chooser_widget, "show-all",
75                           G_BINDING_SYNC_CREATE);
76 }
77
78 static void
79 prepare_dialog (void)
80 {
81   gboolean use_file = FALSE;
82   gchar *content_type = NULL;
83
84   if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (radio_file)))
85     use_file = TRUE;
86   else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (radio_content)))
87     use_file = FALSE;
88
89   if (use_file)
90     {
91       dialog = gtk_app_chooser_dialog_new (GTK_WINDOW (toplevel), 0, file);
92     }
93   else
94     {
95       GFileInfo *info;
96
97       info = g_file_query_info (file,
98                                 G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE,
99                                 0, NULL, NULL);
100       content_type = g_strdup (g_file_info_get_content_type (info));
101
102       g_object_unref (info);
103
104       dialog = gtk_app_chooser_dialog_new_for_content_type (GTK_WINDOW (toplevel),
105                                                             0, content_type);
106     }
107
108   gtk_app_chooser_dialog_set_heading (GTK_APP_CHOOSER_DIALOG (dialog), "Select one already, you <i>fool</i>");
109
110   g_signal_connect (dialog, "response",
111                     G_CALLBACK (dialog_response), NULL);
112
113   g_free (content_type);
114
115   app_chooser_widget = gtk_app_chooser_dialog_get_widget (GTK_APP_CHOOSER_DIALOG (dialog));
116   bind_props ();
117 }
118
119 static void
120 display_dialog (void)
121 {
122   if (dialog == NULL)
123     prepare_dialog ();
124
125   gtk_widget_show (dialog);
126 }
127
128 static void
129 button_clicked (GtkButton *b,
130                 gpointer   user_data)
131 {
132   GtkWidget *w;
133   gchar *path;
134
135   w = gtk_file_chooser_dialog_new ("Select file",
136                                    GTK_WINDOW (toplevel),
137                                    GTK_FILE_CHOOSER_ACTION_OPEN,
138                                    GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
139                                    GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
140                                    NULL);
141
142   gtk_dialog_run (GTK_DIALOG (w));
143   file = gtk_file_chooser_get_file (GTK_FILE_CHOOSER (w));
144   path = g_file_get_path (file);
145   gtk_button_set_label (GTK_BUTTON (file_l), path);
146
147   gtk_widget_destroy (w);
148
149   gtk_widget_set_sensitive (open, TRUE);
150
151   g_free (path);
152 }
153
154 int
155 main (int argc, char **argv)
156 {
157   GtkWidget *w1;
158   gchar *path;
159
160   gtk_init (&argc, &argv);
161
162   toplevel = gtk_window_new (GTK_WINDOW_TOPLEVEL);
163   gtk_container_set_border_width (GTK_CONTAINER (toplevel), 12);
164   grid = gtk_grid_new ();
165
166   w1 = gtk_label_new ("File:");
167   gtk_widget_set_halign (w1, GTK_ALIGN_START);
168   gtk_grid_attach (GTK_GRID (grid),
169                    w1, 0, 0, 1, 1);
170
171   file_l = gtk_button_new ();
172   path = g_build_filename (g_get_current_dir (), "apple-red.png", NULL);
173   file = g_file_new_for_path (path);
174   gtk_button_set_label (GTK_BUTTON (file_l), path);
175   g_free (path);
176
177   gtk_widget_set_halign (file_l, GTK_ALIGN_START);
178   gtk_grid_attach_next_to (GTK_GRID (grid), file_l,
179                            w1, GTK_POS_RIGHT, 3, 1);
180   g_signal_connect (file_l, "clicked",
181                     G_CALLBACK (button_clicked), NULL);
182
183   radio_file = gtk_radio_button_new_with_label (NULL, "Use GFile");
184   radio_content = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (radio_file),
185                                                                "Use content type");
186
187   gtk_grid_attach (GTK_GRID (grid), radio_file,
188                    0, 1, 1, 1);
189   gtk_grid_attach_next_to (GTK_GRID (grid), radio_content,
190                            radio_file, GTK_POS_BOTTOM, 1, 1);
191
192   open = gtk_button_new_with_label ("Trigger App Chooser dialog");
193   gtk_grid_attach_next_to (GTK_GRID (grid), open,
194                            radio_content, GTK_POS_BOTTOM, 1, 1);
195
196   recommended = gtk_check_button_new_with_label ("Show recommended");
197   gtk_grid_attach_next_to (GTK_GRID (grid), recommended,
198                            open, GTK_POS_BOTTOM, 1, 1);
199   g_object_set (recommended, "active", TRUE, NULL);
200
201   fallback = gtk_check_button_new_with_label ("Show fallback");
202   gtk_grid_attach_next_to (GTK_GRID (grid), fallback,
203                            recommended, GTK_POS_RIGHT, 1, 1);
204
205   other = gtk_check_button_new_with_label ("Show other");
206   gtk_grid_attach_next_to (GTK_GRID (grid), other,
207                            fallback, GTK_POS_RIGHT, 1, 1);
208
209   all = gtk_check_button_new_with_label ("Show all");
210   gtk_grid_attach_next_to (GTK_GRID (grid), all,
211                            other, GTK_POS_RIGHT, 1, 1);
212
213   def = gtk_check_button_new_with_label ("Show default");
214   gtk_grid_attach_next_to (GTK_GRID (grid), def,
215                            all, GTK_POS_RIGHT, 1, 1);
216
217   g_object_set (recommended, "active", TRUE, NULL);
218   prepare_dialog ();
219   g_signal_connect (open, "clicked",
220                     G_CALLBACK (display_dialog), NULL);
221
222   gtk_container_add (GTK_CONTAINER (toplevel), grid);
223
224   gtk_widget_show_all (toplevel);
225   g_signal_connect (toplevel, "delete-event",
226                     G_CALLBACK (gtk_main_quit), NULL);
227
228   gtk_main ();
229
230   return EXIT_SUCCESS;
231 }