gstreamer/editor/gsteditorproject.c
Wim Taymans 51cbf22624 This is a megapatch with the following changes:
Original commit message from CVS:
This is a megapatch with the following changes:

- moved the gchar *name to GstObject, removed the ones in GstElement and
GstPad.
- moved the parent handling completely into GstObject. This cause *all* of
the plugins to fail (except those that used gst_pad_get_parent)
- rearanged the XML save handling.
- GstObject now has a class function save/restore_thyself.
- GstObject has a generic method gst_object_save_thyself, this makes it
possible to fire a signal wehever a new object is loaded. This is needed
so we can add XML save hooks.
- GstXML API has changed slightly. You now have to create a GstXML object
first before you can actually load something. This makes it possible to
attach a signal to GstXML whenever an object is loaded. I'm not sure we
will keep this interface.
- GstObject can now print the path_string without knowing about the GstPad and
GstElement types.
- Added gst_bin_get_by_name_recurse_up to lookup an element in the current
element hierarchy.
- added XML namespaces to the saved pipelines the namespace is:
http://gstreamer.net/gst-core/1.0/
namespaces are needed to distinguish user generated XML from the core XML.

Note that the plugins still contain a macro GST_OBJECT_PARENT that will be
replaced with gst_pad_get_parent shortly.
2001-01-29 00:06:02 +00:00

218 lines
5.7 KiB
C

/* Gnome-Streamer
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <gnome.h>
#include <gst/gst.h>
#include <glade/glade.h>
#include "gsteditorproject.h"
#include "gsteditorpalette.h"
#include "gsteditorproperty.h"
#include "gsteditorimage.h"
/* class functions */
static void gst_editor_project_class_init (GstEditorProjectClass *klass);
static void gst_editor_project_init (GstEditorProject *project);
static void gst_editor_project_set_arg (GtkObject *object,GtkArg *arg,guint id);
static void gst_editor_project_get_arg (GtkObject *object,GtkArg *arg,guint id);
enum {
ARG_0,
};
enum {
ELEMENT_ADDED,
ELEMENT_REMOVED,
ELEMENT_CHANGED,
LAST_SIGNAL
};
static GtkObjectClass *parent_class;
static guint gst_editor_project_signals[LAST_SIGNAL] = { 0 };
GtkType gst_editor_project_get_type (void)
{
static GtkType project_type = 0;
if (!project_type) {
static const GtkTypeInfo project_info = {
"GstEditorProject",
sizeof(GstEditorProject),
sizeof(GstEditorProjectClass),
(GtkClassInitFunc)gst_editor_project_class_init,
(GtkObjectInitFunc)gst_editor_project_init,
NULL,
NULL,
(GtkClassInitFunc)NULL,
};
project_type = gtk_type_unique(gtk_object_get_type(),&project_info);
}
return project_type;
}
static void
gst_editor_project_class_init (GstEditorProjectClass *klass)
{
GtkObjectClass *object_class;
object_class = (GtkObjectClass*)klass;
parent_class = gtk_type_class(gtk_object_get_type());
gst_editor_project_signals[ELEMENT_ADDED] =
gtk_signal_new("element_added",GTK_RUN_FIRST,object_class->type,
GTK_SIGNAL_OFFSET(GstEditorProjectClass,element_added),
gtk_marshal_NONE__POINTER,GTK_TYPE_NONE,1,
GST_TYPE_ELEMENT);
gst_editor_project_signals[ELEMENT_REMOVED] =
gtk_signal_new("element_removed",GTK_RUN_FIRST,object_class->type,
GTK_SIGNAL_OFFSET(GstEditorProjectClass,element_removed),
gtk_marshal_NONE__POINTER,GTK_TYPE_NONE,1,
GST_TYPE_ELEMENT);
gst_editor_project_signals[ELEMENT_CHANGED] =
gtk_signal_new("element_changed",GTK_RUN_FIRST,object_class->type,
GTK_SIGNAL_OFFSET(GstEditorProjectClass,element_changed),
gtk_marshal_NONE__POINTER,GTK_TYPE_NONE,1,
GST_TYPE_ELEMENT);
gtk_object_class_add_signals(object_class,gst_editor_project_signals,LAST_SIGNAL);
object_class->set_arg = gst_editor_project_set_arg;
object_class->get_arg = gst_editor_project_get_arg;
}
static void
gst_editor_project_init (GstEditorProject *project)
{
project->toplevelelements = NULL;
}
GstEditorProject*
gst_editor_project_new (void)
{
GstEditorProject *editorproject;
editorproject = GST_EDITOR_PROJECT(gtk_type_new(GST_TYPE_EDITOR_PROJECT));
return editorproject;
}
GstEditorProject *
gst_editor_project_new_from_file (const guchar *fname)
{
GstEditorProject *editorproject;
GstXML *xml;
GList *elements;
g_return_val_if_fail (fname != NULL, NULL);
editorproject = gst_editor_project_new();
xml = gst_xml_new ();
gst_xml_parse_file (xml, fname, NULL);
elements = gst_xml_get_topelements(xml);
while (elements) {
GstElement *element = (GstElement *) elements->data;
gst_editor_project_add_toplevel_element (editorproject, element);
elements = g_list_next (elements);
}
return editorproject;
}
void
gst_editor_project_load (GstEditorProject *project, const guchar *fname)
{
}
void
gst_editor_project_save_as (GstEditorProject *project, const guchar *fname)
{
GList *elements;
g_return_if_fail (fname != NULL);
g_return_if_fail (project != NULL);
elements = project->toplevelelements;
while (elements) {
GstElement *element = (GstElement *) elements->data;
xmlSaveFile (fname, gst_xml_write (element));
elements = g_list_next (elements);
}
}
void
gst_editor_project_add_toplevel_element (GstEditorProject *project,
GstElement *element)
{
g_return_if_fail(project != NULL);
g_return_if_fail(GST_IS_EDITOR_PROJECT(project));
g_return_if_fail(element != NULL);
g_return_if_fail(GST_IS_ELEMENT(element));
project->toplevelelements = g_list_append(project->toplevelelements, element);
gst_element_set_name(element, "new_element");
gtk_signal_emit(GTK_OBJECT(project),gst_editor_project_signals[ELEMENT_ADDED], element);
}
static void
gst_editor_project_set_arg (GtkObject *object, GtkArg *arg, guint id)
{
GstEditorProject *project;
/* get the major types of this object */
project = GST_EDITOR_PROJECT(object);
switch (id) {
default:
g_warning("gsteditorproject: unknown arg!");
break;
}
}
static void
gst_editor_project_get_arg (GtkObject *object, GtkArg *arg, guint id)
{
GstEditorProject *project;
/* get the major types of this object */
project = GST_EDITOR_PROJECT(object);
switch (id) {
default:
arg->type = GTK_TYPE_INVALID;
break;
}
}