aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2008-07-16 00:56:34 +0800
committerXavier Claessens <xclaesse@gmail.com>2009-06-12 00:06:27 +0800
commit4860e692b18ef271889633faa978d546221e8d7b (patch)
treedb53180e1c48b8f138e5104eb93da0c479905152 /libempathy-gtk
parent2fbb4aa0b855d3bac977c25e32c599e59fde89ee (diff)
downloadgsoc2013-empathy-4860e692b18ef271889633faa978d546221e8d7b.tar
gsoc2013-empathy-4860e692b18ef271889633faa978d546221e8d7b.tar.gz
gsoc2013-empathy-4860e692b18ef271889633faa978d546221e8d7b.tar.bz2
gsoc2013-empathy-4860e692b18ef271889633faa978d546221e8d7b.tar.lz
gsoc2013-empathy-4860e692b18ef271889633faa978d546221e8d7b.tar.xz
gsoc2013-empathy-4860e692b18ef271889633faa978d546221e8d7b.tar.zst
gsoc2013-empathy-4860e692b18ef271889633faa978d546221e8d7b.zip
Add skelet of Adium theme using webkit.
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/Makefile.am4
-rw-r--r--libempathy-gtk/empathy-theme-adium.c157
-rw-r--r--libempathy-gtk/empathy-theme-adium.h55
-rw-r--r--libempathy-gtk/empathy-theme-manager.c5
4 files changed, 221 insertions, 0 deletions
diff --git a/libempathy-gtk/Makefile.am b/libempathy-gtk/Makefile.am
index c3d085fae..6e089d688 100644
--- a/libempathy-gtk/Makefile.am
+++ b/libempathy-gtk/Makefile.am
@@ -10,6 +10,7 @@ AM_CPPFLAGS = \
$(ENCHANT_CFLAGS) \
$(LIBCHAMPLAIN_CFLAGS) \
$(GEOCLUE_CFLAGS) \
+ $(WEBKIT_CFLAGS) \
$(WARN_CFLAGS) \
$(DISABLE_DEPRECATED)
@@ -55,6 +56,7 @@ libempathy_gtk_handwritten_source = \
empathy-smiley-manager.c \
empathy-spell.c \
empathy-status-preset-dialog.c \
+ empathy-theme-adium.c \
empathy-theme-boxes.c \
empathy-theme-irc.c \
empathy-theme-manager.c \
@@ -73,6 +75,7 @@ libempathy_gtk_la_LIBADD = \
$(ENCHANT_LIBS) \
$(LIBCHAMPLAIN_LIBS) \
$(GEOCLUE_LIBS) \
+ $(WEBKIT_LIBS) \
$(top_builddir)/libempathy/libempathy.la
libempathy_gtk_la_LDFLAGS = \
@@ -113,6 +116,7 @@ libempathy_gtk_headers = \
empathy-smiley-manager.h \
empathy-spell.h \
empathy-status-preset-dialog.h \
+ empathy-theme-adium.h \
empathy-theme-boxes.h \
empathy-theme-irc.h \
empathy-theme-manager.h \
diff --git a/libempathy-gtk/empathy-theme-adium.c b/libempathy-gtk/empathy-theme-adium.c
new file mode 100644
index 000000000..61733802e
--- /dev/null
+++ b/libempathy-gtk/empathy-theme-adium.c
@@ -0,0 +1,157 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Copyright (C) 2008 Collabora Ltd.
+ *
+ * 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.
+ *
+ * This library 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 this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * Authors: Xavier Claessens <xclaesse@gmail.com>
+ */
+
+#include "config.h"
+
+#include "empathy-theme-adium.h"
+
+#define DEBUG_FLAG EMPATHY_DEBUG_CHAT
+#include <libempathy/empathy-debug.h>
+
+#define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyThemeAdium)
+
+typedef struct {
+ guint unused;
+} EmpathyThemeAdiumPriv;
+
+static void theme_adium_iface_init (EmpathyChatViewIface *iface);
+
+G_DEFINE_TYPE_WITH_CODE (EmpathyThemeAdium, empathy_theme_adium,
+ GTK_TYPE_TEXT_VIEW,
+ G_IMPLEMENT_INTERFACE (EMPATHY_TYPE_CHAT_VIEW,
+ theme_adium_iface_init));
+
+static void
+theme_adium_finalize (GObject *object)
+{
+ G_OBJECT_CLASS (empathy_theme_adium_parent_class)->finalize (object);
+}
+
+static void
+empathy_theme_adium_class_init (EmpathyThemeAdiumClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ object_class->finalize = theme_adium_finalize;
+
+ g_type_class_add_private (object_class, sizeof (EmpathyThemeAdiumPriv));
+}
+
+static void
+empathy_theme_adium_init (EmpathyThemeAdium *view)
+{
+ EmpathyThemeAdiumPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (view,
+ EMPATHY_TYPE_THEME_ADIUM, EmpathyThemeAdiumPriv);
+
+ view->priv = priv;
+}
+
+static void
+theme_adium_scroll_down (EmpathyChatView *view)
+{
+}
+
+static void
+theme_adium_append_message (EmpathyChatView *view,
+ EmpathyMessage *msg)
+{
+}
+
+static void
+theme_adium_append_event (EmpathyChatView *view,
+ const gchar *str)
+{
+}
+
+static void
+theme_adium_scroll (EmpathyChatView *view,
+ gboolean allow_scrolling)
+{
+}
+
+static gboolean
+theme_adium_get_has_selection (EmpathyChatView *view)
+{
+ return FALSE;
+}
+
+static void
+theme_adium_clear (EmpathyChatView *view)
+{
+}
+
+static gboolean
+theme_adium_find_previous (EmpathyChatView *view,
+ const gchar *search_criteria,
+ gboolean new_search)
+{
+ return FALSE;
+}
+
+static gboolean
+theme_adium_find_next (EmpathyChatView *view,
+ const gchar *search_criteria,
+ gboolean new_search)
+{
+ return FALSE;
+}
+
+static void
+theme_adium_find_abilities (EmpathyChatView *view,
+ const gchar *search_criteria,
+ gboolean *can_do_previous,
+ gboolean *can_do_next)
+{
+}
+
+static void
+theme_adium_highlight (EmpathyChatView *view,
+ const gchar *text)
+{
+}
+
+static void
+theme_adium_copy_clipboard (EmpathyChatView *view)
+{
+}
+
+static void
+theme_adium_iface_init (EmpathyChatViewIface *iface)
+{
+ iface->append_message = theme_adium_append_message;
+ iface->append_event = theme_adium_append_event;
+ iface->scroll = theme_adium_scroll;
+ iface->scroll_down = theme_adium_scroll_down;
+ iface->get_has_selection = theme_adium_get_has_selection;
+ iface->clear = theme_adium_clear;
+ iface->find_previous = theme_adium_find_previous;
+ iface->find_next = theme_adium_find_next;
+ iface->find_abilities = theme_adium_find_abilities;
+ iface->highlight = theme_adium_highlight;
+ iface->copy_clipboard = theme_adium_copy_clipboard;
+}
+
+EmpathyThemeAdium *
+empathy_theme_adium_new (void)
+{
+ return g_object_new (EMPATHY_TYPE_THEME_ADIUM, NULL);
+}
+
diff --git a/libempathy-gtk/empathy-theme-adium.h b/libempathy-gtk/empathy-theme-adium.h
new file mode 100644
index 000000000..090f61c72
--- /dev/null
+++ b/libempathy-gtk/empathy-theme-adium.h
@@ -0,0 +1,55 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Copyright (C) 2008 Collabora Ltd.
+ *
+ * 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.
+ *
+ * This library 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 this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * Authors: Xavier Claessens <xclaesse@gmail.com>
+ */
+
+#ifndef __EMPATHY_THEME_ADIUM_H__
+#define __EMPATHY_THEME_ADIUM_H__
+
+#include <webkitwebview.h>
+
+#include "empathy-chat-view.h"
+
+G_BEGIN_DECLS
+
+#define EMPATHY_TYPE_THEME_ADIUM (empathy_theme_adium_get_type ())
+#define EMPATHY_THEME_ADIUM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_THEME_ADIUM, EmpathyThemeAdium))
+#define EMPATHY_THEME_ADIUM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_THEME_ADIUM, EmpathyThemeAdiumClass))
+#define EMPATHY_IS_THEME_ADIUM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_THEME_ADIUM))
+#define EMPATHY_IS_THEME_ADIUM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_THEME_ADIUM))
+#define EMPATHY_THEME_ADIUM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_THEME_ADIUM, EmpathyThemeAdiumClass))
+
+typedef struct _EmpathyThemeAdium EmpathyThemeAdium;
+typedef struct _EmpathyThemeAdiumClass EmpathyThemeAdiumClass;
+
+struct _EmpathyThemeAdium {
+ WebKitWebView parent;
+ gpointer priv;
+};
+
+struct _EmpathyThemeAdiumClass {
+ WebKitWebViewClass parent_class;
+};
+
+GType empathy_theme_adium_get_type (void) G_GNUC_CONST;
+EmpathyThemeAdium *empathy_theme_adium_new (void);
+
+G_END_DECLS
+
+#endif /* __EMPATHY_THEME_ADIUM_H__ */
diff --git a/libempathy-gtk/empathy-theme-manager.c b/libempathy-gtk/empathy-theme-manager.c
index 0186b5eb7..fe4e241e6 100644
--- a/libempathy-gtk/empathy-theme-manager.c
+++ b/libempathy-gtk/empathy-theme-manager.c
@@ -35,6 +35,7 @@
#include "empathy-chat-view.h"
#include "empathy-conf.h"
#include "empathy-chat-text-view.h"
+#include "empathy-theme-adium.h"
#include "empathy-theme-boxes.h"
#include "empathy-theme-irc.h"
@@ -61,6 +62,7 @@ static const gchar *themes[] = {
"simple", N_("Simple"),
"clean", N_("Clean"),
"blue", N_("Blue"),
+ "adium", N_("Adium"),
NULL
};
@@ -321,6 +323,9 @@ empathy_theme_manager_create_view (EmpathyThemeManager *manager)
if (strcmp (priv->name, "classic") == 0) {
return EMPATHY_CHAT_VIEW (theme_manager_create_irc_view (manager));
}
+ if (strcmp (priv->name, "adium") == 0) {
+ return EMPATHY_CHAT_VIEW (empathy_theme_adium_new ());
+ }
theme = theme_manager_create_boxes_view (manager);
theme_manager_update_boxes_theme (manager, theme);