2011-11-07 13:46:58 -06:00
|
|
|
/*
|
2016-02-04 03:20:42 -06:00
|
|
|
* xed-changecase-plugin.c
|
2016-12-26 15:08:36 -06:00
|
|
|
*
|
2011-11-07 13:46:58 -06:00
|
|
|
* Copyright (C) 2004-2005 - Paolo Borelli
|
|
|
|
*
|
|
|
|
* 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:08:36 -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
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2016-02-04 03:20:42 -06:00
|
|
|
#include "xed-changecase-plugin.h"
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
#include <glib/gi18n-lib.h>
|
|
|
|
#include <gmodule.h>
|
2016-12-26 15:08:36 -06:00
|
|
|
#include <libpeas/peas-activatable.h>
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
#include <xed/xed-window.h>
|
2016-02-04 03:20:42 -06:00
|
|
|
#include <xed/xed-debug.h>
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
#define XED_CHANGECASE_PLUGIN_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), \
|
|
|
|
XED_TYPE_CHANGECASE_PLUGIN, \
|
|
|
|
XedChangecasePluginPrivate))
|
|
|
|
|
|
|
|
static void peas_activatable_iface_init (PeasActivatableInterface *iface);
|
|
|
|
|
|
|
|
G_DEFINE_DYNAMIC_TYPE_EXTENDED (XedChangecasePlugin,
|
|
|
|
xed_changecase_plugin,
|
|
|
|
PEAS_TYPE_EXTENSION_BASE,
|
|
|
|
0,
|
|
|
|
G_IMPLEMENT_INTERFACE_DYNAMIC (PEAS_TYPE_ACTIVATABLE,
|
|
|
|
peas_activatable_iface_init))
|
|
|
|
|
|
|
|
struct _XedChangecasePluginPrivate
|
|
|
|
{
|
|
|
|
GtkWidget *window;
|
|
|
|
GtkActionGroup *action_group;
|
|
|
|
guint ui_id;
|
|
|
|
};
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_OBJECT
|
|
|
|
};
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
typedef enum {
|
2016-12-26 15:08:36 -06:00
|
|
|
TO_UPPER_CASE,
|
|
|
|
TO_LOWER_CASE,
|
|
|
|
INVERT_CASE,
|
|
|
|
TO_TITLE_CASE,
|
2011-11-07 13:46:58 -06:00
|
|
|
} ChangeCaseChoice;
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_upper_case (GtkTextBuffer *buffer,
|
|
|
|
GtkTextIter *start,
|
|
|
|
GtkTextIter *end)
|
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
GString *s = g_string_new (NULL);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
while (!gtk_text_iter_is_end (start) && !gtk_text_iter_equal (start, end))
|
|
|
|
{
|
|
|
|
gunichar c, nc;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
c = gtk_text_iter_get_char (start);
|
|
|
|
nc = g_unichar_toupper (c);
|
|
|
|
g_string_append_unichar (s, nc);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
gtk_text_iter_forward_char (start);
|
|
|
|
}
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
gtk_text_buffer_delete_selection (buffer, TRUE, TRUE);
|
|
|
|
gtk_text_buffer_insert_at_cursor (buffer, s->str, s->len);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
g_string_free (s, TRUE);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_lower_case (GtkTextBuffer *buffer,
|
|
|
|
GtkTextIter *start,
|
|
|
|
GtkTextIter *end)
|
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
GString *s = g_string_new (NULL);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
while (!gtk_text_iter_is_end (start) && !gtk_text_iter_equal (start, end))
|
|
|
|
{
|
|
|
|
gunichar c, nc;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
c = gtk_text_iter_get_char (start);
|
|
|
|
nc = g_unichar_tolower (c);
|
|
|
|
g_string_append_unichar (s, nc);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
gtk_text_iter_forward_char (start);
|
|
|
|
}
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
gtk_text_buffer_delete_selection (buffer, TRUE, TRUE);
|
|
|
|
gtk_text_buffer_insert_at_cursor (buffer, s->str, s->len);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
g_string_free (s, TRUE);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_invert_case (GtkTextBuffer *buffer,
|
|
|
|
GtkTextIter *start,
|
|
|
|
GtkTextIter *end)
|
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
GString *s = g_string_new (NULL);
|
|
|
|
|
|
|
|
while (!gtk_text_iter_is_end (start) && !gtk_text_iter_equal (start, end))
|
|
|
|
{
|
|
|
|
gunichar c, nc;
|
|
|
|
|
|
|
|
c = gtk_text_iter_get_char (start);
|
|
|
|
if (g_unichar_islower (c))
|
|
|
|
{
|
|
|
|
nc = g_unichar_toupper (c);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nc = g_unichar_tolower (c);
|
|
|
|
}
|
|
|
|
g_string_append_unichar (s, nc);
|
|
|
|
|
|
|
|
gtk_text_iter_forward_char (start);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_text_buffer_delete_selection (buffer, TRUE, TRUE);
|
|
|
|
gtk_text_buffer_insert_at_cursor (buffer, s->str, s->len);
|
|
|
|
|
|
|
|
g_string_free (s, TRUE);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_title_case (GtkTextBuffer *buffer,
|
|
|
|
GtkTextIter *start,
|
|
|
|
GtkTextIter *end)
|
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
GString *s = g_string_new (NULL);
|
|
|
|
|
|
|
|
while (!gtk_text_iter_is_end (start) && !gtk_text_iter_equal (start, end))
|
|
|
|
{
|
|
|
|
gunichar c, nc;
|
|
|
|
|
|
|
|
c = gtk_text_iter_get_char (start);
|
|
|
|
if (gtk_text_iter_starts_word (start))
|
|
|
|
{
|
|
|
|
nc = g_unichar_totitle (c);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nc = g_unichar_tolower (c);
|
|
|
|
}
|
|
|
|
g_string_append_unichar (s, nc);
|
|
|
|
|
|
|
|
gtk_text_iter_forward_char (start);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_text_buffer_delete_selection (buffer, TRUE, TRUE);
|
|
|
|
gtk_text_buffer_insert_at_cursor (buffer, s->str, s->len);
|
|
|
|
|
|
|
|
g_string_free (s, TRUE);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-26 15:08:36 -06:00
|
|
|
change_case (XedWindow *window,
|
2011-11-07 13:46:58 -06:00
|
|
|
ChangeCaseChoice choice)
|
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
XedDocument *doc;
|
|
|
|
GtkTextIter start, end;
|
|
|
|
|
|
|
|
xed_debug (DEBUG_PLUGINS);
|
|
|
|
|
|
|
|
doc = xed_window_get_active_document (window);
|
|
|
|
g_return_if_fail (doc != NULL);
|
|
|
|
|
|
|
|
if (!gtk_text_buffer_get_selection_bounds (GTK_TEXT_BUFFER (doc), &start, &end))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_text_buffer_begin_user_action (GTK_TEXT_BUFFER (doc));
|
|
|
|
|
|
|
|
switch (choice)
|
|
|
|
{
|
|
|
|
case TO_UPPER_CASE:
|
|
|
|
do_upper_case (GTK_TEXT_BUFFER (doc), &start, &end);
|
|
|
|
break;
|
|
|
|
case TO_LOWER_CASE:
|
|
|
|
do_lower_case (GTK_TEXT_BUFFER (doc), &start, &end);
|
|
|
|
break;
|
|
|
|
case INVERT_CASE:
|
|
|
|
do_invert_case (GTK_TEXT_BUFFER (doc), &start, &end);
|
|
|
|
break;
|
|
|
|
case TO_TITLE_CASE:
|
|
|
|
do_title_case (GTK_TEXT_BUFFER (doc), &start, &end);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_return_if_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_text_buffer_end_user_action (GTK_TEXT_BUFFER (doc));
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-26 15:08:36 -06:00
|
|
|
upper_case_cb (GtkAction *action,
|
2016-02-04 03:20:42 -06:00
|
|
|
XedWindow *window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
change_case (window, TO_UPPER_CASE);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-26 15:08:36 -06:00
|
|
|
lower_case_cb (GtkAction *action,
|
2016-02-04 03:20:42 -06:00
|
|
|
XedWindow *window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
change_case (window, TO_LOWER_CASE);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-26 15:08:36 -06:00
|
|
|
invert_case_cb (GtkAction *action,
|
2016-02-04 03:20:42 -06:00
|
|
|
XedWindow *window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
change_case (window, INVERT_CASE);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-26 15:08:36 -06:00
|
|
|
title_case_cb (GtkAction *action,
|
2016-02-04 03:20:42 -06:00
|
|
|
XedWindow *window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
change_case (window, TO_TITLE_CASE);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static const GtkActionEntry action_entries[] =
|
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
{ "ChangeCase", NULL, N_("C_hange Case") },
|
|
|
|
{ "UpperCase", NULL, N_("All _Upper Case"), NULL,
|
|
|
|
N_("Change selected text to upper case"),
|
|
|
|
G_CALLBACK (upper_case_cb) },
|
|
|
|
{ "LowerCase", NULL, N_("All _Lower Case"), NULL,
|
|
|
|
N_("Change selected text to lower case"),
|
|
|
|
G_CALLBACK (lower_case_cb) },
|
|
|
|
{ "InvertCase", NULL, N_("_Invert Case"), NULL,
|
|
|
|
N_("Invert the case of selected text"),
|
|
|
|
G_CALLBACK (invert_case_cb) },
|
|
|
|
{ "TitleCase", NULL, N_("_Title Case"), NULL,
|
|
|
|
N_("Capitalize the first letter of each selected word"),
|
|
|
|
G_CALLBACK (title_case_cb) }
|
2011-11-07 13:46:58 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
const gchar submenu[] =
|
|
|
|
"<ui>"
|
|
|
|
" <menubar name='MenuBar'>"
|
|
|
|
" <menu name='EditMenu' action='Edit'>"
|
|
|
|
" <placeholder name='EditOps_6'>"
|
|
|
|
" <menu action='ChangeCase'>"
|
|
|
|
" <menuitem action='UpperCase'/>"
|
|
|
|
" <menuitem action='LowerCase'/>"
|
|
|
|
" <menuitem action='InvertCase'/>"
|
|
|
|
" <menuitem action='TitleCase'/>"
|
|
|
|
" </menu>"
|
|
|
|
" </placeholder>"
|
|
|
|
" </menu>"
|
|
|
|
" </menubar>"
|
|
|
|
"</ui>";
|
|
|
|
|
|
|
|
static void
|
2016-02-04 03:20:42 -06:00
|
|
|
xed_changecase_plugin_init (XedChangecasePlugin *plugin)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
xed_debug_message (DEBUG_PLUGINS, "XedChangecasePlugin initializing");
|
|
|
|
|
|
|
|
plugin->priv = XED_CHANGECASE_PLUGIN_GET_PRIVATE (plugin);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-26 15:08:36 -06:00
|
|
|
xed_changecase_plugin_dispose (GObject *object)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
XedChangecasePlugin *plugin = XED_CHANGECASE_PLUGIN (object);
|
|
|
|
|
|
|
|
xed_debug_message (DEBUG_PLUGINS, "XedChangecasePlugin disposing");
|
|
|
|
|
|
|
|
if (plugin->priv->window != NULL)
|
|
|
|
{
|
|
|
|
g_object_unref (plugin->priv->window);
|
|
|
|
plugin->priv->window = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (plugin->priv->action_group != NULL)
|
|
|
|
{
|
|
|
|
g_object_unref (plugin->priv->action_group);
|
|
|
|
plugin->priv->action_group = NULL;
|
|
|
|
}
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
G_OBJECT_CLASS (xed_changecase_plugin_parent_class)->dispose (object);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
static void
|
|
|
|
xed_changecase_plugin_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
XedChangecasePlugin *plugin = XED_CHANGECASE_PLUGIN (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_OBJECT:
|
|
|
|
plugin->priv->window = GTK_WIDGET (g_value_dup_object (value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
static void
|
2016-12-26 15:08:36 -06:00
|
|
|
xed_changecase_plugin_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
XedChangecasePlugin *plugin = XED_CHANGECASE_PLUGIN (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_OBJECT:
|
|
|
|
g_value_set_object (value, plugin->priv->window);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-26 15:08:36 -06:00
|
|
|
update_ui (XedChangecasePluginPrivate *data)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
XedWindow *window;
|
|
|
|
GtkTextView *view;
|
|
|
|
GtkAction *action;
|
|
|
|
gboolean sensitive = FALSE;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
xed_debug (DEBUG_PLUGINS);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
window = XED_WINDOW (data->window);
|
|
|
|
view = GTK_TEXT_VIEW (xed_window_get_active_view (window));
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
if (view != NULL)
|
|
|
|
{
|
|
|
|
GtkTextBuffer *buffer;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
buffer = gtk_text_view_get_buffer (view);
|
|
|
|
sensitive = (gtk_text_view_get_editable (view) && gtk_text_buffer_get_has_selection (buffer));
|
|
|
|
}
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
action = gtk_action_group_get_action (data->action_group, "ChangeCase");
|
|
|
|
gtk_action_set_sensitive (action, sensitive);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-26 15:08:36 -06:00
|
|
|
xed_changecase_plugin_activate (PeasActivatable *activatable)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
XedChangecasePluginPrivate *data;
|
|
|
|
XedWindow *window;
|
|
|
|
GtkUIManager *manager;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
xed_debug (DEBUG_PLUGINS);
|
|
|
|
|
|
|
|
data = XED_CHANGECASE_PLUGIN (activatable)->priv;
|
|
|
|
window = XED_WINDOW (data->window);
|
|
|
|
|
|
|
|
manager = xed_window_get_ui_manager (window);
|
|
|
|
|
|
|
|
data->action_group = gtk_action_group_new ("XedChangecasePluginActions");
|
|
|
|
gtk_action_group_set_translation_domain (data->action_group, GETTEXT_PACKAGE);
|
|
|
|
gtk_action_group_add_actions (data->action_group, action_entries, G_N_ELEMENTS (action_entries), window);
|
|
|
|
|
|
|
|
gtk_ui_manager_insert_action_group (manager, data->action_group, -1);
|
|
|
|
|
|
|
|
data->ui_id = gtk_ui_manager_add_ui_from_string (manager, submenu, -1, &error);
|
|
|
|
if (data->ui_id == 0)
|
|
|
|
{
|
|
|
|
g_warning ("%s", error->message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
update_ui (data);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-26 15:08:36 -06:00
|
|
|
xed_changecase_plugin_deactivate (PeasActivatable *activatable)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
XedChangecasePluginPrivate *data;
|
|
|
|
XedWindow *window;
|
|
|
|
GtkUIManager *manager;
|
|
|
|
|
|
|
|
xed_debug (DEBUG_PLUGINS);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
data = XED_CHANGECASE_PLUGIN (activatable)->priv;
|
|
|
|
window = XED_WINDOW (data->window);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
manager = xed_window_get_ui_manager (window);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
gtk_ui_manager_remove_ui (manager, data->ui_id);
|
|
|
|
gtk_ui_manager_remove_action_group (manager, data->action_group);
|
|
|
|
}
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
static void
|
|
|
|
xed_changecase_plugin_update_state (PeasActivatable *activatable)
|
|
|
|
{
|
|
|
|
xed_debug (DEBUG_PLUGINS);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
update_ui (XED_CHANGECASE_PLUGIN (activatable)->priv);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-26 15:08:36 -06:00
|
|
|
xed_changecase_plugin_class_init (XedChangecasePluginClass *klass)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
object_class->dispose = xed_changecase_plugin_dispose;
|
|
|
|
object_class->set_property = xed_changecase_plugin_set_property;
|
|
|
|
object_class->get_property = xed_changecase_plugin_get_property;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
g_object_class_override_property (object_class, PROP_OBJECT, "object");
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
g_type_class_add_private (klass, sizeof (XedChangecasePluginPrivate));
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-26 15:08:36 -06:00
|
|
|
xed_changecase_plugin_class_finalize (XedChangecasePluginClass *klass)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2016-12-26 15:08:36 -06:00
|
|
|
/* dummy function - used by G_DEFINE_DYNAMIC_TYPE_EXTENDED */
|
|
|
|
}
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
static void
|
|
|
|
peas_activatable_iface_init (PeasActivatableInterface *iface)
|
|
|
|
{
|
|
|
|
iface->activate = xed_changecase_plugin_activate;
|
|
|
|
iface->deactivate = xed_changecase_plugin_deactivate;
|
|
|
|
iface->update_state = xed_changecase_plugin_update_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_MODULE_EXPORT void
|
|
|
|
peas_register_types (PeasObjectModule *module)
|
|
|
|
{
|
|
|
|
xed_changecase_plugin_register_type (G_TYPE_MODULE (module));
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2016-12-26 15:08:36 -06:00
|
|
|
peas_object_module_register_extension_type (module,
|
|
|
|
PEAS_TYPE_ACTIVATABLE,
|
|
|
|
XED_TYPE_CHANGECASE_PLUGIN);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|