2011-11-07 13:46:58 -06:00
|
|
|
/*
|
2016-02-04 03:20:42 -06:00
|
|
|
* xed-modeline-plugin.c
|
|
|
|
* Emacs, Kate and Vim-style modelines support for xed.
|
2016-12-26 15:29:33 -06:00
|
|
|
*
|
2011-11-07 13:46:58 -06:00
|
|
|
* Copyright (C) 2005-2007 - Steve Frécinaux <code@istique.net>
|
|
|
|
*
|
|
|
|
* 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.
|
2016-12-26 15:29:33 -06:00
|
|
|
*
|
2011-11-07 13:46:58 -06:00
|
|
|
* 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
|
2012-11-18 19:54:49 -06:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
2011-11-07 13:46:58 -06:00
|
|
|
*/
|
2016-12-26 15:29:33 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2017-01-09 13:57:48 -06:00
|
|
|
# include <config.h>
|
2011-11-07 13:46:58 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <glib/gi18n-lib.h>
|
|
|
|
#include <gmodule.h>
|
2016-02-04 03:20:42 -06:00
|
|
|
#include "xed-modeline-plugin.h"
|
2011-11-07 13:46:58 -06:00
|
|
|
#include "modeline-parser.h"
|
|
|
|
|
2016-02-04 03:20:42 -06:00
|
|
|
#include <xed/xed-debug.h>
|
2017-01-09 13:57:48 -06:00
|
|
|
#include <xed/xed-view-activatable.h>
|
|
|
|
#include <xed/xed-view.h>
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:29:33 -06:00
|
|
|
struct _XedModelinePluginPrivate
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-01-09 13:57:48 -06:00
|
|
|
XedView *view;
|
2016-12-26 15:29:33 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
gulong document_loaded_handler_id;
|
|
|
|
gulong document_saved_handler_id;
|
2016-12-26 15:29:33 -06:00
|
|
|
};
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:29:33 -06:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2017-01-09 13:57:48 -06:00
|
|
|
PROP_VIEW
|
2016-12-26 15:29:33 -06:00
|
|
|
};
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
static void xed_view_activatable_iface_init (XedViewActivatableInterface *iface);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:29:33 -06:00
|
|
|
G_DEFINE_DYNAMIC_TYPE_EXTENDED (XedModelinePlugin,
|
|
|
|
xed_modeline_plugin,
|
|
|
|
PEAS_TYPE_EXTENSION_BASE,
|
|
|
|
0,
|
2017-01-09 13:57:48 -06:00
|
|
|
G_IMPLEMENT_INTERFACE_DYNAMIC (XED_TYPE_VIEW_ACTIVATABLE,
|
|
|
|
xed_view_activatable_iface_init))
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
static void
|
2016-12-26 15:29:33 -06:00
|
|
|
xed_modeline_plugin_constructed (GObject *object)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-01-09 13:57:48 -06:00
|
|
|
gchar *data_dir;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
data_dir = peas_extension_base_get_data_dir (PEAS_EXTENSION_BASE (object));
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
modeline_parser_init (data_dir);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
g_free (data_dir);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
G_OBJECT_CLASS (xed_modeline_plugin_parent_class)->constructed (object);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-02-04 03:20:42 -06:00
|
|
|
xed_modeline_plugin_init (XedModelinePlugin *plugin)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-01-09 13:57:48 -06:00
|
|
|
xed_debug_message (DEBUG_PLUGINS, "XedModelinePlugin initializing");
|
2016-12-26 15:29:33 -06:00
|
|
|
|
|
|
|
plugin->priv = G_TYPE_INSTANCE_GET_PRIVATE (plugin,
|
|
|
|
XED_TYPE_MODELINE_PLUGIN,
|
|
|
|
XedModelinePluginPrivate);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-09 13:57:48 -06:00
|
|
|
xed_modeline_plugin_dispose (GObject *object)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-01-09 13:57:48 -06:00
|
|
|
XedModelinePlugin *plugin = XED_MODELINE_PLUGIN (object);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
xed_debug_message (DEBUG_PLUGINS, "XedModelinePlugin disposing");
|
|
|
|
|
|
|
|
g_clear_object (&plugin->priv->view);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
G_OBJECT_CLASS (xed_modeline_plugin_parent_class)->dispose (object);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
2016-12-26 15:29:33 -06:00
|
|
|
static void
|
2017-01-09 13:57:48 -06:00
|
|
|
xed_modeline_plugin_finalize (GObject *object)
|
2016-12-26 15:29:33 -06:00
|
|
|
{
|
2017-01-09 13:57:48 -06:00
|
|
|
xed_debug_message (DEBUG_PLUGINS, "XedModelinePlugin finalizing");
|
2016-12-26 15:29:33 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
modeline_parser_shutdown ();
|
2016-12-26 15:29:33 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
G_OBJECT_CLASS (xed_modeline_plugin_parent_class)->finalize (object);
|
2016-12-26 15:29:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
xed_modeline_plugin_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
XedModelinePlugin *plugin = XED_MODELINE_PLUGIN (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2017-01-09 13:57:48 -06:00
|
|
|
case PROP_VIEW:
|
|
|
|
plugin->priv->view = XED_VIEW (g_value_dup_object (value));
|
2016-12-26 15:29:33 -06:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
xed_modeline_plugin_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
XedModelinePlugin *plugin = XED_MODELINE_PLUGIN (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2017-01-09 13:57:48 -06:00
|
|
|
case PROP_VIEW:
|
|
|
|
g_value_set_object (value, plugin->priv->view);
|
2016-12-26 15:29:33 -06:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
static void
|
2017-01-09 13:57:48 -06:00
|
|
|
on_document_loaded_or_saved (XedDocument *document,
|
|
|
|
const GError *error,
|
|
|
|
GtkSourceView *view)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-01-09 13:57:48 -06:00
|
|
|
modeline_parser_apply_modeline (view);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-09 13:57:48 -06:00
|
|
|
xed_modeline_plugin_activate (XedViewActivatable *activatable)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-01-09 13:57:48 -06:00
|
|
|
XedModelinePlugin *plugin;
|
|
|
|
GtkTextBuffer *doc;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
xed_debug (DEBUG_PLUGINS);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
plugin = XED_MODELINE_PLUGIN (activatable);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
modeline_parser_apply_modeline (GTK_SOURCE_VIEW (plugin->priv->view));
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
doc = gtk_text_view_get_buffer (GTK_TEXT_VIEW (plugin->priv->view));
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
plugin->priv->document_loaded_handler_id =
|
|
|
|
g_signal_connect (doc, "loaded",
|
|
|
|
G_CALLBACK (on_document_loaded_or_saved), plugin->priv->view);
|
|
|
|
plugin->priv->document_saved_handler_id =
|
|
|
|
g_signal_connect (doc, "saved",
|
|
|
|
G_CALLBACK (on_document_loaded_or_saved), plugin->priv->view);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-09 13:57:48 -06:00
|
|
|
xed_modeline_plugin_deactivate (XedViewActivatable *activatable)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2017-01-09 13:57:48 -06:00
|
|
|
XedModelinePlugin *plugin;
|
|
|
|
GtkTextBuffer *doc;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
xed_debug (DEBUG_PLUGINS);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
plugin = XED_MODELINE_PLUGIN (activatable);
|
2016-12-26 15:29:33 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
doc = gtk_text_view_get_buffer (GTK_TEXT_VIEW (plugin->priv->view));
|
2016-12-26 15:29:33 -06:00
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
g_signal_handler_disconnect (doc, plugin->priv->document_loaded_handler_id);
|
|
|
|
g_signal_handler_disconnect (doc, plugin->priv->document_saved_handler_id);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
2016-12-26 15:29:33 -06:00
|
|
|
static void
|
|
|
|
xed_modeline_plugin_class_init (XedModelinePluginClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->constructed = xed_modeline_plugin_constructed;
|
|
|
|
object_class->dispose = xed_modeline_plugin_dispose;
|
2017-01-09 13:57:48 -06:00
|
|
|
object_class->finalize = xed_modeline_plugin_finalize;
|
2016-12-26 15:29:33 -06:00
|
|
|
object_class->set_property = xed_modeline_plugin_set_property;
|
|
|
|
object_class->get_property = xed_modeline_plugin_get_property;
|
|
|
|
|
2017-01-09 13:57:48 -06:00
|
|
|
g_object_class_override_property (object_class, PROP_VIEW, "view");
|
2016-12-26 15:29:33 -06:00
|
|
|
|
|
|
|
g_type_class_add_private (klass, sizeof (XedModelinePluginPrivate));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-09 13:57:48 -06:00
|
|
|
xed_view_activatable_iface_init (XedViewActivatableInterface *iface)
|
2016-12-26 15:29:33 -06:00
|
|
|
{
|
2017-01-09 13:57:48 -06:00
|
|
|
iface->activate = xed_modeline_plugin_activate;
|
|
|
|
iface->deactivate = xed_modeline_plugin_deactivate;
|
2016-12-26 15:29:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-09 13:57:48 -06:00
|
|
|
xed_modeline_plugin_class_finalize (XedModelinePluginClass *klass)
|
2016-12-26 15:29:33 -06:00
|
|
|
{
|
2017-01-09 13:57:48 -06:00
|
|
|
/* dummy function - used by G_DEFINE_DYNAMIC_TYPE_EXTENDED */
|
2016-12-26 15:29:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
G_MODULE_EXPORT void
|
|
|
|
peas_register_types (PeasObjectModule *module)
|
|
|
|
{
|
|
|
|
xed_modeline_plugin_register_type (G_TYPE_MODULE (module));
|
|
|
|
|
|
|
|
peas_object_module_register_extension_type (module,
|
2017-01-09 13:57:48 -06:00
|
|
|
XED_TYPE_VIEW_ACTIVATABLE,
|
2016-12-26 15:29:33 -06:00
|
|
|
XED_TYPE_MODELINE_PLUGIN);
|
|
|
|
}
|