2006-10-15 01:33:34 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2006, Red Hat, Inc.
|
2006-10-13 01:04:01 +02:00
|
|
|
*
|
2006-10-15 01:33:34 +02:00
|
|
|
* 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 of the License, or (at your option) any later version.
|
2006-10-13 01:04:01 +02:00
|
|
|
*
|
2006-10-15 01:33:34 +02:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-10-13 01:04:01 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2006-10-15 01:33:34 +02:00
|
|
|
* Lesser General Public License for more details.
|
2006-10-13 01:04:01 +02:00
|
|
|
*
|
2006-10-15 01:33:34 +02:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
2006-10-13 01:04:01 +02:00
|
|
|
*/
|
|
|
|
|
2007-01-23 23:14:22 +01:00
|
|
|
#include <config.h>
|
|
|
|
|
2006-10-13 01:04:01 +02:00
|
|
|
#include "sugar-browser.h"
|
2006-11-15 13:56:19 +01:00
|
|
|
#include "GeckoContentHandler.h"
|
|
|
|
#include "GeckoDownload.h"
|
2006-10-13 01:04:01 +02:00
|
|
|
|
2006-10-17 21:53:29 +02:00
|
|
|
#include <gtkmozembed_internal.h>
|
2006-10-13 01:04:01 +02:00
|
|
|
#include <nsCOMPtr.h>
|
|
|
|
#include <nsIPrefService.h>
|
|
|
|
#include <nsServiceManagerUtils.h>
|
2006-10-25 15:43:37 +02:00
|
|
|
#include <nsStringAPI.h>
|
|
|
|
#include <nsILocalFile.h>
|
2006-10-17 21:53:29 +02:00
|
|
|
#include <nsIWebBrowser.h>
|
|
|
|
#include <nsIWebBrowserFocus.h>
|
|
|
|
#include <nsIDOMWindow.h>
|
2006-10-25 10:18:43 +02:00
|
|
|
#include <nsIGenericFactory.h>
|
|
|
|
#include <nsIHelperAppLauncherDialog.h>
|
|
|
|
#include <nsIComponentRegistrar.h>
|
|
|
|
|
2006-10-13 01:04:01 +02:00
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
PROP_PROGRESS,
|
|
|
|
PROP_TITLE,
|
|
|
|
PROP_ADDRESS,
|
|
|
|
PROP_CAN_GO_BACK,
|
2006-10-20 15:43:05 +02:00
|
|
|
PROP_CAN_GO_FORWARD,
|
|
|
|
PROP_LOADING
|
2006-10-13 01:04:01 +02:00
|
|
|
};
|
|
|
|
|
2006-10-25 10:18:43 +02:00
|
|
|
static const nsModuleComponentInfo sSugarComponents[] = {
|
|
|
|
{
|
2006-11-15 13:56:19 +01:00
|
|
|
"Gecko Content Handler",
|
|
|
|
GECKOCONTENTHANDLER_CID,
|
2006-10-25 10:18:43 +02:00
|
|
|
NS_IHELPERAPPLAUNCHERDLG_CONTRACTID,
|
2007-01-29 18:36:10 +01:00
|
|
|
NULL
|
2006-10-26 22:21:26 +02:00
|
|
|
},
|
|
|
|
{
|
2006-11-15 13:56:19 +01:00
|
|
|
"Gecko Download",
|
|
|
|
GECKODOWNLOAD_CID,
|
2006-10-26 22:21:26 +02:00
|
|
|
NS_TRANSFER_CONTRACTID,
|
2007-01-29 18:36:10 +01:00
|
|
|
NULL
|
2006-10-25 10:18:43 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-01-26 11:44:08 +01:00
|
|
|
static void
|
|
|
|
setup_plugin_path ()
|
|
|
|
{
|
|
|
|
const char *user_path;
|
|
|
|
char *new_path;
|
|
|
|
|
|
|
|
user_path = g_getenv ("MOZ_PLUGIN_PATH");
|
|
|
|
new_path = g_strconcat (user_path ? user_path : "",
|
|
|
|
user_path ? ":" : "",
|
|
|
|
PLUGIN_DIR,
|
|
|
|
(char *) NULL);
|
|
|
|
g_setenv ("MOZ_PLUGIN_PATH", new_path, TRUE);
|
|
|
|
g_free (new_path);
|
|
|
|
}
|
|
|
|
|
2006-10-25 10:18:43 +02:00
|
|
|
gboolean
|
2007-01-23 20:33:56 +01:00
|
|
|
sugar_browser_startup(const char *profile_path, const char *profile_name)
|
2006-10-13 01:04:01 +02:00
|
|
|
{
|
2006-10-25 10:18:43 +02:00
|
|
|
nsresult rv;
|
2006-10-13 01:04:01 +02:00
|
|
|
|
2007-01-26 11:44:08 +01:00
|
|
|
setup_plugin_path();
|
|
|
|
|
2007-01-23 20:33:56 +01:00
|
|
|
gtk_moz_embed_set_profile_path(profile_path, profile_name);
|
|
|
|
|
|
|
|
gtk_moz_embed_push_startup();
|
|
|
|
|
2006-10-25 15:43:37 +02:00
|
|
|
nsCOMPtr<nsIPrefService> prefService;
|
2006-10-13 01:04:01 +02:00
|
|
|
prefService = do_GetService(NS_PREFSERVICE_CONTRACTID);
|
2006-10-25 10:18:43 +02:00
|
|
|
NS_ENSURE_TRUE(prefService, FALSE);
|
2006-10-13 01:04:01 +02:00
|
|
|
|
2006-10-25 15:43:37 +02:00
|
|
|
/* Read our predefined default prefs */
|
|
|
|
nsCOMPtr<nsILocalFile> file;
|
|
|
|
NS_NewNativeLocalFile(nsCString(SHARE_DIR"/gecko-prefs.js"),
|
|
|
|
PR_TRUE, getter_AddRefs(file));
|
|
|
|
NS_ENSURE_TRUE(file, FALSE);
|
2006-10-13 01:04:01 +02:00
|
|
|
|
2006-11-15 13:56:19 +01:00
|
|
|
rv = prefService->ReadUserPrefs (file);
|
2006-10-25 15:43:37 +02:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
g_warning ("failed to read default preferences, error: %x", rv);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-10-17 15:06:08 +02:00
|
|
|
|
2006-10-25 15:43:37 +02:00
|
|
|
nsCOMPtr<nsIPrefBranch> pref;
|
|
|
|
prefService->GetBranch ("", getter_AddRefs(pref));
|
|
|
|
NS_ENSURE_TRUE(pref, FALSE);
|
2006-10-17 17:23:33 +02:00
|
|
|
|
2006-10-25 15:43:37 +02:00
|
|
|
rv = prefService->ReadUserPrefs (nsnull);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
g_warning ("failed to read user preferences, error: %x", rv);
|
|
|
|
}
|
2006-10-25 10:18:43 +02:00
|
|
|
|
|
|
|
nsCOMPtr<nsIComponentRegistrar> componentRegistrar;
|
|
|
|
NS_GetComponentRegistrar(getter_AddRefs(componentRegistrar));
|
|
|
|
NS_ENSURE_TRUE (componentRegistrar, FALSE);
|
|
|
|
|
2007-01-29 20:41:15 +01:00
|
|
|
nsCOMPtr<nsIFactory> contentHandlerFactory;
|
|
|
|
rv = NS_NewGeckoContentHandlerFactory(getter_AddRefs(contentHandlerFactory));
|
|
|
|
rv = componentRegistrar->RegisterFactory(sSugarComponents[0].mCID,
|
|
|
|
sSugarComponents[0].mDescription,
|
|
|
|
sSugarComponents[0].mContractID,
|
|
|
|
contentHandlerFactory);
|
2007-01-29 18:36:10 +01:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
g_warning ("Failed to register factory for %s\n", sSugarComponents[0].mDescription);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-01-29 20:41:15 +01:00
|
|
|
nsCOMPtr<nsIFactory> downloadFactory;
|
|
|
|
rv = NS_NewGeckoDownloadFactory(getter_AddRefs(downloadFactory));
|
|
|
|
rv = componentRegistrar->RegisterFactory(sSugarComponents[1].mCID,
|
|
|
|
sSugarComponents[1].mDescription,
|
|
|
|
sSugarComponents[1].mContractID,
|
|
|
|
downloadFactory);
|
2007-01-29 18:36:10 +01:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
g_warning ("Failed to register factory for %s\n", sSugarComponents[1].mDescription);
|
|
|
|
return FALSE;
|
2006-10-25 10:18:43 +02:00
|
|
|
}
|
2007-01-23 23:14:22 +01:00
|
|
|
|
2006-10-25 10:18:43 +02:00
|
|
|
return TRUE;
|
2006-10-17 15:06:08 +02:00
|
|
|
}
|
2006-10-13 01:04:01 +02:00
|
|
|
|
2007-01-23 20:33:56 +01:00
|
|
|
void
|
|
|
|
sugar_browser_shutdown(void)
|
|
|
|
{
|
|
|
|
gtk_moz_embed_pop_startup();
|
|
|
|
}
|
|
|
|
|
2006-10-13 01:04:01 +02:00
|
|
|
G_DEFINE_TYPE(SugarBrowser, sugar_browser, GTK_TYPE_MOZ_EMBED)
|
|
|
|
|
|
|
|
static void
|
|
|
|
sugar_browser_get_property(GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
SugarBrowser *browser = SUGAR_BROWSER(object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_PROGRESS:
|
|
|
|
g_value_set_double(value, browser->progress);
|
|
|
|
break;
|
|
|
|
case PROP_ADDRESS:
|
|
|
|
g_value_set_string(value, browser->address);
|
|
|
|
break;
|
|
|
|
case PROP_TITLE:
|
|
|
|
g_value_set_string(value, browser->title);
|
|
|
|
break;
|
|
|
|
case PROP_CAN_GO_BACK:
|
|
|
|
g_value_set_boolean(value, browser->can_go_back);
|
|
|
|
break;
|
|
|
|
case PROP_CAN_GO_FORWARD:
|
|
|
|
g_value_set_boolean(value, browser->can_go_forward);
|
|
|
|
break;
|
2006-10-20 15:43:05 +02:00
|
|
|
case PROP_LOADING:
|
|
|
|
g_value_set_boolean(value, browser->loading);
|
|
|
|
break;
|
2006-10-13 01:04:01 +02:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
sugar_browser_class_init(SugarBrowserClass *browser_class)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS(browser_class);
|
|
|
|
|
|
|
|
gobject_class->get_property = sugar_browser_get_property;
|
|
|
|
|
|
|
|
g_object_class_install_property(gobject_class, PROP_PROGRESS,
|
|
|
|
g_param_spec_double ("progress",
|
|
|
|
"Progress",
|
|
|
|
"Progress",
|
|
|
|
0.0, 1.0, 0.0,
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_ADDRESS,
|
|
|
|
g_param_spec_string ("address",
|
|
|
|
"Address",
|
|
|
|
"Address",
|
|
|
|
"",
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_TITLE,
|
|
|
|
g_param_spec_string ("title",
|
|
|
|
"Title",
|
|
|
|
"Title",
|
|
|
|
"",
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_CAN_GO_BACK,
|
|
|
|
g_param_spec_boolean ("can-go-back",
|
|
|
|
"Can go back",
|
|
|
|
"Can go back",
|
|
|
|
FALSE,
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_CAN_GO_FORWARD,
|
|
|
|
g_param_spec_boolean ("can-go-forward",
|
|
|
|
"Can go forward",
|
|
|
|
"Can go forward",
|
|
|
|
FALSE,
|
|
|
|
G_PARAM_READABLE));
|
2006-10-20 15:43:05 +02:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_LOADING,
|
|
|
|
g_param_spec_boolean ("loading",
|
|
|
|
"Loading",
|
|
|
|
"Loading",
|
|
|
|
FALSE,
|
|
|
|
G_PARAM_READABLE));
|
2006-10-13 01:04:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
SugarBrowser *
|
|
|
|
sugar_browser_create_window(SugarBrowser *browser)
|
|
|
|
{
|
|
|
|
return SUGAR_BROWSER_GET_CLASS(browser)->create_window(browser);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
update_navigation_properties(SugarBrowser *browser)
|
|
|
|
{
|
|
|
|
GtkMozEmbed *embed = GTK_MOZ_EMBED(browser);
|
2006-10-13 11:05:47 +02:00
|
|
|
gboolean can_go_back;
|
|
|
|
gboolean can_go_forward;
|
2006-10-13 01:04:01 +02:00
|
|
|
|
2006-10-13 11:05:47 +02:00
|
|
|
can_go_back = gtk_moz_embed_can_go_back(embed);
|
|
|
|
if (can_go_back != browser->can_go_back) {
|
|
|
|
browser->can_go_back = can_go_back;
|
|
|
|
g_object_notify (G_OBJECT(browser), "can-go-back");
|
|
|
|
}
|
2006-10-13 01:04:01 +02:00
|
|
|
|
2006-10-13 11:05:47 +02:00
|
|
|
can_go_forward = gtk_moz_embed_can_go_forward(embed);
|
|
|
|
if (can_go_forward != browser->can_go_forward) {
|
|
|
|
browser->can_go_forward = can_go_forward;
|
|
|
|
g_object_notify (G_OBJECT(browser), "can-go-forward");
|
|
|
|
}
|
2006-10-13 01:04:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
new_window_cb(GtkMozEmbed *embed,
|
|
|
|
GtkMozEmbed **newEmbed,
|
|
|
|
guint chromemask)
|
|
|
|
{
|
|
|
|
SugarBrowser *browser;
|
|
|
|
|
|
|
|
browser = sugar_browser_create_window(SUGAR_BROWSER(embed));
|
|
|
|
|
|
|
|
*newEmbed = GTK_MOZ_EMBED(browser);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
sugar_browser_set_progress(SugarBrowser *browser, float progress)
|
|
|
|
{
|
|
|
|
g_return_if_fail(SUGAR_IS_BROWSER(browser));
|
|
|
|
|
|
|
|
browser->progress = progress;
|
|
|
|
g_object_notify (G_OBJECT(browser), "progress");
|
|
|
|
}
|
|
|
|
|
2006-10-20 15:43:05 +02:00
|
|
|
static void
|
|
|
|
sugar_browser_set_loading(SugarBrowser *browser, gboolean loading)
|
|
|
|
{
|
|
|
|
g_return_if_fail(SUGAR_IS_BROWSER(browser));
|
|
|
|
|
|
|
|
browser->loading = loading;
|
|
|
|
g_object_notify (G_OBJECT(browser), "loading");
|
|
|
|
}
|
|
|
|
|
2006-10-13 01:04:01 +02:00
|
|
|
static void
|
|
|
|
net_state_cb(GtkMozEmbed *embed, const char *aURI, gint state, guint status)
|
|
|
|
{
|
|
|
|
SugarBrowser *browser = SUGAR_BROWSER(embed);
|
|
|
|
|
|
|
|
if (state & GTK_MOZ_EMBED_FLAG_IS_NETWORK) {
|
|
|
|
if (state & GTK_MOZ_EMBED_FLAG_START) {
|
|
|
|
browser->total_requests = 0;
|
|
|
|
browser->current_requests = 0;
|
2006-10-20 15:43:05 +02:00
|
|
|
|
2006-10-20 16:21:10 +02:00
|
|
|
sugar_browser_set_progress(browser, 0.03);
|
2006-10-20 15:43:05 +02:00
|
|
|
sugar_browser_set_loading(browser, TRUE);
|
|
|
|
} else if (state & GTK_MOZ_EMBED_FLAG_STOP) {
|
2006-10-25 16:41:58 +02:00
|
|
|
sugar_browser_set_progress(browser, 1.0);
|
2006-10-20 15:43:05 +02:00
|
|
|
sugar_browser_set_loading(browser, FALSE);
|
2006-10-13 01:04:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state & GTK_MOZ_EMBED_FLAG_IS_REQUEST) {
|
|
|
|
float progress;
|
|
|
|
|
|
|
|
if (state & GTK_MOZ_EMBED_FLAG_START) {
|
|
|
|
browser->total_requests++;
|
|
|
|
}
|
|
|
|
else if (state & GTK_MOZ_EMBED_FLAG_STOP)
|
|
|
|
{
|
|
|
|
browser->current_requests++;
|
|
|
|
}
|
|
|
|
|
|
|
|
progress = float(browser->current_requests) /
|
|
|
|
float(browser->total_requests);
|
|
|
|
if (progress > browser->progress) {
|
|
|
|
sugar_browser_set_progress(browser, progress);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
title_cb(GtkMozEmbed *embed)
|
|
|
|
{
|
|
|
|
SugarBrowser *browser = SUGAR_BROWSER(embed);
|
|
|
|
|
|
|
|
g_free(browser->title);
|
|
|
|
browser->title = gtk_moz_embed_get_title(embed);
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT(browser), "title");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
location_cb(GtkMozEmbed *embed)
|
|
|
|
{
|
|
|
|
SugarBrowser *browser = SUGAR_BROWSER(embed);
|
|
|
|
|
|
|
|
g_free(browser->address);
|
|
|
|
browser->address = gtk_moz_embed_get_location(embed);
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT(browser), "address");
|
2006-10-13 11:05:47 +02:00
|
|
|
|
|
|
|
update_navigation_properties(browser);
|
2006-10-13 01:04:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
sugar_browser_init(SugarBrowser *browser)
|
|
|
|
{
|
|
|
|
browser->title = NULL;
|
|
|
|
browser->address = NULL;
|
|
|
|
browser->progress = 0.0;
|
|
|
|
|
|
|
|
g_signal_connect(G_OBJECT(browser), "new-window",
|
|
|
|
G_CALLBACK(new_window_cb), NULL);
|
|
|
|
g_signal_connect(G_OBJECT(browser), "net-state-all",
|
|
|
|
G_CALLBACK(net_state_cb), NULL);
|
|
|
|
g_signal_connect(G_OBJECT(browser), "title",
|
|
|
|
G_CALLBACK(title_cb), NULL);
|
|
|
|
g_signal_connect(G_OBJECT(browser), "location",
|
|
|
|
G_CALLBACK(location_cb), NULL);
|
|
|
|
}
|
2006-10-17 21:53:29 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
sugar_browser_scroll_pixels(SugarBrowser *browser,
|
|
|
|
int dx,
|
|
|
|
int dy)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWebBrowser> webBrowser;
|
|
|
|
gtk_moz_embed_get_nsIWebBrowser (GTK_MOZ_EMBED(browser),
|
|
|
|
getter_AddRefs(webBrowser));
|
|
|
|
NS_ENSURE_TRUE (webBrowser, );
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWebBrowserFocus> webBrowserFocus;
|
|
|
|
webBrowserFocus = do_QueryInterface (webBrowser);
|
|
|
|
NS_ENSURE_TRUE (webBrowserFocus, );
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> DOMWindow;
|
|
|
|
webBrowserFocus->GetFocusedWindow (getter_AddRefs(DOMWindow));
|
|
|
|
if (!DOMWindow) {
|
|
|
|
webBrowser->GetContentDOMWindow (getter_AddRefs (DOMWindow));
|
|
|
|
}
|
|
|
|
NS_ENSURE_TRUE (DOMWindow, );
|
|
|
|
|
|
|
|
DOMWindow->ScrollBy (dx, dy);
|
|
|
|
}
|
2006-10-20 19:54:28 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
sugar_browser_grab_focus(SugarBrowser *browser)
|
|
|
|
{
|
|
|
|
GtkWidget *child;
|
|
|
|
|
|
|
|
child = gtk_bin_get_child(GTK_BIN(browser));
|
|
|
|
|
|
|
|
if (child != NULL) {
|
|
|
|
gtk_widget_grab_focus (child);
|
|
|
|
} else {
|
|
|
|
g_warning ("Need to realize the embed before grabbing focus!\n");
|
|
|
|
}
|
|
|
|
}
|