sort-plugin: Port the sort plugin to WindowActivatable
This commit is contained in:
parent
e1fad74898
commit
f65ce8f7ca
|
@ -1,11 +1,13 @@
|
||||||
DIST_SUBDIRS = \
|
DIST_SUBDIRS = \
|
||||||
docinfo \
|
docinfo \
|
||||||
filebrowser \
|
filebrowser \
|
||||||
modelines
|
modelines \
|
||||||
|
sort
|
||||||
|
|
||||||
SUBDIRS = \
|
SUBDIRS = \
|
||||||
docinfo \
|
docinfo \
|
||||||
filebrowser \
|
filebrowser \
|
||||||
modelines
|
modelines \
|
||||||
|
sort
|
||||||
|
|
||||||
-include $(top_srcdir)/git.mk
|
-include $(top_srcdir)/git.mk
|
||||||
|
|
|
@ -28,11 +28,10 @@
|
||||||
#include "xed-sort-plugin.h"
|
#include "xed-sort-plugin.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <glib/gi18n-lib.h>
|
#include <glib/gi18n.h>
|
||||||
#include <gmodule.h>
|
|
||||||
#include <libpeas/peas-activatable.h>
|
|
||||||
|
|
||||||
#include <xed/xed-window.h>
|
#include <xed/xed-window.h>
|
||||||
|
#include <xed/xed-window-activatable.h>
|
||||||
#include <xed/xed-debug.h>
|
#include <xed/xed-debug.h>
|
||||||
#include <xed/xed-utils.h>
|
#include <xed/xed-utils.h>
|
||||||
#include <xed/xed-help.h>
|
#include <xed/xed-help.h>
|
||||||
|
@ -41,53 +40,49 @@
|
||||||
|
|
||||||
#define MENU_PATH "/MenuBar/EditMenu/EditOps_6"
|
#define MENU_PATH "/MenuBar/EditMenu/EditOps_6"
|
||||||
|
|
||||||
static void peas_activatable_iface_init (PeasActivatableInterface *iface);
|
static void xed_window_activatable_iface_init (XedWindowActivatableInterface *iface);
|
||||||
|
|
||||||
G_DEFINE_DYNAMIC_TYPE_EXTENDED (XedSortPlugin,
|
G_DEFINE_DYNAMIC_TYPE_EXTENDED (XedSortPlugin,
|
||||||
xed_sort_plugin,
|
xed_sort_plugin,
|
||||||
PEAS_TYPE_EXTENSION_BASE,
|
PEAS_TYPE_EXTENSION_BASE,
|
||||||
0,
|
0,
|
||||||
G_IMPLEMENT_INTERFACE_DYNAMIC (PEAS_TYPE_ACTIVATABLE,
|
G_IMPLEMENT_INTERFACE_DYNAMIC (XED_TYPE_WINDOW_ACTIVATABLE,
|
||||||
peas_activatable_iface_init))
|
xed_window_activatable_iface_init))
|
||||||
|
|
||||||
enum
|
struct _XedSortPluginPrivate
|
||||||
{
|
{
|
||||||
PROP_0,
|
XedWindow *window;
|
||||||
PROP_OBJECT
|
|
||||||
};
|
GtkActionGroup *ui_action_group;
|
||||||
|
guint ui_id;
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
GtkWidget *dialog;
|
GtkWidget *dialog;
|
||||||
GtkWidget *col_num_spinbutton;
|
GtkWidget *col_num_spinbutton;
|
||||||
GtkWidget *reverse_order_checkbutton;
|
GtkWidget *reverse_order_checkbutton;
|
||||||
GtkWidget *ignore_case_checkbutton;
|
GtkWidget *ignore_case_checkbutton;
|
||||||
GtkWidget *remove_dups_checkbutton;
|
GtkWidget *remove_dups_checkbutton;
|
||||||
|
|
||||||
XedDocument *doc;
|
|
||||||
|
|
||||||
GtkTextIter start, end; /* selection */
|
GtkTextIter start, end; /* selection */
|
||||||
} SortDialog;
|
|
||||||
|
|
||||||
struct _XedSortPluginPrivate
|
|
||||||
{
|
|
||||||
GtkWidget *window;
|
|
||||||
|
|
||||||
GtkActionGroup *ui_action_group;
|
|
||||||
guint ui_id;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
gboolean ignore_case;
|
|
||||||
gboolean reverse_order;
|
|
||||||
gboolean remove_duplicates;
|
|
||||||
gint starting_column;
|
gint starting_column;
|
||||||
|
|
||||||
|
guint ignore_case : 1;
|
||||||
|
guint reverse_order : 1;
|
||||||
|
guint remove_duplicates : 1;
|
||||||
} SortInfo;
|
} SortInfo;
|
||||||
|
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
PROP_0,
|
||||||
|
PROP_WINDOW
|
||||||
|
};
|
||||||
|
|
||||||
static void sort_cb (GtkAction *action,
|
static void sort_cb (GtkAction *action,
|
||||||
XedSortPlugin *plugin);
|
XedSortPlugin *plugin);
|
||||||
static void sort_real (SortDialog *dialog);
|
static void sort_real (XedSortPlugin *plugin);
|
||||||
|
|
||||||
static const GtkActionEntry action_entries[] =
|
static const GtkActionEntry action_entries[] =
|
||||||
{
|
{
|
||||||
|
@ -101,34 +96,25 @@ static const GtkActionEntry action_entries[] =
|
||||||
};
|
};
|
||||||
|
|
||||||
static void
|
static void
|
||||||
sort_dialog_destroy (GObject *obj,
|
sort_dialog_response_handler (GtkDialog *dlg,
|
||||||
gpointer dialog_pointer)
|
gint res_id,
|
||||||
{
|
XedSortPlugin *plugin)
|
||||||
xed_debug (DEBUG_PLUGINS);
|
|
||||||
|
|
||||||
g_slice_free (SortDialog, dialog_pointer);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
sort_dialog_response_handler (GtkDialog *widget,
|
|
||||||
gint res_id,
|
|
||||||
SortDialog *dialog)
|
|
||||||
{
|
{
|
||||||
xed_debug (DEBUG_PLUGINS);
|
xed_debug (DEBUG_PLUGINS);
|
||||||
|
|
||||||
switch (res_id)
|
switch (res_id)
|
||||||
{
|
{
|
||||||
case GTK_RESPONSE_OK:
|
case GTK_RESPONSE_OK:
|
||||||
sort_real (dialog);
|
sort_real (plugin);
|
||||||
gtk_widget_destroy (dialog->dialog);
|
gtk_widget_destroy (GTK_WIDGET (dlg));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GTK_RESPONSE_HELP:
|
case GTK_RESPONSE_HELP:
|
||||||
xed_help_display (GTK_WINDOW (widget), NULL, "xed-sort-plugin");
|
xed_help_display (GTK_WINDOW (dlg), NULL, "xed-sort-plugin");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GTK_RESPONSE_CANCEL:
|
case GTK_RESPONSE_CANCEL:
|
||||||
gtk_widget_destroy (dialog->dialog);
|
gtk_widget_destroy (GTK_WIDGET (dlg));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -137,27 +123,28 @@ sort_dialog_response_handler (GtkDialog *widget,
|
||||||
* the text field (like the combo box) looses the documnent selection.
|
* the text field (like the combo box) looses the documnent selection.
|
||||||
* Storing the selection ONLY works because the dialog is modal */
|
* Storing the selection ONLY works because the dialog is modal */
|
||||||
static void
|
static void
|
||||||
get_current_selection (XedWindow *window,
|
get_current_selection (XedSortPlugin *plugin)
|
||||||
SortDialog *dialog)
|
|
||||||
{
|
{
|
||||||
|
XedSortPluginPrivate *priv;
|
||||||
XedDocument *doc;
|
XedDocument *doc;
|
||||||
|
|
||||||
xed_debug (DEBUG_PLUGINS);
|
xed_debug (DEBUG_PLUGINS);
|
||||||
|
|
||||||
doc = xed_window_get_active_document (window);
|
priv = plugin->priv;
|
||||||
|
|
||||||
if (!gtk_text_buffer_get_selection_bounds (GTK_TEXT_BUFFER (doc), &dialog->start, &dialog->end))
|
doc = xed_window_get_active_document (priv->window);
|
||||||
|
|
||||||
|
if (!gtk_text_buffer_get_selection_bounds (GTK_TEXT_BUFFER (doc), &priv->start, &priv->end))
|
||||||
{
|
{
|
||||||
/* No selection, get the whole document. */
|
/* No selection, get the whole document. */
|
||||||
gtk_text_buffer_get_bounds (GTK_TEXT_BUFFER (doc), &dialog->start, &dialog->end);
|
gtk_text_buffer_get_bounds (GTK_TEXT_BUFFER (doc), &priv->start, &priv->end);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static SortDialog *
|
static void
|
||||||
get_sort_dialog (XedSortPlugin *plugin)
|
create_sort_dialog (XedSortPlugin *plugin)
|
||||||
{
|
{
|
||||||
XedWindow *window;
|
XedSortPluginPrivate *priv;
|
||||||
SortDialog *dialog;
|
|
||||||
GtkWidget *error_widget;
|
GtkWidget *error_widget;
|
||||||
gboolean ret;
|
gboolean ret;
|
||||||
gchar *data_dir;
|
gchar *data_dir;
|
||||||
|
@ -165,22 +152,20 @@ get_sort_dialog (XedSortPlugin *plugin)
|
||||||
|
|
||||||
xed_debug (DEBUG_PLUGINS);
|
xed_debug (DEBUG_PLUGINS);
|
||||||
|
|
||||||
window = XED_WINDOW (plugin->priv->window);
|
priv = plugin->priv;
|
||||||
|
|
||||||
dialog = g_slice_new (SortDialog);
|
|
||||||
|
|
||||||
data_dir = peas_extension_base_get_data_dir (PEAS_EXTENSION_BASE (plugin));
|
data_dir = peas_extension_base_get_data_dir (PEAS_EXTENSION_BASE (plugin));
|
||||||
ui_file = g_build_filename (data_dir, "sort.ui", NULL);
|
ui_file = g_build_filename (data_dir, "sort.ui", NULL);
|
||||||
g_free (data_dir);
|
|
||||||
ret = xed_utils_get_ui_objects (ui_file,
|
ret = xed_utils_get_ui_objects (ui_file,
|
||||||
NULL,
|
NULL,
|
||||||
&error_widget,
|
&error_widget,
|
||||||
"sort_dialog", &dialog->dialog,
|
"sort_dialog", &priv->dialog,
|
||||||
"reverse_order_checkbutton", &dialog->reverse_order_checkbutton,
|
"reverse_order_checkbutton", &priv->reverse_order_checkbutton,
|
||||||
"col_num_spinbutton", &dialog->col_num_spinbutton,
|
"col_num_spinbutton", &priv->col_num_spinbutton,
|
||||||
"ignore_case_checkbutton", &dialog->ignore_case_checkbutton,
|
"ignore_case_checkbutton", &priv->ignore_case_checkbutton,
|
||||||
"remove_dups_checkbutton", &dialog->remove_dups_checkbutton,
|
"remove_dups_checkbutton", &priv->remove_dups_checkbutton,
|
||||||
NULL);
|
NULL);
|
||||||
|
g_free (data_dir);
|
||||||
g_free (ui_file);
|
g_free (ui_file);
|
||||||
|
|
||||||
if (!ret)
|
if (!ret)
|
||||||
|
@ -188,52 +173,41 @@ get_sort_dialog (XedSortPlugin *plugin)
|
||||||
const gchar *err_message;
|
const gchar *err_message;
|
||||||
|
|
||||||
err_message = gtk_label_get_label (GTK_LABEL (error_widget));
|
err_message = gtk_label_get_label (GTK_LABEL (error_widget));
|
||||||
xed_warning (GTK_WINDOW (window), "%s", err_message);
|
xed_warning (GTK_WINDOW (priv->window), "%s", err_message);
|
||||||
|
|
||||||
g_slice_free (SortDialog, dialog);
|
|
||||||
gtk_widget_destroy (error_widget);
|
gtk_widget_destroy (error_widget);
|
||||||
|
|
||||||
return NULL;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
gtk_dialog_set_default_response (GTK_DIALOG (dialog->dialog), GTK_RESPONSE_OK);
|
gtk_dialog_set_default_response (GTK_DIALOG (priv->dialog), GTK_RESPONSE_OK);
|
||||||
|
|
||||||
g_signal_connect (dialog->dialog, "destroy", G_CALLBACK (sort_dialog_destroy), dialog);
|
g_signal_connect (priv->dialog, "destroy", G_CALLBACK (gtk_widget_destroyed), &priv->dialog);
|
||||||
g_signal_connect (dialog->dialog, "response", G_CALLBACK (sort_dialog_response_handler), dialog);
|
g_signal_connect (priv->dialog, "response", G_CALLBACK (sort_dialog_response_handler), plugin);
|
||||||
|
|
||||||
get_current_selection (window, dialog);
|
get_current_selection (plugin);
|
||||||
|
|
||||||
return dialog;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
sort_cb (GtkAction *action,
|
sort_cb (GtkAction *action,
|
||||||
XedSortPlugin *plugin)
|
XedSortPlugin *plugin)
|
||||||
{
|
{
|
||||||
XedWindow *window;
|
XedSortPluginPrivate *priv;
|
||||||
XedDocument *doc;
|
|
||||||
GtkWindowGroup *wg;
|
GtkWindowGroup *wg;
|
||||||
SortDialog *dialog;
|
|
||||||
|
|
||||||
xed_debug (DEBUG_PLUGINS);
|
xed_debug (DEBUG_PLUGINS);
|
||||||
|
|
||||||
window = XED_WINDOW (plugin->priv->window);
|
priv = plugin->priv;
|
||||||
|
|
||||||
doc = xed_window_get_active_document (window);
|
create_sort_dialog (plugin);
|
||||||
g_return_if_fail (doc != NULL);
|
|
||||||
|
|
||||||
dialog = get_sort_dialog (plugin);
|
wg = xed_window_get_group (priv->window);
|
||||||
g_return_if_fail (dialog != NULL);
|
gtk_window_group_add_window (wg, GTK_WINDOW (priv->dialog));
|
||||||
|
|
||||||
wg = xed_window_get_group (window);
|
gtk_window_set_transient_for (GTK_WINDOW (priv->dialog), GTK_WINDOW (priv->window));
|
||||||
gtk_window_group_add_window (wg, GTK_WINDOW (dialog->dialog));
|
gtk_window_set_modal (GTK_WINDOW (priv->dialog), TRUE);
|
||||||
|
|
||||||
dialog->doc = doc;
|
gtk_widget_show (GTK_WIDGET (priv->dialog));
|
||||||
|
|
||||||
gtk_window_set_transient_for (GTK_WINDOW (dialog->dialog), GTK_WINDOW (window));
|
|
||||||
gtk_window_set_modal (GTK_WINDOW (dialog->dialog), TRUE);
|
|
||||||
|
|
||||||
gtk_widget_show (GTK_WIDGET (dialog->dialog));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Compares two strings for the sorting algorithm. Uses the UTF-8 processing
|
/* Compares two strings for the sorting algorithm. Uses the UTF-8 processing
|
||||||
|
@ -344,8 +318,9 @@ get_line_slice (GtkTextBuffer *buf,
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
sort_real (SortDialog *dialog)
|
sort_real (XedSortPlugin *plugin)
|
||||||
{
|
{
|
||||||
|
XedSortPluginPrivate *priv;
|
||||||
XedDocument *doc;
|
XedDocument *doc;
|
||||||
GtkTextIter start, end;
|
GtkTextIter start, end;
|
||||||
gint start_line, end_line;
|
gint start_line, end_line;
|
||||||
|
@ -357,17 +332,19 @@ sort_real (SortDialog *dialog)
|
||||||
|
|
||||||
xed_debug (DEBUG_PLUGINS);
|
xed_debug (DEBUG_PLUGINS);
|
||||||
|
|
||||||
doc = dialog->doc;
|
priv = plugin->priv;
|
||||||
|
|
||||||
|
doc = xed_window_get_active_document (priv->window);
|
||||||
g_return_if_fail (doc != NULL);
|
g_return_if_fail (doc != NULL);
|
||||||
|
|
||||||
sort_info = g_new0 (SortInfo, 1);
|
sort_info = g_slice_new (SortInfo);
|
||||||
sort_info->ignore_case = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dialog->ignore_case_checkbutton));
|
sort_info->ignore_case = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->ignore_case_checkbutton));
|
||||||
sort_info->reverse_order = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dialog->reverse_order_checkbutton));
|
sort_info->reverse_order = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->reverse_order_checkbutton));
|
||||||
sort_info->remove_duplicates = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dialog->remove_dups_checkbutton));
|
sort_info->remove_duplicates = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->remove_dups_checkbutton));
|
||||||
sort_info->starting_column = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (dialog->col_num_spinbutton)) - 1;
|
sort_info->starting_column = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (priv->col_num_spinbutton)) - 1;
|
||||||
|
|
||||||
start = dialog->start;
|
start = priv->start;
|
||||||
end = dialog->end;
|
end = priv->end;
|
||||||
start_line = gtk_text_iter_get_line (&start);
|
start_line = gtk_text_iter_get_line (&start);
|
||||||
end_line = gtk_text_iter_get_line (&end);
|
end_line = gtk_text_iter_get_line (&end);
|
||||||
|
|
||||||
|
@ -421,11 +398,107 @@ sort_real (SortDialog *dialog)
|
||||||
gtk_source_buffer_end_not_undoable_action (GTK_SOURCE_BUFFER (doc));
|
gtk_source_buffer_end_not_undoable_action (GTK_SOURCE_BUFFER (doc));
|
||||||
|
|
||||||
g_strfreev (lines);
|
g_strfreev (lines);
|
||||||
g_free (sort_info);
|
g_slice_free (SortInfo, sort_info);
|
||||||
|
|
||||||
xed_debug_message (DEBUG_PLUGINS, "Done.");
|
xed_debug_message (DEBUG_PLUGINS, "Done.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
update_ui (XedSortPlugin *plugin)
|
||||||
|
{
|
||||||
|
XedView *view;
|
||||||
|
|
||||||
|
xed_debug (DEBUG_PLUGINS);
|
||||||
|
|
||||||
|
view = xed_window_get_active_view (plugin->priv->window);
|
||||||
|
|
||||||
|
gtk_action_group_set_sensitive (plugin->priv->ui_action_group,
|
||||||
|
(view != NULL) &&
|
||||||
|
gtk_text_view_get_editable (GTK_TEXT_VIEW (view)));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
xed_sort_plugin_activate (XedWindowActivatable *activatable)
|
||||||
|
{
|
||||||
|
XedSortPluginPrivate *priv;
|
||||||
|
GtkUIManager *manager;
|
||||||
|
|
||||||
|
xed_debug (DEBUG_PLUGINS);
|
||||||
|
|
||||||
|
priv = XED_SORT_PLUGIN (activatable)->priv;
|
||||||
|
manager = xed_window_get_ui_manager (priv->window);
|
||||||
|
|
||||||
|
priv->ui_action_group = gtk_action_group_new ("XedSortPluginActions");
|
||||||
|
gtk_action_group_set_translation_domain (priv->ui_action_group, GETTEXT_PACKAGE);
|
||||||
|
gtk_action_group_add_actions (priv->ui_action_group, action_entries, G_N_ELEMENTS (action_entries), activatable);
|
||||||
|
|
||||||
|
gtk_ui_manager_insert_action_group (manager, priv->ui_action_group, -1);
|
||||||
|
|
||||||
|
priv->ui_id = gtk_ui_manager_new_merge_id (manager);
|
||||||
|
|
||||||
|
gtk_ui_manager_add_ui (manager,
|
||||||
|
priv->ui_id,
|
||||||
|
MENU_PATH,
|
||||||
|
"Sort",
|
||||||
|
"Sort",
|
||||||
|
GTK_UI_MANAGER_MENUITEM,
|
||||||
|
FALSE);
|
||||||
|
|
||||||
|
update_ui (XED_SORT_PLUGIN (activatable));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
xed_sort_plugin_deactivate (XedWindowActivatable *activatable)
|
||||||
|
{
|
||||||
|
XedSortPluginPrivate *priv;
|
||||||
|
GtkUIManager *manager;
|
||||||
|
|
||||||
|
xed_debug (DEBUG_PLUGINS);
|
||||||
|
|
||||||
|
priv = XED_SORT_PLUGIN (activatable)->priv;
|
||||||
|
manager = xed_window_get_ui_manager (priv->window);
|
||||||
|
|
||||||
|
gtk_ui_manager_remove_ui (manager, priv->ui_id);
|
||||||
|
gtk_ui_manager_remove_action_group (manager, priv->ui_action_group);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
xed_sort_plugin_update_state (XedWindowActivatable *activatable)
|
||||||
|
{
|
||||||
|
xed_debug (DEBUG_PLUGINS);
|
||||||
|
|
||||||
|
update_ui (XED_SORT_PLUGIN (activatable));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
xed_sort_plugin_init (XedSortPlugin *plugin)
|
||||||
|
{
|
||||||
|
xed_debug_message (DEBUG_PLUGINS, "XedSortPlugin initializing");
|
||||||
|
|
||||||
|
plugin->priv = G_TYPE_INSTANCE_GET_PRIVATE (plugin, XED_TYPE_SORT_PLUGIN, XedSortPluginPrivate);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
xed_sort_plugin_dispose (GObject *object)
|
||||||
|
{
|
||||||
|
XedSortPlugin *plugin = XED_SORT_PLUGIN (object);
|
||||||
|
|
||||||
|
xed_debug_message (DEBUG_PLUGINS, "XedSortPlugin disposing");
|
||||||
|
|
||||||
|
g_clear_object (&plugin->priv->ui_action_group);
|
||||||
|
g_clear_object (&plugin->priv->window);
|
||||||
|
|
||||||
|
G_OBJECT_CLASS (xed_sort_plugin_parent_class)->dispose (object);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
xed_sort_plugin_finalize (GObject *object)
|
||||||
|
{
|
||||||
|
xed_debug_message (DEBUG_PLUGINS, "XedSortPlugin finalizing");
|
||||||
|
|
||||||
|
G_OBJECT_CLASS (xed_sort_plugin_parent_class)->finalize (object);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
xed_sort_plugin_set_property (GObject *object,
|
xed_sort_plugin_set_property (GObject *object,
|
||||||
guint prop_id,
|
guint prop_id,
|
||||||
|
@ -436,8 +509,8 @@ xed_sort_plugin_set_property (GObject *object,
|
||||||
|
|
||||||
switch (prop_id)
|
switch (prop_id)
|
||||||
{
|
{
|
||||||
case PROP_OBJECT:
|
case PROP_WINDOW:
|
||||||
plugin->priv->window = GTK_WIDGET (g_value_dup_object (value));
|
plugin->priv->window = XED_WINDOW (g_value_dup_object (value));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
|
@ -455,7 +528,7 @@ xed_sort_plugin_get_property (GObject *object,
|
||||||
|
|
||||||
switch (prop_id)
|
switch (prop_id)
|
||||||
{
|
{
|
||||||
case PROP_OBJECT:
|
case PROP_WINDOW:
|
||||||
g_value_set_object (value, plugin->priv->window);
|
g_value_set_object (value, plugin->priv->window);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
@ -464,126 +537,17 @@ xed_sort_plugin_get_property (GObject *object,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
update_ui (XedSortPluginPrivate *data)
|
|
||||||
{
|
|
||||||
XedWindow *window;
|
|
||||||
XedView *view;
|
|
||||||
|
|
||||||
xed_debug (DEBUG_PLUGINS);
|
|
||||||
|
|
||||||
window = XED_WINDOW (data->window);
|
|
||||||
view = xed_window_get_active_view (window);
|
|
||||||
|
|
||||||
gtk_action_group_set_sensitive (data->ui_action_group,
|
|
||||||
(view != NULL) &&
|
|
||||||
gtk_text_view_get_editable (GTK_TEXT_VIEW (view)));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
xed_sort_plugin_activate (PeasActivatable *activatable)
|
|
||||||
{
|
|
||||||
XedSortPlugin *plugin;
|
|
||||||
XedSortPluginPrivate *data;
|
|
||||||
XedWindow *window;
|
|
||||||
GtkUIManager *manager;
|
|
||||||
|
|
||||||
xed_debug (DEBUG_PLUGINS);
|
|
||||||
|
|
||||||
plugin = XED_SORT_PLUGIN (activatable);
|
|
||||||
data = plugin->priv;
|
|
||||||
window = XED_WINDOW (data->window);
|
|
||||||
|
|
||||||
manager = xed_window_get_ui_manager (window);
|
|
||||||
|
|
||||||
data->ui_action_group = gtk_action_group_new ("XedSortPluginActions");
|
|
||||||
gtk_action_group_set_translation_domain (data->ui_action_group, GETTEXT_PACKAGE);
|
|
||||||
gtk_action_group_add_actions (data->ui_action_group,
|
|
||||||
action_entries,
|
|
||||||
G_N_ELEMENTS (action_entries),
|
|
||||||
plugin);
|
|
||||||
|
|
||||||
gtk_ui_manager_insert_action_group (manager, data->ui_action_group, -1);
|
|
||||||
|
|
||||||
data->ui_id = gtk_ui_manager_new_merge_id (manager);
|
|
||||||
|
|
||||||
gtk_ui_manager_add_ui (manager,
|
|
||||||
data->ui_id,
|
|
||||||
MENU_PATH,
|
|
||||||
"Sort",
|
|
||||||
"Sort",
|
|
||||||
GTK_UI_MANAGER_MENUITEM,
|
|
||||||
FALSE);
|
|
||||||
|
|
||||||
update_ui (data);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
xed_sort_plugin_deactivate (PeasActivatable *activatable)
|
|
||||||
{
|
|
||||||
XedSortPluginPrivate *data;
|
|
||||||
XedWindow *window;
|
|
||||||
GtkUIManager *manager;
|
|
||||||
|
|
||||||
xed_debug (DEBUG_PLUGINS);
|
|
||||||
|
|
||||||
data = XED_SORT_PLUGIN (activatable)->priv;
|
|
||||||
window = XED_WINDOW (data->window);
|
|
||||||
|
|
||||||
manager = xed_window_get_ui_manager (window);
|
|
||||||
|
|
||||||
gtk_ui_manager_remove_ui (manager, data->ui_id);
|
|
||||||
gtk_ui_manager_remove_action_group (manager, data->ui_action_group);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
xed_sort_plugin_update_state (PeasActivatable *activatable)
|
|
||||||
{
|
|
||||||
xed_debug (DEBUG_PLUGINS);
|
|
||||||
|
|
||||||
update_ui (XED_SORT_PLUGIN (activatable)->priv);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
xed_sort_plugin_init (XedSortPlugin *plugin)
|
|
||||||
{
|
|
||||||
xed_debug_message (DEBUG_PLUGINS, "XedSortPlugin initializing");
|
|
||||||
|
|
||||||
plugin->priv = XED_SORT_PLUGIN_GET_PRIVATE (plugin);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
xed_sort_plugin_dispose (GObject *object)
|
|
||||||
{
|
|
||||||
XedSortPlugin *plugin = XED_SORT_PLUGIN (object);
|
|
||||||
|
|
||||||
xed_debug_message (DEBUG_PLUGINS, "XedSortPlugin disposing");
|
|
||||||
|
|
||||||
if (plugin->priv->window != NULL)
|
|
||||||
{
|
|
||||||
g_object_unref (plugin->priv->window);
|
|
||||||
plugin->priv->window = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (plugin->priv->ui_action_group)
|
|
||||||
{
|
|
||||||
g_object_unref (plugin->priv->ui_action_group);
|
|
||||||
plugin->priv->ui_action_group = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
G_OBJECT_CLASS (xed_sort_plugin_parent_class)->dispose (object);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
xed_sort_plugin_class_init (XedSortPluginClass *klass)
|
xed_sort_plugin_class_init (XedSortPluginClass *klass)
|
||||||
{
|
{
|
||||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||||
|
|
||||||
object_class->dispose = xed_sort_plugin_dispose;
|
object_class->dispose = xed_sort_plugin_dispose;
|
||||||
|
object_class->finalize = xed_sort_plugin_finalize;
|
||||||
object_class->set_property = xed_sort_plugin_set_property;
|
object_class->set_property = xed_sort_plugin_set_property;
|
||||||
object_class->get_property = xed_sort_plugin_get_property;
|
object_class->get_property = xed_sort_plugin_get_property;
|
||||||
|
|
||||||
g_object_class_override_property (object_class, PROP_OBJECT, "object");
|
g_object_class_override_property (object_class, PROP_WINDOW, "window");
|
||||||
|
|
||||||
g_type_class_add_private (klass, sizeof (XedSortPluginPrivate));
|
g_type_class_add_private (klass, sizeof (XedSortPluginPrivate));
|
||||||
}
|
}
|
||||||
|
@ -595,7 +559,7 @@ xed_sort_plugin_class_finalize (XedSortPluginClass *klass)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
peas_activatable_iface_init (PeasActivatableInterface *iface)
|
xed_window_activatable_iface_init (XedWindowActivatableInterface *iface)
|
||||||
{
|
{
|
||||||
iface->activate = xed_sort_plugin_activate;
|
iface->activate = xed_sort_plugin_activate;
|
||||||
iface->deactivate = xed_sort_plugin_deactivate;
|
iface->deactivate = xed_sort_plugin_deactivate;
|
||||||
|
@ -608,6 +572,6 @@ peas_register_types (PeasObjectModule *module)
|
||||||
xed_sort_plugin_register_type (G_TYPE_MODULE (module));
|
xed_sort_plugin_register_type (G_TYPE_MODULE (module));
|
||||||
|
|
||||||
peas_object_module_register_extension_type (module,
|
peas_object_module_register_extension_type (module,
|
||||||
PEAS_TYPE_ACTIVATABLE,
|
XED_TYPE_WINDOW_ACTIVATABLE,
|
||||||
XED_TYPE_SORT_PLUGIN);
|
XED_TYPE_SORT_PLUGIN);
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,6 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __XED_SORT_PLUGIN_H__
|
#ifndef __XED_SORT_PLUGIN_H__
|
||||||
|
@ -28,48 +26,32 @@
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
/*
|
#define XED_TYPE_SORT_PLUGIN (xed_sort_plugin_get_type ())
|
||||||
* Type checking and casting macros
|
#define XED_SORT_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), XED_TYPE_SORT_PLUGIN, XedSortPlugin))
|
||||||
*/
|
#define XED_SORT_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), XED_TYPE_SORT_PLUGIN, XedSortPluginClass))
|
||||||
#define XED_TYPE_SORT_PLUGIN (xed_sort_plugin_get_type ())
|
#define XED_IS_SORT_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), XED_TYPE_SORT_PLUGIN))
|
||||||
#define XED_SORT_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), XED_TYPE_SORT_PLUGIN, XedSortPlugin))
|
#define XED_IS_SORT_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), XED_TYPE_SORT_PLUGIN))
|
||||||
#define XED_SORT_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), XED_TYPE_SORT_PLUGIN, XedSortPluginClass))
|
|
||||||
#define XED_IS_SORT_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), XED_TYPE_SORT_PLUGIN))
|
|
||||||
#define XED_IS_SORT_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), XED_TYPE_SORT_PLUGIN))
|
|
||||||
#define XED_SORT_PLUGIN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), XED_TYPE_SORT_PLUGIN, XedSortPluginClass))
|
#define XED_SORT_PLUGIN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), XED_TYPE_SORT_PLUGIN, XedSortPluginClass))
|
||||||
|
|
||||||
/* Private structure type */
|
typedef struct _XedSortPlugin XedSortPlugin;
|
||||||
typedef struct _XedSortPluginPrivate XedSortPluginPrivate;
|
typedef struct _XedSortPluginPrivate XedSortPluginPrivate;
|
||||||
|
typedef struct _XedSortPluginClass XedSortPluginClass;
|
||||||
/*
|
|
||||||
* Main object structure
|
|
||||||
*/
|
|
||||||
typedef struct _XedSortPlugin XedSortPlugin;
|
|
||||||
|
|
||||||
struct _XedSortPlugin
|
struct _XedSortPlugin
|
||||||
{
|
{
|
||||||
PeasExtensionBase parent_instance;
|
PeasExtensionBase parent;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
XedSortPluginPrivate *priv;
|
XedSortPluginPrivate *priv;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* Class definition
|
|
||||||
*/
|
|
||||||
typedef struct _XedSortPluginClass XedSortPluginClass;
|
|
||||||
|
|
||||||
struct _XedSortPluginClass
|
struct _XedSortPluginClass
|
||||||
{
|
{
|
||||||
PeasExtensionBaseClass parent_class;
|
PeasExtensionBaseClass parent_class;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
GType xed_sort_plugin_get_type (void) G_GNUC_CONST;
|
||||||
* Public methods
|
|
||||||
*/
|
|
||||||
GType xed_sort_plugin_get_type (void) G_GNUC_CONST;
|
|
||||||
|
|
||||||
/* All the plugins must implement this function */
|
|
||||||
G_MODULE_EXPORT void peas_register_types (PeasObjectModule *module);
|
G_MODULE_EXPORT void peas_register_types (PeasObjectModule *module);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
Loading…
Reference in New Issue