diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-06-13 18:03:59 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-06-13 18:03:59 +0800 |
commit | 52c6654061e8bd5c8607defd279fa77dfb3dfb87 (patch) | |
tree | 4972e9e9dc50089540b4c171546155954449837b /src/ephy-notebook.h | |
parent | 6dfe3603d1a9875293870c0a4cf96fc760ef198f (diff) | |
download | gsoc2013-epiphany-52c6654061e8bd5c8607defd279fa77dfb3dfb87.tar gsoc2013-epiphany-52c6654061e8bd5c8607defd279fa77dfb3dfb87.tar.gz gsoc2013-epiphany-52c6654061e8bd5c8607defd279fa77dfb3dfb87.tar.bz2 gsoc2013-epiphany-52c6654061e8bd5c8607defd279fa77dfb3dfb87.tar.lz gsoc2013-epiphany-52c6654061e8bd5c8607defd279fa77dfb3dfb87.tar.xz gsoc2013-epiphany-52c6654061e8bd5c8607defd279fa77dfb3dfb87.tar.zst gsoc2013-epiphany-52c6654061e8bd5c8607defd279fa77dfb3dfb87.zip |
The Friday the 13th Mega Patch. Beware!
2003-06-13 Christian Persch <chpe@cvs.gnome.org>
The Friday the 13th Mega Patch. Beware!
* src/ephy-notebook.h:
* src/ephy-notebook.c: (ephy_notebook_class_init),
(ephy_notebook_move_page), (drag_stop), (ephy_notebook_init),
(ephy_notebook_set_page_status), (sync_load_status),
(ephy_notebook_set_page_icon), (sync_icon),
(ephy_notebook_set_page_title), (sync_label), (build_tab_label),
(update_tabs_visibility), (ephy_notebook_insert_page),
(ephy_notebook_remove_page):
Reworked notebook signals. Now we have tab_added, tab_removed,
tab_detached and tabs_reordered; emit them at appropriate times.
Don't offer the ephy_notebook_set_x functions anymore; instead we
sync on the tab's gobject properties.
* src/ephy-tab.h:
* src/ephy-tab.c: (ephy_tab_update_color), (ephy_tab_set_property),
(ephy_tab_get_property), (ephy_tab_set_load_status),
(ephy_tab_set_link_message), (ephy_tab_set_is_active),
(ephy_tab_get_is_active), (ephy_tab_set_favicon),
(ephy_tab_icon_cache_changed_cb), (ephy_tab_set_icon_address),
(ephy_tab_link_message_cb), (ephy_tab_address_cb),
(ephy_tab_zoom_changed_cb), (ensure_address), (ephy_tab_net_state_cb),
(ephy_tab_security_change_cb), (ephy_tab_init),
(ephy_tab_set_load_percent), (ephy_tab_update_navigation_flags),
(ephy_tab_get_navigation_flags), (ephy_tab_get_status_message),
(ephy_tab_set_title):
Removed the is_active flag. Made load-status property boolean (true
means loading), removing the TAB_LOAD_NONE/TAB_LOAD_COMPLETED
distinction. Add navigation flags object property. Remove all calls to
ephy_window_update_x, instead let the window sync on object properties.
Fix statusbar message bug.
* src/ephy-tabs-menu.c: (tab_set_action_accelerator):
Fix accelerator for tabs with position > 10.
* src/ephy-window.h:
* src/ephy-window.c: (ephy_window_destroy_cb), (setup_window),
(sync_tab_address), (sync_tab_icon), (sync_tab_load_progress),
(sync_tab_load_status), (sync_tab_message), (sync_tab_navigation),
(sync_tab_security), (sync_tab_stop), (sync_tab_title),
(sync_tab_zoom), (ephy_window_set_active_tab), (update_tabs_menu),
(tab_added_cb), (tab_removed_cb), (tab_detached_cb),
(tabs_reordered_cb), (setup_notebook), (ephy_window_init),
(ephy_window_add_tab), (real_get_active_tab), (ephy_window_remove_tab),
(update_status_message), (update_progress), (update_security),
(update_nav_control), (update_zoom_control), (update_title_control),
(update_location_control), (update_favicon_control),
(update_spinner_control), (ephy_window_update_control),
(ephy_window_get_active_tab), (ephy_window_get_active_embed),
(ephy_window_notebook_switch_page_cb), (ephy_window_tab_detached_cb):
Sync on the active tab's object properties, and sync on the load
status of all tabs for the spinner.
* src/toolbar.c: (toolbar_update_navigation_actions):
Correct inverted logic.
Diffstat (limited to 'src/ephy-notebook.h')
-rw-r--r-- | src/ephy-notebook.h | 30 |
1 files changed, 8 insertions, 22 deletions
diff --git a/src/ephy-notebook.h b/src/ephy-notebook.h index 9ce55f5b3..454f8de10 100644 --- a/src/ephy-notebook.h +++ b/src/ephy-notebook.h @@ -59,15 +59,13 @@ struct EphyNotebookClass GtkNotebookClass parent_class; /* Signals */ - void (* tab_dropped) (EphyNotebook *dest, - GtkWidget *widget, - EphyNotebook *src, - gint src_page); - void (* tab_detached) (EphyNotebook *dest, - gint cur_page, - gint root_x, gint root_y); - void (* tabs_changed) (EphyNotebook *nb); - + void (* tab_added) (EphyNotebook *notebook, + GtkWidget *child); + void (* tab_removed) (EphyNotebook *notebook, + GtkWidget *child); + void (* tab_detached) (EphyNotebook *notebook, + GtkWidget *child); + void (* tabs_reordered) (EphyNotebook *notebook); }; GType ephy_notebook_get_type (void); @@ -87,18 +85,6 @@ void ephy_notebook_move_page (EphyNotebook *src, GtkWidget *src_page, gint dest_page); -void ephy_notebook_set_page_status (EphyNotebook *nb, - GtkWidget *child, - EphyNotebookPageLoadStatus status); - -void ephy_notebook_set_page_title (EphyNotebook *nb, - GtkWidget *child, - const char *title); - -void ephy_notebook_set_page_icon (EphyNotebook *nb, - GtkWidget *child, - GdkPixbuf *icon); - -G_END_DECLS; +G_END_DECLS #endif /* EPHY_NOTEBOOK_H */ |