From 10256b2ff6a49d5283ca281ea0068e1acbe7686e Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sun, 8 Aug 2004 15:33:26 +0000 Subject: R lib/widgets/ephy-ellipsizing-label.c: R 2004-08-08 Christian Persch * lib/ephy-marshal.list: * lib/widgets/Makefile.am: R lib/widgets/ephy-ellipsizing-label.c: R lib/widgets/ephy-ellipsizing-label.h: A lib/widgets/ephy-label.c: A lib/widgets/ephy-label.h: * src/ephy-notebook.c: (sync_label), (build_tab_label): * src/pdm-dialog.c: (show_cookies_properties): * src/prefs-dialog.c: (create_download_path_label), (download_path_response_cb): Kill our ellipsizing label implementation, and import GtkLabel into our prefix. * configure.in: Depend on pango 1.5.1 for ellipsisation support. --- lib/widgets/ephy-ellipsizing-label.h | 74 ------------------------------------ 1 file changed, 74 deletions(-) delete mode 100644 lib/widgets/ephy-ellipsizing-label.h (limited to 'lib/widgets/ephy-ellipsizing-label.h') diff --git a/lib/widgets/ephy-ellipsizing-label.h b/lib/widgets/ephy-ellipsizing-label.h deleted file mode 100644 index 1ea2121e6..000000000 --- a/lib/widgets/ephy-ellipsizing-label.h +++ /dev/null @@ -1,74 +0,0 @@ -/* eel-ellipsizing-label.h: Subclass of GtkLabel that ellipsizes the text. - - Copyright (C) 2001 Eazel, 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: John Sullivan , - - $Id$ - */ - -#ifndef EPHY_ELLIPSIZING_LABEL_H -#define EPHY_ELLIPSIZING_LABEL_H - -#include - -#define EPHY_TYPE_ELLIPSIZING_LABEL (ephy_ellipsizing_label_get_type ()) -#define EPHY_ELLIPSIZING_LABEL(obj) (GTK_CHECK_CAST ((obj), EPHY_TYPE_ELLIPSIZING_LABEL, EphyEllipsizingLabel)) -#define EPHY_ELLIPSIZING_LABEL_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), EPHY_TYPE_ELLIPSIZING_LABEL, EphyEllipsizingLabelClass)) -#define EPHY_IS_ELLIPSIZING_LABEL(obj) (GTK_CHECK_TYPE ((obj), EPHY_TYPE_ELLIPSIZING_LABEL)) -#define EPHY_IS_ELLIPSIZING_LABEL_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), EPHY_TYPE_ELLIPSIZING_LABEL)) - -typedef struct EphyEllipsizingLabelPrivate EphyEllipsizingLabelPrivate; - -typedef enum -{ - EPHY_ELLIPSIZE_NONE, - EPHY_ELLIPSIZE_START, - EPHY_ELLIPSIZE_MIDDLE, - EPHY_ELLIPSIZE_END -} EphyEllipsizeMode; - -typedef struct -{ - GtkLabel parent; - - /*< private >*/ - EphyEllipsizingLabelPrivate *priv; -} EphyEllipsizingLabel; - -typedef struct -{ - GtkLabelClass parent_class; -} EphyEllipsizingLabelClass; - -GType ephy_ellipsizing_label_get_type (void); - -GtkWidget *ephy_ellipsizing_label_new (const char *string); - -void ephy_ellipsizing_label_set_mode (EphyEllipsizingLabel *label, - EphyEllipsizeMode mode); - -void ephy_ellipsizing_label_set_text (EphyEllipsizingLabel *label, - const char *string); - -void ephy_ellipsizing_label_set_markup (EphyEllipsizingLabel *label, - const char *string); - -G_END_DECLS - -#endif /* EPHY_ELLIPSIZING_LABEL_H */ -- cgit v1.2.3