diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-06-20 07:58:02 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-06-20 07:58:02 +0800 |
commit | 38f4f77d16ff6ee02751eb91b9870108f639e21a (patch) | |
tree | a6558eafb1dd620719757c255f520d181440b4a9 /src/ephy-tab.h | |
parent | 37a1f2f5e2544db814a79631d4f4b958f6dba9a8 (diff) | |
download | gsoc2013-epiphany-38f4f77d16ff6ee02751eb91b9870108f639e21a.tar gsoc2013-epiphany-38f4f77d16ff6ee02751eb91b9870108f639e21a.tar.gz gsoc2013-epiphany-38f4f77d16ff6ee02751eb91b9870108f639e21a.tar.bz2 gsoc2013-epiphany-38f4f77d16ff6ee02751eb91b9870108f639e21a.tar.lz gsoc2013-epiphany-38f4f77d16ff6ee02751eb91b9870108f639e21a.tar.xz gsoc2013-epiphany-38f4f77d16ff6ee02751eb91b9870108f639e21a.tar.zst gsoc2013-epiphany-38f4f77d16ff6ee02751eb91b9870108f639e21a.zip |
Get rid of get/set _event, reformat the header.
2003-06-20 Marco Pesenti Gritti <marco@it.gnome.org>
* src/ephy-tab.c: (ephy_tab_finalize), (ephy_tab_init):
* src/ephy-tab.h:
Get rid of get/set _event, reformat the header.
* src/pdm-dialog.c:
Fix compilation warning.
* src/ephy-window.c: (popup_destroy_cb), (show_embed_popup):
* src/popup-commands.c: (get_event_info):
Less invasive way to access the event info from the callbacks.
Diffstat (limited to 'src/ephy-tab.h')
-rw-r--r-- | src/ephy-tab.h | 53 |
1 files changed, 24 insertions, 29 deletions
diff --git a/src/ephy-tab.h b/src/ephy-tab.h index cad8754eb..38d07feca 100644 --- a/src/ephy-tab.h +++ b/src/ephy-tab.h @@ -60,56 +60,51 @@ struct EphyTabClass /* Include the header down here to resolve circular dependency */ #include "ephy-window.h" -GType ephy_tab_get_type (void); +GType ephy_tab_get_type (void); -EphyTab * ephy_tab_new (void); +EphyTab * ephy_tab_new (void); -EggAction * ephy_tab_get_action (EphyTab *tab); +EggAction * ephy_tab_get_action (EphyTab *tab); -EphyEmbed * ephy_tab_get_embed (EphyTab *tab); +EphyEmbed * ephy_tab_get_embed (EphyTab *tab); -void ephy_tab_set_event (EphyTab *tab, - EphyEmbedEvent *event); +void ephy_tab_set_window (EphyTab *tab, + EphyWindow *window); -EphyEmbedEvent *ephy_tab_get_event (EphyTab *tab); +EphyWindow * ephy_tab_get_window (EphyTab *tab); -void ephy_tab_set_window (EphyTab *tab, - EphyWindow *window); +const char * ephy_tab_get_icon_address (EphyTab *tab); -EphyWindow * ephy_tab_get_window (EphyTab *tab); +gboolean ephy_tab_get_load_status (EphyTab *tab); -const char * ephy_tab_get_icon_address (EphyTab *tab); +const char * ephy_tab_get_link_message (EphyTab *tab); -gboolean ephy_tab_get_load_status (EphyTab *tab); -const char * ephy_tab_get_link_message (EphyTab *tab); +int ephy_tab_get_load_percent (EphyTab *tab); +void ephy_tab_set_location (EphyTab *tab, + const char *location); -int ephy_tab_get_load_percent (EphyTab *tab); - -void ephy_tab_set_location (EphyTab *tab, - const char *location); - -const char * ephy_tab_get_location (EphyTab *tab); +const char * ephy_tab_get_location (EphyTab *tab); TabNavigationFlags ephy_tab_get_navigation_flags (EphyTab *tab); - + EmbedSecurityLevel ephy_tab_get_security_level (EphyTab *tab); -void ephy_tab_get_size (EphyTab *tab, - int *width, - int *height); +void ephy_tab_get_size (EphyTab *tab, + int *width, + int *height); -const char * ephy_tab_get_status_message (EphyTab *tab); +const char * ephy_tab_get_status_message (EphyTab *tab); -const char * ephy_tab_get_title (EphyTab *tab); +const char * ephy_tab_get_title (EphyTab *tab); -void ephy_tab_set_visibility (EphyTab *tab, - gboolean visible); +void ephy_tab_set_visibility (EphyTab *tab, + gboolean visible); -gboolean ephy_tab_get_visibility (EphyTab *tab); +gboolean ephy_tab_get_visibility (EphyTab *tab); -float ephy_tab_get_zoom (EphyTab *tab); +float ephy_tab_get_zoom (EphyTab *tab); G_END_DECLS |