aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-url-entry.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-24 06:47:34 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-24 07:32:40 +0800
commitd2bf13d734424b12f3a92791624aa637b11c8500 (patch)
tree032675c74bd67ff8867cfed81ee6a5531683a308 /e-util/e-url-entry.h
parentd9126cd9470657460f623d55bb558a6868700c7e (diff)
downloadgsoc2013-evolution-d2bf13d734424b12f3a92791624aa637b11c8500.tar
gsoc2013-evolution-d2bf13d734424b12f3a92791624aa637b11c8500.tar.gz
gsoc2013-evolution-d2bf13d734424b12f3a92791624aa637b11c8500.tar.bz2
gsoc2013-evolution-d2bf13d734424b12f3a92791624aa637b11c8500.tar.lz
gsoc2013-evolution-d2bf13d734424b12f3a92791624aa637b11c8500.tar.xz
gsoc2013-evolution-d2bf13d734424b12f3a92791624aa637b11c8500.tar.zst
gsoc2013-evolution-d2bf13d734424b12f3a92791624aa637b11c8500.zip
EUrlEntry: Replace button with clickable inline icon.
Replace the big, bulky "open URL" button with a clickable icon directly in the text entry field. This saves precious vertical space, especially in the contact editor. Also remove e_url_entry_get_entry() since EUrlEntry now IS a GtkEntry.
Diffstat (limited to 'e-util/e-url-entry.h')
-rw-r--r--e-util/e-url-entry.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/e-util/e-url-entry.h b/e-util/e-url-entry.h
index 6751f07755..50136ec110 100644
--- a/e-util/e-url-entry.h
+++ b/e-util/e-url-entry.h
@@ -51,17 +51,16 @@ typedef struct _EUrlEntryClass EUrlEntryClass;
typedef struct _EUrlEntryPrivate EUrlEntryPrivate;
struct _EUrlEntry {
- GtkBox parent;
+ GtkEntry parent;
EUrlEntryPrivate *priv;
};
struct _EUrlEntryClass {
- GtkBoxClass parent_class;
+ GtkEntryClass parent_class;
};
GType e_url_entry_get_type (void) G_GNUC_CONST;
GtkWidget * e_url_entry_new (void);
-GtkWidget * e_url_entry_get_entry (EUrlEntry *url_entry);
G_END_DECLS