mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
f4a635c8dc
Original commit message from CVS: Pending editor changes. fixes for autoplug of elementary MPEG1 video streams make sure mp3 types get compiled videosink changes for xml loading
63 lines
2 KiB
C
63 lines
2 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.
|
|
*/
|
|
|
|
|
|
#ifndef __GST_EDITOR_PALETTE_H__
|
|
#define __GST_EDITOR_PALETTE_H__
|
|
|
|
#include <gst/gst.h>
|
|
#include <glade/glade.h>
|
|
#include "gsteditor.h"
|
|
|
|
#define GST_TYPE_EDITOR_PALETTE \
|
|
(gst_editor_palette_get_type())
|
|
#define GST_EDITOR_PALETTE(obj) \
|
|
(GTK_CHECK_CAST((obj),GST_TYPE_EDITOR_PALETTE,GstEditorPalette))
|
|
#define GST_EDITOR_PALETTE_CLASS(klass) \
|
|
(GTK_CHECK_CLASS_CAST((klass),GST_TYPE_EDITOR_PALETTE,GstEditorPalette))
|
|
#define GST_IS_EDITOR_PALETTE(obj) \
|
|
(GTK_CHECK_TYPE((obj),GST_TYPE_EDITOR_PALETTE))
|
|
#define GST_IS_EDITOR_PALETTE_CLASS(obj) \
|
|
(GTK_CHECK_CLASS_TYPE((klass),GST_TYPE_EDITOR_PALETTE))
|
|
|
|
typedef struct _GstEditorPalette GstEditorPalette;
|
|
typedef struct _GstEditorPaletteClass GstEditorPaletteClass;
|
|
|
|
struct _GstEditorPalette {
|
|
GtkObject object;
|
|
|
|
GladeXML *xml;
|
|
GtkWidget *table;
|
|
GtkTooltips *tooltips;
|
|
};
|
|
|
|
struct _GstEditorPaletteClass {
|
|
GtkObjectClass parent_class;
|
|
|
|
void (*element_selected) (GstEditorPalette *palette,
|
|
GstElementFactory *factory);
|
|
void (*in_selection_mode) (GstEditorPalette *palette,
|
|
GstEditorElement *element);
|
|
};
|
|
|
|
GtkType gst_editor_palette_get_type();
|
|
GstEditorPalette *gst_editor_palette_new();
|
|
|
|
|
|
#endif /* __GST_EDITOR_PALETTE_H__ */
|