diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-10-22 06:23:35 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-10-22 06:23:35 +0800 |
commit | 21970860f6d87a62764bdafadae76f4d2f9a1691 (patch) | |
tree | befb7c5925ba0cfa93c2a45a061f801caf949a0b /src/epiphany.defs | |
parent | 20abb0405c42012e470173fc82dba03d7d4fe268 (diff) | |
download | gsoc2013-epiphany-21970860f6d87a62764bdafadae76f4d2f9a1691.tar gsoc2013-epiphany-21970860f6d87a62764bdafadae76f4d2f9a1691.tar.gz gsoc2013-epiphany-21970860f6d87a62764bdafadae76f4d2f9a1691.tar.bz2 gsoc2013-epiphany-21970860f6d87a62764bdafadae76f4d2f9a1691.tar.lz gsoc2013-epiphany-21970860f6d87a62764bdafadae76f4d2f9a1691.tar.xz gsoc2013-epiphany-21970860f6d87a62764bdafadae76f4d2f9a1691.tar.zst gsoc2013-epiphany-21970860f6d87a62764bdafadae76f4d2f9a1691.zip |
Move navigation property from EphyTab to EphyEmbed.
svn path=/trunk/; revision=7549
Diffstat (limited to 'src/epiphany.defs')
-rw-r--r-- | src/epiphany.defs | 38 |
1 files changed, 16 insertions, 22 deletions
diff --git a/src/epiphany.defs b/src/epiphany.defs index 394ef4dd0..02c5bfabd 100644 --- a/src/epiphany.defs +++ b/src/epiphany.defs @@ -217,6 +217,17 @@ ;; Enumerations and flags ... +(define-flags EmbedNavigationFlags + (in-module "Ephy") + (c-name "EphyEmbedNavigationFlags") + (gtype-id "EPHY_TYPE_EMBED_NAVIGATION_FLAGS") + (values + '("up" "EPHY_EMBED_NAV_UP") + '("back" "EPHY_EMBED_NAV_BACK") + '("forward" "EPHY_EMBED_NAV_FORWARD") + ) +) + (define-flags EmbedEventContext (in-module "Ephy") (c-name "EphyEmbedEventContext") @@ -426,17 +437,6 @@ ) ) -(define-flags TabNavigationFlags - (in-module "Ephy") - (c-name "EphyTabNavigationFlags") - (gtype-id "EPHY_TYPE_TAB_NAVIGATION_FLAGS") - (values - '("up" "EPHY_TAB_NAV_UP") - '("back" "EPHY_TAB_NAV_BACK") - '("forward" "EPHY_TAB_NAV_FORWARD") - ) -) - (define-enum TabAddressExpire (in-module "Ephy") (c-name "EphyTabAddressExpire") @@ -942,6 +942,11 @@ ;; From ../embed/ephy-embed.h +(define-function ephy_embed_navigation_flags_get_type + (c-name "ephy_embed_navigation_flags_get_type") + (return-type "GType") +) + (define-function ephy_embed_net_state_get_type (c-name "ephy_embed_net_state_get_type") (return-type "GType") @@ -3372,12 +3377,6 @@ ) ) -(define-method get_navigation_flags - (of-object "EphyTab") - (c-name "ephy_tab_get_navigation_flags") - (return-type "EphyTabNavigationFlags") -) - (define-method get_size (of-object "EphyTab") (c-name "ephy_tab_get_size") @@ -3533,11 +3532,6 @@ (return-type "GType") ) -(define-function ephy_tab_navigation_flags_get_type - (c-name "ephy_tab_navigation_flags_get_type") - (return-type "GType") -) - (define-function ephy_tab_address_expire_get_type (c-name "ephy_tab_address_expire_get_type") (return-type "GType") |