Home | History | Annotate | Download | only in layout

Lines Matching refs:fileselection

78   GtkFileSelection *fileselection = GTK_FILE_SELECTION(data);
79 GtkWidget *app = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(fileselection), "app"));
81 gchar *fileName = g_strdup(gtk_file_selection_get_filename(fileselection));
84 gtk_widget_destroy(GTK_WIDGET(fileselection));
112 GtkWidget *fileselection;
116 fileselection =
119 gtk_object_set_data(GTK_OBJECT(fileselection), "app", app);
122 GTK_FILE_SELECTION(fileselection)->ok_button;
125 GTK_FILE_SELECTION(fileselection)->cancel_button;
127 gtk_signal_connect(GTK_OBJECT(fileselection), "destroy",
131 GTK_SIGNAL_FUNC(openOK), fileselection);
134 GTK_SIGNAL_FUNC(gtk_widget_destroy), GTK_OBJECT(fileselection));
136 gtk_window_set_modal(GTK_WINDOW(fileselection), TRUE);
137 gtk_widget_show(fileselection);