Rename Pluma to Xedit

This commit is contained in:
Clement Lefebvre
2016-01-25 14:13:49 +00:00
parent 3a62ddff64
commit 4304f9ffc1
563 changed files with 112901 additions and 112901 deletions

View File

@@ -1,29 +1,29 @@
# docinfo plugin
plugindir = $(PLUMA_PLUGINS_LIBS_DIR)
plugindir = $(XEDIT_PLUGINS_LIBS_DIR)
AM_CPPFLAGS = \
-I$(top_srcdir) \
$(PLUMA_CFLAGS) \
$(XEDIT_CFLAGS) \
$(WARN_CFLAGS) \
$(DISABLE_DEPRECATED_CFLAGS)
plugin_LTLIBRARIES = libdocinfo.la
libdocinfo_la_SOURCES = \
pluma-docinfo-plugin.h \
pluma-docinfo-plugin.c
xedit-docinfo-plugin.h \
xedit-docinfo-plugin.c
libdocinfo_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
libdocinfo_la_LIBADD = $(PLUMA_LIBS)
libdocinfo_la_LIBADD = $(XEDIT_LIBS)
uidir = $(PLUMA_PLUGINS_DATA_DIR)/docinfo
uidir = $(XEDIT_PLUGINS_DATA_DIR)/docinfo
ui_DATA = docinfo.ui
plugin_in_files = docinfo.pluma-plugin.desktop.in
plugin_in_files = docinfo.xedit-plugin.desktop.in
%.pluma-plugin: %.pluma-plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
%.xedit-plugin: %.xedit-plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
plugin_DATA = $(plugin_in_files:.pluma-plugin.desktop.in=.pluma-plugin)
plugin_DATA = $(plugin_in_files:.xedit-plugin.desktop.in=.xedit-plugin)
EXTRA_DIST = $(ui_DATA) $(plugin_in_files)

View File

@@ -1,4 +1,4 @@
[Pluma Plugin]
[Xedit Plugin]
Module=docinfo
IAge=2
_Name=Document Statistics

View File

@@ -1,75 +0,0 @@
/*
* pluma-docinfo-plugin.h
*
* Copyright (C) 2002-2005 Paolo Maggi
*
* 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.
*
* 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
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $Id$
*/
#ifndef __PLUMA_DOCINFO_PLUGIN_H__
#define __PLUMA_DOCINFO_PLUGIN_H__
#include <glib.h>
#include <glib-object.h>
#include <pluma/pluma-plugin.h>
G_BEGIN_DECLS
/*
* Type checking and casting macros
*/
#define PLUMA_TYPE_DOCINFO_PLUGIN (pluma_docinfo_plugin_get_type ())
#define PLUMA_DOCINFO_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), PLUMA_TYPE_DOCINFO_PLUGIN, PlumaDocInfoPlugin))
#define PLUMA_DOCINFO_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), PLUMA_TYPE_DOCINFO_PLUGIN, PlumaDocInfoPluginClass))
#define PLUMA_IS_DOCINFO_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), PLUMA_TYPE_DOCINFO_PLUGIN))
#define PLUMA_IS_DOCINFO_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), PLUMA_TYPE_DOCINFO_PLUGIN))
#define PLUMA_DOCINFO_PLUGIN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), PLUMA_TYPE_DOCINFO_PLUGIN, PlumaDocInfoPluginClass))
/* Private structure type */
typedef struct _PlumaDocInfoPluginPrivate PlumaDocInfoPluginPrivate;
/*
* Main object structure
*/
typedef struct _PlumaDocInfoPlugin PlumaDocInfoPlugin;
struct _PlumaDocInfoPlugin
{
PlumaPlugin parent_instance;
};
/*
* Class definition
*/
typedef struct _PlumaDocInfoPluginClass PlumaDocInfoPluginClass;
struct _PlumaDocInfoPluginClass
{
PlumaPluginClass parent_class;
};
/*
* Public methods
*/
GType pluma_docinfo_plugin_get_type (void) G_GNUC_CONST;
/* All the plugins must implement this function */
G_MODULE_EXPORT GType register_pluma_plugin (GTypeModule *module);
G_END_DECLS
#endif /* __PLUMA_DOCINFO_PLUGIN_H__ */

