diff options
-rw-r--r-- | eel/Makefile.am | 2 | ||||
-rw-r--r-- | eel/eel-background-box.c | 70 | ||||
-rw-r--r-- | eel/eel-background-box.h | 67 |
3 files changed, 0 insertions, 139 deletions
diff --git a/eel/Makefile.am b/eel/Makefile.am index b4e7d2548..0b3f045b5 100644 --- a/eel/Makefile.am +++ b/eel/Makefile.am @@ -32,7 +32,6 @@ libeel_2_la_SOURCES = \ eel-art-extensions.c \ eel-art-gtk-extensions.c \ eel-background.c \ - eel-background-box.c \ eel-canvas.c \ eel-canvas-util.c \ eel-canvas-rect-ellipse.c \ @@ -67,7 +66,6 @@ eel_headers = \ eel-art-extensions.h \ eel-art-gtk-extensions.h \ eel-background.h \ - eel-background-box.h \ eel-canvas.h \ eel-canvas-util.h \ eel-canvas-rect-ellipse.h \ diff --git a/eel/eel-background-box.c b/eel/eel-background-box.c deleted file mode 100644 index 09fbe37c0..000000000 --- a/eel/eel-background-box.c +++ /dev/null @@ -1,70 +0,0 @@ -/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ - -/* eel-background-box.c - an event box that renders an eel background - - Copyright (C) 2002 Sun Microsystems, Inc. - - The Gnome 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. - - The Gnome 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 the Gnome Library; see the file COPYING.LIB. If not, - write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. - - Author: Dave Camp <dave@ximian.com> -*/ - -#include <config.h> -#include "eel-background-box.h" - -#include "eel-gtk-macros.h" -#include "eel-background.h" - -static void eel_background_box_class_init (EelBackgroundBoxClass *background_box_class); -static void eel_background_box_init (EelBackgroundBox *background); - -EEL_CLASS_BOILERPLATE (EelBackgroundBox, eel_background_box, GTK_TYPE_EVENT_BOX) - -static gboolean -eel_background_box_expose_event (GtkWidget *widget, - GdkEventExpose *event) -{ - eel_background_expose (widget, event); - - gtk_container_propagate_expose (GTK_CONTAINER (widget), - gtk_bin_get_child (GTK_BIN (widget)), - event); - - return TRUE; -} - -static void -eel_background_box_class_init (EelBackgroundBoxClass *klass) -{ - GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); - - widget_class->expose_event = eel_background_box_expose_event; -} - -static void -eel_background_box_init (EelBackgroundBox *box) -{ -} - -GtkWidget* -eel_background_box_new (void) -{ - EelBackgroundBox *background_box; - - background_box = EEL_BACKGROUND_BOX (gtk_widget_new (eel_background_box_get_type (), NULL)); - - return GTK_WIDGET (background_box); -} diff --git a/eel/eel-background-box.h b/eel/eel-background-box.h deleted file mode 100644 index 3f627bc35..000000000 --- a/eel/eel-background-box.h +++ /dev/null @@ -1,67 +0,0 @@ -/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ - -/* eel-background-box.c - an event box that renders an eel background - - Copyright (C) 2002 Sun Microsystems, Inc. - - The Gnome 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. - - The Gnome 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 the Gnome Library; see the file COPYING.LIB. If not, - write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. - - Author: Dave Camp <dave@ximian.com> -*/ - -#ifndef EEL_BACKGROUND_BOX_H -#define EEL_BACKGROUND_BOX_H - -#include <glib.h> -#include <gtk/gtk.h> - -G_BEGIN_DECLS - -#define EEL_TYPE_BACKGROUND_BOX eel_background_box_get_type() -#define EEL_BACKGROUND_BOX(obj) \ - (G_TYPE_CHECK_INSTANCE_CAST ((obj), EEL_TYPE_BACKGROUND_BOX, EelBackgroundBox)) -#define EEL_BACKGROUND_BOX_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_CAST ((klass), EEL_TYPE_BACKGROUND_BOX, EelBackgroundBoxClass)) -#define EEL_IS_BACKGROUND_BOX(obj) \ - (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EEL_TYPE_BACKGROUND_BOX)) -#define EEL_IS_BACKGROUND_BOX_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_TYPE ((klass), EEL_TYPE_BACKGROUND_BOX)) -#define EEL_BACKGROUND_BOX_GET_CLASS(obj) \ - (G_TYPE_INSTANCE_GET_CLASS ((obj), EEL_TYPE_BACKGROUND_BOX, EelBackgroundBoxClass)) - -typedef struct EelBackgroundBox EelBackgroundBox; -typedef struct EelBackgroundBoxClass EelBackgroundBoxClass; -typedef struct EelBackgroundBoxDetails EelBackgroundBoxDetails; - -struct EelBackgroundBox -{ - /* Superclass */ - GtkEventBox event_box; -}; - -struct EelBackgroundBoxClass -{ - GtkEventBoxClass parent_class; -}; - -GType eel_background_box_get_type (void); -GtkWidget *eel_background_box_new (void); - -G_END_DECLS - -#endif /* EEL_BACKGROUND_TABLE_H */ - - |