webkit:editor - things associated with EWebKitContentEditor webkit:undo - things associated with undo and redo handling in EWebKitContentEditor webkit:preview - things associated with message preview, printing, ... webkit - things mentioned above together
62 lines
1.7 KiB
C
62 lines
1.7 KiB
C
/*
|
|
* e-web-extension-main.c
|
|
*
|
|
* This program 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) version 3.
|
|
*
|
|
* 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with the program; if not, see <http://www.gnu.org/licenses/>
|
|
*
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <camel/camel.h>
|
|
|
|
#include "e-web-extension.h"
|
|
#include "e-web-extension-names.h"
|
|
|
|
static void
|
|
bus_acquired_cb (GDBusConnection *connection,
|
|
const gchar *name,
|
|
EWebExtension *extension)
|
|
{
|
|
e_web_extension_dbus_register (extension, connection);
|
|
}
|
|
|
|
/* Forward declaration */
|
|
G_MODULE_EXPORT void webkit_web_extension_initialize (WebKitWebExtension *wk_extension);
|
|
|
|
G_MODULE_EXPORT void
|
|
webkit_web_extension_initialize (WebKitWebExtension *wk_extension)
|
|
{
|
|
EWebExtension *extension;
|
|
|
|
camel_debug_init ();
|
|
|
|
if (camel_debug ("webkit") || camel_debug ("webkit:preview"))
|
|
printf ("%s\n", G_STRFUNC);
|
|
|
|
extension = e_web_extension_get ();
|
|
e_web_extension_initialize (extension, wk_extension);
|
|
|
|
g_bus_own_name (
|
|
G_BUS_TYPE_SESSION,
|
|
E_WEB_EXTENSION_SERVICE_NAME,
|
|
G_BUS_NAME_OWNER_FLAGS_NONE,
|
|
(GBusAcquiredCallback) bus_acquired_cb,
|
|
NULL, /* GBusNameAcquiredCallback */
|
|
NULL, /* GBusNameLostCallback */
|
|
g_object_ref (extension),
|
|
(GDestroyNotify) g_object_unref);
|
|
}
|