diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-01-16 02:08:26 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-01-16 02:08:26 +0800 |
commit | 216c6fa203c77b1ea3aa21dd822c3688783cac42 (patch) | |
tree | 4fcc01185a3bc213497bfcf90fbdc47b6044becf /src/popup-commands.c | |
parent | 5e2c715ab1b0ae755542a02914b2377fd0878d99 (diff) | |
download | gsoc2013-epiphany-216c6fa203c77b1ea3aa21dd822c3688783cac42.tar gsoc2013-epiphany-216c6fa203c77b1ea3aa21dd822c3688783cac42.tar.gz gsoc2013-epiphany-216c6fa203c77b1ea3aa21dd822c3688783cac42.tar.bz2 gsoc2013-epiphany-216c6fa203c77b1ea3aa21dd822c3688783cac42.tar.lz gsoc2013-epiphany-216c6fa203c77b1ea3aa21dd822c3688783cac42.tar.xz gsoc2013-epiphany-216c6fa203c77b1ea3aa21dd822c3688783cac42.tar.zst gsoc2013-epiphany-216c6fa203c77b1ea3aa21dd822c3688783cac42.zip |
Make EphyEmbedEvent abstract, implemented by MozillaEmbedEvent. Port
2004-01-15 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed-event.c: (ephy_embed_event_get_type),
(ephy_embed_event_base_init), (ephy_embed_event_get_event_type),
(ephy_embed_event_get_context), (ephy_embed_event_get_modifier),
(ephy_embed_event_get_coords), (ephy_embed_event_get_property),
(ephy_embed_event_has_property), (ephy_embed_event_get_dom_event):
* embed/ephy-embed-event.h:
* embed/mozilla/EventContext.cpp:
* embed/mozilla/EventContext.h:
* embed/mozilla/Makefile.am:
* embed/mozilla/mozilla-embed-event.cpp:
* embed/mozilla/mozilla-embed-event.h:
* embed/mozilla/mozilla-embed.cpp:
* src/ephy-window.c: (popup_menu_at_coords):
* src/popup-commands.c: (popup_cmd_copy_link_address):
Make EphyEmbedEvent abstract, implemented by MozillaEmbedEvent.
Port callers to the new api.
Fix some callers in src/ which were using private fields of
EphyEmbedEvent struct.
Diffstat (limited to 'src/popup-commands.c')
-rw-r--r-- | src/popup-commands.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/popup-commands.c b/src/popup-commands.c index f145c1d76..666492659 100644 --- a/src/popup-commands.c +++ b/src/popup-commands.c @@ -243,19 +243,22 @@ popup_cmd_copy_link_address (GtkAction *action, EphyWindow *window) { EphyEmbedEvent *event; + EmbedEventContext context; const char *address; const GValue *value; event = get_event_info (window); g_return_if_fail (EPHY_IS_EMBED_EVENT (event)); - if (event->context & EMBED_CONTEXT_EMAIL_LINK) + context = ephy_embed_event_get_context (event); + + if (context & EMBED_CONTEXT_EMAIL_LINK) { ephy_embed_event_get_property (event, "email", &value); address = g_value_get_string (value); popup_cmd_copy_to_clipboard (window, address); } - else if (event->context & EMBED_CONTEXT_LINK) + else if (context & EMBED_CONTEXT_LINK) { ephy_embed_event_get_property (event, "link", &value); address = g_value_get_string (value); |