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