diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-08 23:33:26 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-08 23:33:26 +0800 |
commit | 10256b2ff6a49d5283ca281ea0068e1acbe7686e (patch) | |
tree | d6738bead4c91e36a16a2a0e325749d216711cfe /lib/widgets/ephy-ellipsizing-label.h | |
parent | d368e97a37dbd9ed2163f0a446fa3723ed57c732 (diff) | |
download | gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.tar gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.tar.gz gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.tar.bz2 gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.tar.lz gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.tar.xz gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.tar.zst gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.zip |
R lib/widgets/ephy-ellipsizing-label.c: R
2004-08-08 Christian Persch <chpe@cvs.gnome.org>
* 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.
Diffstat (limited to 'lib/widgets/ephy-ellipsizing-label.h')
-rw-r--r-- | lib/widgets/ephy-ellipsizing-label.h | 74 |
1 files changed, 0 insertions, 74 deletions
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 <sullivan@eazel.com>, - - $Id$ - */ - -#ifndef EPHY_ELLIPSIZING_LABEL_H -#define EPHY_ELLIPSIZING_LABEL_H - -#include <gtk/gtklabel.h> - -#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 */ |