/*************************************************************************** * brasero-layout-object.c * * dim oct 15 17:15:58 2006 * Copyright 2006 Philippe Rouquier * bonfire-app@wanadoo.fr ***************************************************************************/ /* * Brasero is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Brasero 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 General Public License * along with this program; if not, write to: * The Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301, USA. */ #include "brasero-layout-object.h" static void brasero_layout_object_base_init (gpointer g_class); GType brasero_layout_object_get_type() { static GType type = 0; if(type == 0) { static const GTypeInfo our_info = { sizeof (BraseroLayoutObjectIFace), brasero_layout_object_base_init, NULL, NULL, NULL, NULL, 0, 0, NULL, }; type = g_type_register_static (G_TYPE_INTERFACE, "BraseroLayoutObject", &our_info, 0); g_type_interface_add_prerequisite (type, G_TYPE_OBJECT); } return type; } static void brasero_layout_object_base_init (gpointer g_class) { static gboolean initialized = FALSE; if (initialized) return; initialized = TRUE; } void brasero_layout_object_get_proportion (BraseroLayoutObject *self, gint *header, gint *center, gint *footer) { BraseroLayoutObjectIFace *iface; g_return_if_fail (BRASERO_IS_LAYOUT_OBJECT (self)); g_return_if_fail (header != NULL && center != NULL && footer != NULL); iface = BRASERO_LAYOUT_OBJECT_GET_IFACE (self); if (iface->get_proportion) (* iface->get_proportion) (self, header, center, footer); } void brasero_layout_object_set_context (BraseroLayoutObject *self, BraseroLayoutType type) { BraseroLayoutObjectIFace *iface; g_return_if_fail (BRASERO_IS_LAYOUT_OBJECT (self)); iface = BRASERO_LAYOUT_OBJECT_GET_IFACE (self); if (iface->set_context) (* iface->set_context) (self, type); }