/* Copyright (C) 2008 Christian Dywan This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. See the file COPYING for the full license text. */ #ifndef __MIDORI_WEB_VIEW_H__ #define __MIDORI_WEB_VIEW_H__ #include #include #include "midori-websettings.h" G_BEGIN_DECLS #define MIDORI_TYPE_WEB_VIEW \ (midori_web_view_get_type ()) #define MIDORI_WEB_VIEW(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), MIDORI_TYPE_WEB_VIEW, MidoriWebView)) #define MIDORI_WEB_VIEW_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), MIDORI_TYPE_WEB_VIEW, MidoriWebViewClass)) #define MIDORI_IS_WEB_VIEW(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIDORI_TYPE_WEB_VIEW)) #define MIDORI_IS_WEB_VIEW_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), MIDORI_TYPE_WEB_VIEW)) #define MIDORI_WEB_VIEW_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), MIDORI_TYPE_WEB_VIEW, MidoriWebViewClass)) typedef struct _MidoriWebView MidoriWebView; typedef struct _MidoriWebViewPrivate MidoriWebViewPrivate; typedef struct _MidoriWebViewClass MidoriWebViewClass; struct _MidoriWebView { WebKitWebView parent_instance; MidoriWebViewPrivate* priv; }; struct _MidoriWebViewClass { WebKitWebViewClass parent_class; /* Signals */ void (*progress_started) (MidoriWebView* web_view, guint progress); void (*progress_changed) (MidoriWebView* web_view, guint progress); void (*progress_done) (MidoriWebView* web_view, guint progress); void (*load_done) (MidoriWebView* web_view, WebKitWebFrame* frame); void (*statusbar_text_changed) (MidoriWebView* web_view, const gchar* text); void (*element_motion) (MidoriWebView* web_view, const gchar* link_uri); void (*close) (MidoriWebView* web_view); void (*new_tab) (MidoriWebView* web_view, const gchar* uri); void (*new_window) (MidoriWebView* web_view, const gchar* uri); void (*create_web_view) (MidoriWebView* web_view, MidoriWebView* new_web_view); }; GType midori_web_view_get_type (void); GtkWidget* midori_web_view_new (void); void midori_web_view_set_settings (MidoriWebView* web_view, MidoriWebSettings* web_settings); GtkWidget* midori_web_view_get_proxy_menu_item (MidoriWebView* web_view); GtkWidget* midori_web_view_get_proxy_tab_label (MidoriWebView* web_view); KatzeXbelItem* midori_web_view_get_proxy_xbel_item (MidoriWebView* web_view); gboolean midori_web_view_is_loading (MidoriWebView* web_view); gint midori_web_view_get_progress (MidoriWebView* web_view); const gchar* midori_web_view_get_display_uri (MidoriWebView* web_view); const gchar* midori_web_view_get_display_title (MidoriWebView* web_view); const gchar* midori_web_view_get_link_uri (MidoriWebView* web_view); G_END_DECLS #endif /* __MIDORI_WEB_VIEW_H__ */