[gst-devel] Status of CVS version?
Steve Brown
sbrown at cortland.com
Tue Apr 24 22:34:13 CEST 2001
Wim Taymans wrote:
> On 24 Apr 2001 11:11:18 -0700, Steve Brown wrote:
> > BTW: On reloading the xml file, the disksrc/location value gets reloaded,
> > but not displayed and the pipeline name gets lost. I'll try to figure out
> > why.
> I would suspect parts of code are missing to implement proper loading of
> xml files.
>
> wim
Wim,
I think I found some of it. I'll look for some more.
Steve
diff -u -r1.10 gsteditorproperty.c
--- editor/gsteditorproperty.c 2001/04/14 18:56:35 1.10
+++ editor/gsteditorproperty.c 2001/04/24 20:23:48
@@ -658,9 +658,17 @@
gtk_option_menu_set_menu(GTK_OPTION_MENU(entry), menu);
}
else if (arg->type == GST_TYPE_FILENAME) {
+ gchar *fileentry;
+ GtkWidget *gentry;
arg_data *fs = g_new0(arg_data, 1);
entry = gnome_file_entry_new(NULL, NULL);
+ fileentry = GTK_VALUE_STRING(*arg);
+ if (fileentry) {
+// gnome_file_entry_set_filename(GNOME_FILE_ENTRY(entry), fileentry); // await new version of gnome
+ gentry = gnome_file_entry_gtk_entry(entry);
+ gtk_entry_set_text(GTK_ENTRY(gentry), fileentry);
+ }
fs->element = element;
fs->arg = arg;
More information about the gstreamer-devel
mailing list