diff options
author | Gustavo Noronha Silva <gns@gnome.org> | 2009-01-14 21:31:17 +0800 |
---|---|---|
committer | Gustavo Noronha Silva <kov@debian.org> | 2009-05-30 00:15:58 +0800 |
commit | 682bbd135a3cde308e5c067892ad43e2dcecb44f (patch) | |
tree | 38c2503a0ce25b3b9f38ad85e1fc2f292cf3471b /embed/ephy-web-view.c | |
parent | 6eb907dcc69c4024bb86227522d6bb394028d670 (diff) | |
download | gsoc2013-epiphany-682bbd135a3cde308e5c067892ad43e2dcecb44f.tar gsoc2013-epiphany-682bbd135a3cde308e5c067892ad43e2dcecb44f.tar.gz gsoc2013-epiphany-682bbd135a3cde308e5c067892ad43e2dcecb44f.tar.bz2 gsoc2013-epiphany-682bbd135a3cde308e5c067892ad43e2dcecb44f.tar.lz gsoc2013-epiphany-682bbd135a3cde308e5c067892ad43e2dcecb44f.tar.xz gsoc2013-epiphany-682bbd135a3cde308e5c067892ad43e2dcecb44f.tar.zst gsoc2013-epiphany-682bbd135a3cde308e5c067892ad43e2dcecb44f.zip |
Adding a new EphyWebView object
This is an object inheriting from WebKitWebView, and will be used to
house most of the functionality we move from EphyEmbed.
Diffstat (limited to 'embed/ephy-web-view.c')
-rw-r--r-- | embed/ephy-web-view.c | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c new file mode 100644 index 000000000..f5a1dbf57 --- /dev/null +++ b/embed/ephy-web-view.c @@ -0,0 +1,57 @@ +/* -*- Mode: C; tab-width: 2; indent-tabs-mode: f; c-basic-offset: 2 -*- */ +/* + * Copyright © 2008 Gustavo Noronha Silva + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#include "config.h" + +#include "ephy-web-view.h" +#include "ephy-debug.h" + +#include <gtk/gtk.h> +#include <webkit/webkit.h> + +static void ephy_web_view_class_init (EphyWebViewClass *klass); +static void ephy_web_view_init (EphyWebView *gs); + +G_DEFINE_TYPE (EphyWebView, ephy_web_view, WEBKIT_TYPE_WEB_VIEW) + +static void +ephy_web_view_class_init (EphyWebViewClass *klass) +{ +} + +static void +ephy_web_view_init (EphyWebView *web_view) +{ +} + +/** + * ephy_web_view_new: + * + * Equivalent to g_object_new() but returns an #GtkWidget so you don't have + * to cast it when dealing with most code. + * + * Return value: the newly created #EphyWebView widget + **/ +GtkWidget * +ephy_web_view_new (void) +{ + return GTK_WIDGET (g_object_new (EPHY_TYPE_WEB_VIEW, NULL)); +} + |