View File

@@ -1,5 +1,5 @@
/*
* pluma-docinfo-plugin.c
* xedit-docinfo-plugin.c
*
* Copyright (C) 2002-2005 Paolo Maggi
*
@@ -24,7 +24,7 @@
#include <config.h>
#endif
#include "pluma-docinfo-plugin.h"
#include "xedit-docinfo-plugin.h"
#include <string.h> /* For strlen (...) */
@@ -32,13 +32,13 @@
#include <pango/pango-break.h>
#include <gmodule.h>
#include <pluma/pluma-debug.h>
#include <pluma/pluma-utils.h>
#include <xedit/xedit-debug.h>
#include <xedit/xedit-utils.h>
#define WINDOW_DATA_KEY "PlumaDocInfoWindowData"
#define WINDOW_DATA_KEY "XeditDocInfoWindowData"
#define MENU_PATH "/MenuBar/ToolsMenu/ToolsOps_2"
PLUMA_PLUGIN_REGISTER_TYPE(PlumaDocInfoPlugin, pluma_docinfo_plugin)
XEDIT_PLUGIN_REGISTER_TYPE(XeditDocInfoPlugin, xedit_docinfo_plugin)
typedef struct
{
@@ -59,7 +59,7 @@ typedef struct
typedef struct
{
PlumaPlugin *plugin;
XeditPlugin *plugin;
GtkActionGroup *ui_action_group;
guint ui_id;
@@ -69,13 +69,13 @@ typedef struct
static void docinfo_dialog_response_cb (GtkDialog *widget,
gint res_id,
PlumaWindow *window);
XeditWindow *window);
static void
docinfo_dialog_destroy_cb (GObject *obj,
WindowData *data)
{
pluma_debug (DEBUG_PLUGINS);
xedit_debug (DEBUG_PLUGINS);
if (data != NULL)
{
@@ -85,7 +85,7 @@ docinfo_dialog_destroy_cb (GObject *obj,
}
static DocInfoDialog *
get_docinfo_dialog (PlumaWindow *window,
get_docinfo_dialog (XeditWindow *window,
WindowData *data)
{
DocInfoDialog *dialog;
@@ -95,13 +95,13 @@ get_docinfo_dialog (PlumaWindow *window,
GtkWidget *error_widget;
gboolean ret;
pluma_debug (DEBUG_PLUGINS);
xedit_debug (DEBUG_PLUGINS);
dialog = g_new (DocInfoDialog, 1);
data_dir = pluma_plugin_get_data_dir (data->plugin);
data_dir = xedit_plugin_get_data_dir (data->plugin);
ui_file = g_build_filename (data_dir, "docinfo.ui", NULL);
ret = pluma_utils_get_ui_objects (ui_file,
ret = xedit_utils_get_ui_objects (ui_file,
NULL,
&error_widget,
"dialog", &dialog->dialog,
@@ -128,7 +128,7 @@ get_docinfo_dialog (PlumaWindow *window,
const gchar *err_message;
err_message = gtk_label_get_label (GTK_LABEL (error_widget));
pluma_warning (GTK_WINDOW (window), "%s", err_message);
xedit_warning (GTK_WINDOW (window), "%s", err_message);
g_free (dialog);
gtk_widget_destroy (error_widget);
@@ -155,7 +155,7 @@ get_docinfo_dialog (PlumaWindow *window,
}
static void
calculate_info (PlumaDocument *doc,
calculate_info (XeditDocument *doc,
GtkTextIter *start,
GtkTextIter *end,
gint *chars,
@@ -165,7 +165,7 @@ calculate_info (PlumaDocument *doc,
{
gchar *text;
pluma_debug (DEBUG_PLUGINS);
xedit_debug (DEBUG_PLUGINS);
text = gtk_text_buffer_get_slice (GTK_TEXT_BUFFER (doc),
start,
@@ -210,7 +210,7 @@ calculate_info (PlumaDocument *doc,
}
static void
docinfo_real (PlumaDocument *doc,
docinfo_real (XeditDocument *doc,
DocInfoDialog *dialog)
{
GtkTextIter start, end;
@@ -222,7 +222,7 @@ docinfo_real (PlumaDocument *doc,
gchar *tmp_str;
gchar *doc_name;
pluma_debug (DEBUG_PLUGINS);
xedit_debug (DEBUG_PLUGINS);
gtk_text_buffer_get_bounds (GTK_TEXT_BUFFER (doc),
&start,
@@ -237,13 +237,13 @@ docinfo_real (PlumaDocument *doc,
if (chars == 0)
lines = 0;
pluma_debug_message (DEBUG_PLUGINS, "Chars: %d", chars);
pluma_debug_message (DEBUG_PLUGINS, "Lines: %d", lines);
pluma_debug_message (DEBUG_PLUGINS, "Words: %d", words);
pluma_debug_message (DEBUG_PLUGINS, "Chars non-space: %d", chars - white_chars);
pluma_debug_message (DEBUG_PLUGINS, "Bytes: %d", bytes);
xedit_debug_message (DEBUG_PLUGINS, "Chars: %d", chars);
xedit_debug_message (DEBUG_PLUGINS, "Lines: %d", lines);
xedit_debug_message (DEBUG_PLUGINS, "Words: %d", words);
xedit_debug_message (DEBUG_PLUGINS, "Chars non-space: %d", chars - white_chars);
xedit_debug_message (DEBUG_PLUGINS, "Bytes: %d", bytes);
doc_name = pluma_document_get_short_name_for_display (doc);
doc_name = xedit_document_get_short_name_for_display (doc);
tmp_str = g_strdup_printf ("<span weight=\"bold\">%s</span>", doc_name);
gtk_label_set_markup (GTK_LABEL (dialog->file_name_label), tmp_str);
g_free (doc_name);
@@ -271,7 +271,7 @@ docinfo_real (PlumaDocument *doc,
}
static void
selectioninfo_real (PlumaDocument *doc,
selectioninfo_real (XeditDocument *doc,
DocInfoDialog *dialog)
{
gboolean sel;
@@ -283,7 +283,7 @@ selectioninfo_real (PlumaDocument *doc,
gint bytes = 0;
gchar *tmp_str;
pluma_debug (DEBUG_PLUGINS);
xedit_debug (DEBUG_PLUGINS);
sel = gtk_text_buffer_get_selection_bounds (GTK_TEXT_BUFFER (doc),
&start,
@@ -297,11 +297,11 @@ selectioninfo_real (PlumaDocument *doc,
&start, &end,
&chars, &words, &white_chars, &bytes);
pluma_debug_message (DEBUG_PLUGINS, "Selected chars: %d", chars);
pluma_debug_message (DEBUG_PLUGINS, "Selected lines: %d", lines);
pluma_debug_message (DEBUG_PLUGINS, "Selected words: %d", words);
pluma_debug_message (DEBUG_PLUGINS, "Selected chars non-space: %d", chars - white_chars);
pluma_debug_message (DEBUG_PLUGINS, "Selected bytes: %d", bytes);
xedit_debug_message (DEBUG_PLUGINS, "Selected chars: %d", chars);
xedit_debug_message (DEBUG_PLUGINS, "Selected lines: %d", lines);
xedit_debug_message (DEBUG_PLUGINS, "Selected words: %d", words);
xedit_debug_message (DEBUG_PLUGINS, "Selected chars non-space: %d", chars - white_chars);
xedit_debug_message (DEBUG_PLUGINS, "Selected bytes: %d", bytes);
gtk_widget_set_sensitive (dialog->selection_vbox, TRUE);
}
@@ -309,7 +309,7 @@ selectioninfo_real (PlumaDocument *doc,
{
gtk_widget_set_sensitive (dialog->selection_vbox, FALSE);
pluma_debug_message (DEBUG_PLUGINS, "Selection empty");
xedit_debug_message (DEBUG_PLUGINS, "Selection empty");
}
if (chars == 0)
@@ -338,17 +338,17 @@ selectioninfo_real (PlumaDocument *doc,
static void
docinfo_cb (GtkAction *action,
PlumaWindow *window)
XeditWindow *window)
{
PlumaDocument *doc;
XeditDocument *doc;
WindowData *data;
pluma_debug (DEBUG_PLUGINS);
xedit_debug (DEBUG_PLUGINS);
data = (WindowData *) g_object_get_data (G_OBJECT (window),
WINDOW_DATA_KEY);
doc = pluma_window_get_active_document (window);
doc = xedit_window_get_active_document (window);
g_return_if_fail (doc != NULL);
if (data->dialog != NULL)
@@ -377,11 +377,11 @@ docinfo_cb (GtkAction *action,
static void
docinfo_dialog_response_cb (GtkDialog *widget,
gint res_id,
PlumaWindow *window)
XeditWindow *window)
{
WindowData *data;
pluma_debug (DEBUG_PLUGINS);
xedit_debug (DEBUG_PLUGINS);
data = (WindowData *) g_object_get_data (G_OBJECT (window),
WINDOW_DATA_KEY);
@@ -390,7 +390,7 @@ docinfo_dialog_response_cb (GtkDialog *widget,
{
case GTK_RESPONSE_CLOSE:
{
pluma_debug_message (DEBUG_PLUGINS, "GTK_RESPONSE_CLOSE");
xedit_debug_message (DEBUG_PLUGINS, "GTK_RESPONSE_CLOSE");
gtk_widget_destroy (data->dialog->dialog);
break;
@@ -398,11 +398,11 @@ docinfo_dialog_response_cb (GtkDialog *widget,
case GTK_RESPONSE_OK:
{
PlumaDocument *doc;
XeditDocument *doc;
pluma_debug_message (DEBUG_PLUGINS, "GTK_RESPONSE_OK");
xedit_debug_message (DEBUG_PLUGINS, "GTK_RESPONSE_OK");
doc = pluma_window_get_active_document (window);
doc = xedit_window_get_active_document (window);
g_return_if_fail (doc != NULL);
docinfo_real (doc,
@@ -431,7 +431,7 @@ free_window_data (WindowData *data)
{
g_return_if_fail (data != NULL);
pluma_debug (DEBUG_PLUGINS);
xedit_debug (DEBUG_PLUGINS);
g_object_unref (data->plugin);
@@ -446,14 +446,14 @@ free_window_data (WindowData *data)
}
static void
update_ui_real (PlumaWindow *window,
update_ui_real (XeditWindow *window,
WindowData *data)
{
PlumaView *view;
XeditView *view;
pluma_debug (DEBUG_PLUGINS);
xedit_debug (DEBUG_PLUGINS);
view = pluma_window_get_active_view (window);
view = xedit_window_get_active_view (window);
gtk_action_group_set_sensitive (data->ui_action_group,
(view != NULL));
@@ -467,33 +467,33 @@ update_ui_real (PlumaWindow *window,
}
static void
pluma_docinfo_plugin_init (PlumaDocInfoPlugin *plugin)
xedit_docinfo_plugin_init (XeditDocInfoPlugin *plugin)
{
pluma_debug_message (DEBUG_PLUGINS, "PlumaDocInfoPlugin initializing");
xedit_debug_message (DEBUG_PLUGINS, "XeditDocInfoPlugin initializing");
}
static void
pluma_docinfo_plugin_finalize (GObject *object)
xedit_docinfo_plugin_finalize (GObject *object)
{
pluma_debug_message (DEBUG_PLUGINS, "PlumaDocInfoPlugin finalizing");
xedit_debug_message (DEBUG_PLUGINS, "XeditDocInfoPlugin finalizing");
G_OBJECT_CLASS (pluma_docinfo_plugin_parent_class)->finalize (object);
G_OBJECT_CLASS (xedit_docinfo_plugin_parent_class)->finalize (object);
}
static void
impl_activate (PlumaPlugin *plugin,
PlumaWindow *window)
impl_activate (XeditPlugin *plugin,
XeditWindow *window)
{
GtkUIManager *manager;
WindowData *data;
pluma_debug (DEBUG_PLUGINS);
xedit_debug (DEBUG_PLUGINS);
data = g_new (WindowData, 1);
data->plugin = g_object_ref (plugin);
data->dialog = NULL;
data->ui_action_group = gtk_action_group_new ("PlumaDocInfoPluginActions");
data->ui_action_group = gtk_action_group_new ("XeditDocInfoPluginActions");
gtk_action_group_set_translation_domain (data->ui_action_group,
GETTEXT_PACKAGE);
@@ -502,7 +502,7 @@ impl_activate (PlumaPlugin *plugin,
G_N_ELEMENTS (action_entries),
window);
manager = pluma_window_get_ui_manager (window);
manager = xedit_window_get_ui_manager (window);
gtk_ui_manager_insert_action_group (manager,
data->ui_action_group,
-1);
@@ -527,15 +527,15 @@ impl_activate (PlumaPlugin *plugin,
}
static void
impl_deactivate (PlumaPlugin *plugin,
PlumaWindow *window)
impl_deactivate (XeditPlugin *plugin,
XeditWindow *window)
{
GtkUIManager *manager;
WindowData *data;
pluma_debug (DEBUG_PLUGINS);
xedit_debug (DEBUG_PLUGINS);
manager = pluma_window_get_ui_manager (window);
manager = xedit_window_get_ui_manager (window);
data = (WindowData *) g_object_get_data (G_OBJECT (window),
WINDOW_DATA_KEY);
@@ -552,12 +552,12 @@ impl_deactivate (PlumaPlugin *plugin,
}
static void
impl_update_ui (PlumaPlugin *plugin,
PlumaWindow *window)
impl_update_ui (XeditPlugin *plugin,
XeditWindow *window)
{
WindowData *data;
pluma_debug (DEBUG_PLUGINS);
xedit_debug (DEBUG_PLUGINS);
data = (WindowData *) g_object_get_data (G_OBJECT (window),
WINDOW_DATA_KEY);
@@ -568,12 +568,12 @@ impl_update_ui (PlumaPlugin *plugin,
}
static void
pluma_docinfo_plugin_class_init (PlumaDocInfoPluginClass *klass)
xedit_docinfo_plugin_class_init (XeditDocInfoPluginClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
PlumaPluginClass *plugin_class = PLUMA_PLUGIN_CLASS (klass);
XeditPluginClass *plugin_class = XEDIT_PLUGIN_CLASS (klass);
object_class->finalize = pluma_docinfo_plugin_finalize;
object_class->finalize = xedit_docinfo_plugin_finalize;
plugin_class->activate = impl_activate;
plugin_class->deactivate = impl_deactivate;

View File

@@ -0,0 +1,75 @@
/*
* xedit-docinfo-plugin.h
*
* Copyright (C) 2002-2005 Paolo Maggi
*
* 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.
*
* 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
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $Id$
*/
#ifndef __XEDIT_DOCINFO_PLUGIN_H__
#define __XEDIT_DOCINFO_PLUGIN_H__
#include <glib.h>
#include <glib-object.h>
#include <xedit/xedit-plugin.h>
G_BEGIN_DECLS
/*
* Type checking and casting macros
*/
#define XEDIT_TYPE_DOCINFO_PLUGIN (xedit_docinfo_plugin_get_type ())
#define XEDIT_DOCINFO_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), XEDIT_TYPE_DOCINFO_PLUGIN, XeditDocInfoPlugin))
#define XEDIT_DOCINFO_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), XEDIT_TYPE_DOCINFO_PLUGIN, XeditDocInfoPluginClass))
#define XEDIT_IS_DOCINFO_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), XEDIT_TYPE_DOCINFO_PLUGIN))
#define XEDIT_IS_DOCINFO_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), XEDIT_TYPE_DOCINFO_PLUGIN))
#define XEDIT_DOCINFO_PLUGIN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), XEDIT_TYPE_DOCINFO_PLUGIN, XeditDocInfoPluginClass))
/* Private structure type */
typedef struct _XeditDocInfoPluginPrivate XeditDocInfoPluginPrivate;
/*
* Main object structure
*/
typedef struct _XeditDocInfoPlugin XeditDocInfoPlugin;
struct _XeditDocInfoPlugin
{
XeditPlugin parent_instance;
};
/*
* Class definition
*/
typedef struct _XeditDocInfoPluginClass XeditDocInfoPluginClass;
struct _XeditDocInfoPluginClass
{
XeditPluginClass parent_class;
};
/*
* Public methods
*/
GType xedit_docinfo_plugin_get_type (void) G_GNUC_CONST;
/* All the plugins must implement this function */
G_MODULE_EXPORT GType register_xedit_plugin (GTypeModule *module);
G_END_DECLS
#endif /* __XEDIT_DOCINFO_PLUGIN_H__ */