diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-05-25 10:54:35 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-05-25 10:54:35 +0800 |
commit | 1550b3384b3837d8b7aa6a7f50df179d98cdd265 (patch) | |
tree | 8fcbcc47eca75931a889fc53d404c81ab25e7c3f /e-util/e-paned.h | |
parent | a93167a77225fa4756852cec1e3a54663ce991e3 (diff) | |
download | gsoc2013-evolution-1550b3384b3837d8b7aa6a7f50df179d98cdd265.tar gsoc2013-evolution-1550b3384b3837d8b7aa6a7f50df179d98cdd265.tar.gz gsoc2013-evolution-1550b3384b3837d8b7aa6a7f50df179d98cdd265.tar.bz2 gsoc2013-evolution-1550b3384b3837d8b7aa6a7f50df179d98cdd265.tar.lz gsoc2013-evolution-1550b3384b3837d8b7aa6a7f50df179d98cdd265.tar.xz gsoc2013-evolution-1550b3384b3837d8b7aa6a7f50df179d98cdd265.tar.zst gsoc2013-evolution-1550b3384b3837d8b7aa6a7f50df179d98cdd265.zip |
Removed.
2000-05-24 Christopher James Lahey <clahey@helixcode.com>
* e-paned.c, e-paned.h: Removed.
svn path=/trunk/; revision=3196
Diffstat (limited to 'e-util/e-paned.h')
-rw-r--r-- | e-util/e-paned.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/e-util/e-paned.h b/e-util/e-paned.h deleted file mode 100644 index df981ca7f8..0000000000 --- a/e-util/e-paned.h +++ /dev/null @@ -1,45 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ - -#ifndef __E_PANED_H__ -#define __E_PANED_H__ - -#include <gdk/gdk.h> -#include <gtk/gtkframe.h> -#include <gtk/gtkhpaned.h> -#include <gtk/gtkvpaned.h> - - -#define E_PANED_TYPE (e_paned_get_type ()) -#define E_PANED(obj) (GTK_CHECK_CAST ((obj), E_PANED_TYPE, EPaned)) -#define E_PANED_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_PANED_TYPE, EPanedClass)) -#define E_IS_PANED(obj) (GTK_CHECK_TYPE ((obj), E_PANED_TYPE)) -#define E_IS_PANED_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), E_PANED_TYPE)) - - -typedef struct _EPaned EPaned; -typedef struct _EPanedClass EPanedClass; - - -struct _EPaned -{ - GtkFrame container; - - GList *children; - GtkPaned *toplevel_paned; - gboolean horizontal; -}; - -struct _EPanedClass -{ - GtkFrameClass parent_class; -}; - -void e_paned_insert (EPaned *paned, int pos, GtkWidget *child, - int requested_size); -void e_paned_remove (EPaned *paned, GtkWidget *child); - -GtkWidget *e_paned_new (gboolean horizontal); -void e_paned_construct (EPaned *e_paned, gboolean horizontal); -GtkType e_paned_get_type (void); - -#endif /* __E_PANED_H__ */ |