2006-05-03 23:40:54 -07:00
|
|
|
/*
|
2005-09-06 09:21:05 -07:00
|
|
|
* mooedit.c
|
2005-06-22 11:20:32 -07:00
|
|
|
*
|
2006-02-23 06:03:17 -08:00
|
|
|
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
2005-06-22 11:20:32 -07:00
|
|
|
*
|
|
|
|
* 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 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* See COPYING file that comes with this distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define MOOEDIT_COMPILATION
|
2006-04-20 01:57:05 -07:00
|
|
|
#include "mooedit/mooedit-actions.h"
|
2005-06-22 11:20:32 -07:00
|
|
|
#include "mooedit/mooedit-private.h"
|
2005-11-11 12:04:17 -08:00
|
|
|
#include "mooedit/mootextview-private.h"
|
2005-06-22 11:20:32 -07:00
|
|
|
#include "mooedit/mooeditdialogs.h"
|
|
|
|
#include "mooedit/mooeditprefs.h"
|
2005-09-09 02:40:10 -07:00
|
|
|
#include "mooedit/mootextbuffer.h"
|
2006-05-03 23:40:54 -07:00
|
|
|
#include "mooedit/moolang-private.h"
|
2006-07-14 20:30:45 -07:00
|
|
|
#include "mooedit/mooeditprogress-glade.h"
|
2006-07-27 12:39:53 -07:00
|
|
|
#include "mooedit/mooeditfiltersettings.h"
|
2005-06-22 11:20:32 -07:00
|
|
|
#include "mooutils/moomarshals.h"
|
|
|
|
#include "mooutils/moocompat.h"
|
2005-09-15 15:13:44 -07:00
|
|
|
#include "mooutils/mooutils-gobject.h"
|
2006-07-14 20:30:45 -07:00
|
|
|
#include "mooutils/mooglade.h"
|
2005-09-06 09:21:05 -07:00
|
|
|
#include <string.h>
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
|
2006-04-20 01:57:05 -07:00
|
|
|
GSList *_moo_edit_instances = NULL;
|
|
|
|
|
|
|
|
|
2005-11-03 17:35:22 -08:00
|
|
|
static GObject *moo_edit_constructor (GType type,
|
|
|
|
guint n_construct_properties,
|
|
|
|
GObjectConstructParam *construct_param);
|
|
|
|
static void moo_edit_finalize (GObject *object);
|
2006-04-29 20:36:39 -07:00
|
|
|
static void moo_edit_dispose (GObject *object);
|
2005-06-22 11:20:32 -07:00
|
|
|
|
2005-11-03 17:35:22 -08:00
|
|
|
static void moo_edit_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void moo_edit_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
2006-04-20 01:57:05 -07:00
|
|
|
static gboolean moo_edit_popup_menu (GtkWidget *widget);
|
2006-05-04 00:02:43 -07:00
|
|
|
static gboolean moo_edit_drag_motion (GtkWidget *widget,
|
|
|
|
GdkDragContext *context,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
guint time);
|
|
|
|
static gboolean moo_edit_drag_drop (GtkWidget *widget,
|
|
|
|
GdkDragContext *context,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
guint time);
|
2006-04-20 01:57:05 -07:00
|
|
|
|
2005-11-03 17:35:22 -08:00
|
|
|
static void moo_edit_filename_changed (MooEdit *edit,
|
|
|
|
const char *new_filename);
|
2005-12-10 20:30:02 -08:00
|
|
|
static gboolean moo_edit_line_mark_clicked (MooTextView *view,
|
|
|
|
int line);
|
2005-11-03 17:35:22 -08:00
|
|
|
|
2005-12-08 00:53:46 -08:00
|
|
|
static void config_changed (MooEdit *edit,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void moo_edit_config_notify (MooEdit *edit,
|
|
|
|
guint var_id,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
2005-11-03 17:35:22 -08:00
|
|
|
static GtkTextBuffer *get_buffer (MooEdit *edit);
|
2005-12-10 20:30:02 -08:00
|
|
|
static MooTextBuffer *get_moo_buffer (MooEdit *edit);
|
2005-11-03 17:35:22 -08:00
|
|
|
|
|
|
|
static void modified_changed_cb (GtkTextBuffer *buffer,
|
|
|
|
MooEdit *edit);
|
|
|
|
|
2005-12-10 20:30:02 -08:00
|
|
|
static void disconnect_bookmark (MooEditBookmark *bk);
|
|
|
|
static void line_mark_moved (MooEdit *edit,
|
|
|
|
MooLineMark *mark);
|
|
|
|
static void line_mark_deleted (MooEdit *edit,
|
|
|
|
MooLineMark *mark);
|
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
enum {
|
|
|
|
DOC_STATUS_CHANGED,
|
|
|
|
FILENAME_CHANGED,
|
2005-10-13 07:08:18 -07:00
|
|
|
COMMENT,
|
|
|
|
UNCOMMENT,
|
2005-12-08 00:53:46 -08:00
|
|
|
CONFIG_NOTIFY,
|
2005-11-23 03:10:03 -08:00
|
|
|
SAVE_BEFORE,
|
|
|
|
SAVE_AFTER,
|
2005-12-10 20:30:02 -08:00
|
|
|
BOOKMARKS_CHANGED,
|
2005-06-22 11:20:32 -07:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint signals[LAST_SIGNAL];
|
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_0,
|
2005-12-10 20:30:02 -08:00
|
|
|
PROP_EDITOR,
|
2006-04-29 20:54:03 -07:00
|
|
|
PROP_ENABLE_BOOKMARKS,
|
|
|
|
PROP_HAS_COMMENTS
|
2005-06-22 11:20:32 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/* MOO_TYPE_EDIT */
|
2005-09-09 02:40:10 -07:00
|
|
|
G_DEFINE_TYPE (MooEdit, moo_edit, MOO_TYPE_TEXT_VIEW)
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
static void
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_class_init (MooEditClass *klass)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->set_property = moo_edit_set_property;
|
|
|
|
gobject_class->get_property = moo_edit_get_property;
|
|
|
|
gobject_class->constructor = moo_edit_constructor;
|
|
|
|
gobject_class->finalize = moo_edit_finalize;
|
2006-04-29 20:36:39 -07:00
|
|
|
gobject_class->dispose = moo_edit_dispose;
|
2005-06-22 11:20:32 -07:00
|
|
|
|
2006-04-20 01:57:05 -07:00
|
|
|
MOO_TEXT_VIEW_CLASS(klass)->line_mark_clicked = moo_edit_line_mark_clicked;
|
|
|
|
GTK_WIDGET_CLASS(klass)->popup_menu = moo_edit_popup_menu;
|
2006-05-04 00:02:43 -07:00
|
|
|
GTK_WIDGET_CLASS(klass)->drag_motion = moo_edit_drag_motion;
|
|
|
|
GTK_WIDGET_CLASS(klass)->drag_drop = moo_edit_drag_drop;
|
2005-12-10 20:30:02 -08:00
|
|
|
|
2005-11-03 17:35:22 -08:00
|
|
|
klass->filename_changed = moo_edit_filename_changed;
|
2005-12-08 00:53:46 -08:00
|
|
|
klass->config_notify = moo_edit_config_notify;
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_EDITOR,
|
|
|
|
g_param_spec_object ("editor",
|
|
|
|
"editor",
|
|
|
|
"editor",
|
|
|
|
MOO_TYPE_EDITOR,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
|
|
|
|
|
2005-12-10 20:30:02 -08:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_ENABLE_BOOKMARKS,
|
|
|
|
g_param_spec_boolean ("enable-bookmarks",
|
|
|
|
"enable-bookmarks",
|
|
|
|
"enable-bookmarks",
|
2005-12-13 23:04:10 -08:00
|
|
|
FALSE,
|
2005-12-10 20:30:02 -08:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
|
|
|
|
2006-04-29 20:54:03 -07:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_HAS_COMMENTS,
|
|
|
|
g_param_spec_boolean ("has-comments",
|
|
|
|
"has-comments",
|
|
|
|
"has-comments",
|
|
|
|
FALSE,
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
2005-12-08 00:53:46 -08:00
|
|
|
signals[CONFIG_NOTIFY] =
|
|
|
|
g_signal_new ("config-notify",
|
2005-11-03 17:35:22 -08:00
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
2005-12-21 05:07:15 -08:00
|
|
|
G_SIGNAL_RUN_FIRST | G_SIGNAL_DETAILED,
|
2005-12-08 00:53:46 -08:00
|
|
|
G_STRUCT_OFFSET (MooEditClass, config_notify),
|
2005-11-03 17:35:22 -08:00
|
|
|
NULL, NULL,
|
2005-12-08 00:53:46 -08:00
|
|
|
_moo_marshal_VOID__UINT_POINTER,
|
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
G_TYPE_UINT, G_TYPE_POINTER);
|
2005-11-03 17:35:22 -08:00
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
signals[DOC_STATUS_CHANGED] =
|
2005-09-03 15:48:05 -07:00
|
|
|
g_signal_new ("doc-status-changed",
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (MooEditClass, doc_status_changed),
|
|
|
|
NULL, NULL,
|
|
|
|
_moo_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
signals[FILENAME_CHANGED] =
|
2005-09-03 15:48:05 -07:00
|
|
|
g_signal_new ("filename-changed",
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
2005-11-03 17:35:22 -08:00
|
|
|
G_SIGNAL_RUN_FIRST,
|
2005-09-03 15:48:05 -07:00
|
|
|
G_STRUCT_OFFSET (MooEditClass, filename_changed),
|
|
|
|
NULL, NULL,
|
|
|
|
_moo_marshal_VOID__STRING,
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE);
|
2005-06-22 11:20:32 -07:00
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
signals[COMMENT] =
|
|
|
|
moo_signal_new_cb ("comment",
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
|
2006-04-20 15:59:37 -07:00
|
|
|
G_CALLBACK (moo_edit_comment),
|
2005-10-13 07:08:18 -07:00
|
|
|
NULL, NULL,
|
|
|
|
_moo_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
|
|
|
signals[UNCOMMENT] =
|
|
|
|
moo_signal_new_cb ("uncomment",
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
|
2006-04-20 15:59:37 -07:00
|
|
|
G_CALLBACK (moo_edit_uncomment),
|
2005-10-13 07:08:18 -07:00
|
|
|
NULL, NULL,
|
|
|
|
_moo_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2005-06-22 11:20:32 -07:00
|
|
|
|
2005-11-23 03:10:03 -08:00
|
|
|
signals[SAVE_BEFORE] =
|
|
|
|
g_signal_new ("save-before",
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (MooEditClass, save_before),
|
|
|
|
NULL, NULL,
|
|
|
|
_moo_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
|
|
|
signals[SAVE_AFTER] =
|
|
|
|
g_signal_new ("save-after",
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (MooEditClass, save_after),
|
|
|
|
NULL, NULL,
|
|
|
|
_moo_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
2005-12-10 20:30:02 -08:00
|
|
|
signals[BOOKMARKS_CHANGED] =
|
|
|
|
g_signal_new ("bookmarks-changed",
|
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (MooEditClass, bookmarks_changed),
|
|
|
|
NULL, NULL,
|
|
|
|
_moo_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
2006-07-27 12:39:53 -07:00
|
|
|
_moo_edit_init_config ();
|
|
|
|
_moo_edit_class_init_actions (klass);
|
2005-06-22 11:20:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
static void
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_init (MooEdit *edit)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
2005-11-24 06:14:48 -08:00
|
|
|
MooIndenter *indent;
|
|
|
|
|
2005-12-08 00:53:46 -08:00
|
|
|
edit->config = moo_edit_config_new ();
|
|
|
|
g_signal_connect_swapped (edit->config, "notify",
|
|
|
|
G_CALLBACK (config_changed), edit);
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
edit->priv = g_new0 (MooEditPrivate, 1);
|
|
|
|
|
|
|
|
edit->priv->file_watch_policy = MOO_EDIT_RELOAD_IF_SAFE;
|
|
|
|
|
2006-05-08 21:57:16 -07:00
|
|
|
edit->priv->actions = gtk_action_group_new ("MooEdit");
|
2006-04-20 01:57:05 -07:00
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
indent = moo_indenter_new (edit, NULL);
|
|
|
|
moo_text_view_set_indenter (MOO_TEXT_VIEW (edit), indent);
|
|
|
|
g_object_unref (indent);
|
2005-06-22 11:20:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:40:10 -07:00
|
|
|
static GObject*
|
|
|
|
moo_edit_constructor (GType type,
|
|
|
|
guint n_construct_properties,
|
|
|
|
GObjectConstructParam *construct_param)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
GObject *object;
|
|
|
|
MooEdit *edit;
|
2005-12-10 20:30:02 -08:00
|
|
|
GtkTextBuffer *buffer;
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
object = G_OBJECT_CLASS (moo_edit_parent_class)->constructor (
|
|
|
|
type, n_construct_properties, construct_param);
|
|
|
|
|
|
|
|
edit = MOO_EDIT (object);
|
|
|
|
|
2006-04-20 01:57:05 -07:00
|
|
|
_moo_edit_add_class_actions (edit);
|
|
|
|
_moo_edit_instances = g_slist_prepend (_moo_edit_instances, edit);
|
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
edit->priv->modified_changed_handler_id =
|
2005-09-09 02:40:10 -07:00
|
|
|
g_signal_connect (get_buffer (edit),
|
2005-06-22 11:20:32 -07:00
|
|
|
"modified-changed",
|
|
|
|
G_CALLBACK (modified_changed_cb),
|
|
|
|
edit);
|
|
|
|
|
|
|
|
_moo_edit_set_filename (edit, NULL, NULL);
|
|
|
|
|
2005-12-10 20:30:02 -08:00
|
|
|
buffer = get_buffer (edit);
|
|
|
|
g_signal_connect_swapped (buffer, "line-mark-moved",
|
|
|
|
G_CALLBACK (line_mark_moved),
|
|
|
|
edit);
|
|
|
|
g_signal_connect_swapped (buffer, "line-mark-deleted",
|
|
|
|
G_CALLBACK (line_mark_deleted),
|
|
|
|
edit);
|
|
|
|
|
2005-12-12 02:58:25 -08:00
|
|
|
// g_object_set (edit, "enable-folding", TRUE, NULL);
|
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
static void
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_finalize (GObject *object)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
MooEdit *edit = MOO_EDIT (object);
|
|
|
|
|
2006-04-29 20:36:39 -07:00
|
|
|
g_free (edit->priv->filename);
|
|
|
|
g_free (edit->priv->basename);
|
|
|
|
g_free (edit->priv->display_filename);
|
|
|
|
g_free (edit->priv->display_basename);
|
|
|
|
g_free (edit->priv->encoding);
|
2006-06-29 22:58:35 -07:00
|
|
|
g_free (edit->priv->progress_text);
|
2006-04-29 20:36:39 -07:00
|
|
|
g_free (edit->priv);
|
|
|
|
edit->priv = NULL;
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (moo_edit_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
moo_edit_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
MooEdit *edit = MOO_EDIT (object);
|
|
|
|
|
2006-04-20 01:57:05 -07:00
|
|
|
_moo_edit_instances = g_slist_remove (_moo_edit_instances, edit);
|
|
|
|
|
2006-04-29 23:02:19 -07:00
|
|
|
if (edit->config)
|
|
|
|
{
|
|
|
|
g_signal_handlers_disconnect_by_func (edit->config,
|
|
|
|
(gpointer) config_changed,
|
|
|
|
edit);
|
|
|
|
g_object_unref (edit->config);
|
|
|
|
edit->config = NULL;
|
|
|
|
}
|
2005-10-13 07:08:18 -07:00
|
|
|
|
2006-04-26 21:04:41 -07:00
|
|
|
if (edit->priv->apply_config_idle)
|
2006-04-29 23:02:19 -07:00
|
|
|
{
|
2006-04-26 21:04:41 -07:00
|
|
|
g_source_remove (edit->priv->apply_config_idle);
|
2006-04-29 23:02:19 -07:00
|
|
|
edit->priv->apply_config_idle = 0;
|
|
|
|
}
|
2006-04-26 21:04:41 -07:00
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
edit->priv->focus_in_handler_id = 0;
|
2006-04-29 20:36:39 -07:00
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
if (edit->priv->file_monitor_id)
|
2006-04-29 20:36:39 -07:00
|
|
|
{
|
2005-10-13 07:08:18 -07:00
|
|
|
_moo_edit_stop_file_watch (edit);
|
2006-04-29 20:36:39 -07:00
|
|
|
edit->priv->file_monitor_id = 0;
|
|
|
|
}
|
2005-06-22 11:20:32 -07:00
|
|
|
|
2006-06-29 22:58:35 -07:00
|
|
|
if (edit->priv->progress)
|
|
|
|
{
|
|
|
|
g_critical ("%s: oops", G_STRLOC);
|
|
|
|
edit->priv->progress = NULL;
|
|
|
|
edit->priv->progressbar = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (edit->priv->progress_timeout)
|
|
|
|
{
|
|
|
|
g_critical ("%s: oops", G_STRLOC);
|
|
|
|
g_source_remove (edit->priv->progress_timeout);
|
|
|
|
edit->priv->progress_timeout = 0;
|
|
|
|
}
|
|
|
|
|
2005-12-10 20:30:02 -08:00
|
|
|
if (edit->priv->update_bookmarks_idle)
|
2006-04-29 23:02:19 -07:00
|
|
|
{
|
2005-12-10 20:30:02 -08:00
|
|
|
g_source_remove (edit->priv->update_bookmarks_idle);
|
2006-04-29 23:02:19 -07:00
|
|
|
edit->priv->update_bookmarks_idle = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (edit->priv->bookmarks)
|
|
|
|
{
|
|
|
|
g_slist_foreach (edit->priv->bookmarks, (GFunc) disconnect_bookmark, NULL);
|
|
|
|
g_slist_foreach (edit->priv->bookmarks, (GFunc) g_object_unref, NULL);
|
|
|
|
g_slist_free (edit->priv->bookmarks);
|
|
|
|
edit->priv->bookmarks = NULL;
|
|
|
|
}
|
2005-12-10 20:30:02 -08:00
|
|
|
|
2006-04-20 01:57:05 -07:00
|
|
|
if (edit->priv->menu)
|
2006-04-29 23:02:19 -07:00
|
|
|
{
|
2006-04-20 01:57:05 -07:00
|
|
|
g_object_unref (edit->priv->menu);
|
2006-04-29 23:02:19 -07:00
|
|
|
edit->priv->menu = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (edit->priv->actions)
|
|
|
|
{
|
|
|
|
g_object_unref (edit->priv->actions);
|
|
|
|
edit->priv->actions = NULL;
|
|
|
|
}
|
2006-04-20 01:57:05 -07:00
|
|
|
|
2006-04-29 20:36:39 -07:00
|
|
|
G_OBJECT_CLASS (moo_edit_parent_class)->dispose (object);
|
2005-06-22 11:20:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:40:10 -07:00
|
|
|
MooEdit*
|
|
|
|
_moo_edit_new (MooEditor *editor)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
MooEdit *edit = MOO_EDIT (g_object_new (MOO_TYPE_EDIT,
|
|
|
|
"editor", editor,
|
|
|
|
NULL));
|
|
|
|
return edit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
static void
|
2005-09-09 02:40:10 -07:00
|
|
|
modified_changed_cb (GtkTextBuffer *buffer,
|
|
|
|
MooEdit *edit)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
moo_edit_set_modified (edit, gtk_text_buffer_get_modified (buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
void
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_set_modified (MooEdit *edit,
|
|
|
|
gboolean modified)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
gboolean buf_modified;
|
2005-09-06 09:21:05 -07:00
|
|
|
GtkTextBuffer *buffer;
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
|
2005-09-08 10:08:31 -07:00
|
|
|
buffer = get_buffer (edit);
|
2005-09-06 09:21:05 -07:00
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
buf_modified =
|
2005-09-06 09:21:05 -07:00
|
|
|
gtk_text_buffer_get_modified (buffer);
|
2005-06-22 11:20:32 -07:00
|
|
|
|
|
|
|
if (buf_modified != modified)
|
|
|
|
{
|
2005-09-06 09:21:05 -07:00
|
|
|
g_signal_handler_block (buffer,
|
2005-06-22 11:20:32 -07:00
|
|
|
edit->priv->modified_changed_handler_id);
|
2005-09-06 09:21:05 -07:00
|
|
|
gtk_text_buffer_set_modified (buffer, modified);
|
|
|
|
g_signal_handler_unblock (buffer,
|
2005-06-22 11:20:32 -07:00
|
|
|
edit->priv->modified_changed_handler_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (modified)
|
2005-09-02 16:27:25 -07:00
|
|
|
edit->priv->status |= MOO_EDIT_MODIFIED;
|
2005-06-22 11:20:32 -07:00
|
|
|
else
|
2005-09-02 16:27:25 -07:00
|
|
|
edit->priv->status &= ~MOO_EDIT_MODIFIED;
|
2005-06-22 11:20:32 -07:00
|
|
|
|
2005-09-02 16:27:25 -07:00
|
|
|
moo_edit_status_changed (edit);
|
2005-06-22 11:20:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
void
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_set_clean (MooEdit *edit,
|
|
|
|
gboolean clean)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
if (clean)
|
2005-09-02 16:27:25 -07:00
|
|
|
edit->priv->status |= MOO_EDIT_CLEAN;
|
2005-06-22 11:20:32 -07:00
|
|
|
else
|
2005-09-02 16:27:25 -07:00
|
|
|
edit->priv->status &= ~MOO_EDIT_CLEAN;
|
|
|
|
moo_edit_status_changed (edit);
|
2005-06-22 11:20:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-06 22:56:33 -08:00
|
|
|
gboolean
|
|
|
|
moo_edit_get_clean (MooEdit *edit)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), FALSE);
|
|
|
|
return (edit->priv->status & MOO_EDIT_CLEAN) ? TRUE : FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
void
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_status_changed (MooEdit *edit)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
g_signal_emit (edit, signals[DOC_STATUS_CHANGED], 0, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-04 00:30:32 -07:00
|
|
|
void
|
|
|
|
_moo_edit_set_status (MooEdit *edit,
|
|
|
|
MooEditStatus status)
|
|
|
|
{
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
|
|
|
|
if (edit->priv->status != status)
|
|
|
|
{
|
|
|
|
edit->priv->status = status;
|
|
|
|
moo_edit_status_changed (edit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:40:10 -07:00
|
|
|
MooEditFileInfo*
|
|
|
|
moo_edit_file_info_new (const char *filename,
|
|
|
|
const char *encoding)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
2005-07-30 21:28:41 -07:00
|
|
|
MooEditFileInfo *info = g_new0 (MooEditFileInfo, 1);
|
2005-06-22 11:20:32 -07:00
|
|
|
info->filename = g_strdup (filename);
|
|
|
|
info->encoding = g_strdup (encoding);
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
2005-09-09 02:40:10 -07:00
|
|
|
|
|
|
|
MooEditFileInfo*
|
|
|
|
moo_edit_file_info_copy (const MooEditFileInfo *info)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
MooEditFileInfo *copy;
|
|
|
|
g_return_val_if_fail (info != NULL, NULL);
|
|
|
|
copy = g_new (MooEditFileInfo, 1);
|
|
|
|
copy->encoding = g_strdup (info->encoding);
|
2005-07-30 21:28:41 -07:00
|
|
|
copy->filename = g_strdup (info->filename);
|
2005-06-22 11:20:32 -07:00
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
void
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_file_info_free (MooEditFileInfo *info)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
2005-07-30 21:28:41 -07:00
|
|
|
if (info)
|
|
|
|
{
|
|
|
|
g_free (info->encoding);
|
|
|
|
g_free (info->filename);
|
|
|
|
g_free (info);
|
|
|
|
}
|
2005-06-22 11:20:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
gboolean
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_is_empty (MooEdit *edit)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
GtkTextIter start, end;
|
|
|
|
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), FALSE);
|
|
|
|
|
2006-06-29 22:58:35 -07:00
|
|
|
if (MOO_EDIT_IS_BUSY (edit) || MOO_EDIT_IS_MODIFIED (edit) || edit->priv->filename)
|
2005-06-22 11:20:32 -07:00
|
|
|
return FALSE;
|
|
|
|
|
2005-09-08 10:08:31 -07:00
|
|
|
gtk_text_buffer_get_bounds (get_buffer (edit), &start, &end);
|
2005-09-06 09:21:05 -07:00
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
return !gtk_text_iter_compare (&start, &end);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
MooEditStatus
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_get_status (MooEdit *edit)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), 0);
|
|
|
|
return edit->priv->status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
static void
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
MooEdit *edit = MOO_EDIT (object);
|
2005-09-06 09:21:05 -07:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2005-06-22 11:20:32 -07:00
|
|
|
case PROP_EDITOR:
|
2005-09-06 09:21:05 -07:00
|
|
|
edit->priv->editor = g_value_get_object (value);
|
|
|
|
break;
|
|
|
|
|
2005-12-10 20:30:02 -08:00
|
|
|
case PROP_ENABLE_BOOKMARKS:
|
|
|
|
moo_edit_set_enable_bookmarks (edit, g_value_get_boolean (value));
|
|
|
|
break;
|
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-09 02:40:10 -07:00
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
static void
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
MooEdit *edit = MOO_EDIT (object);
|
2005-09-06 09:21:05 -07:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2005-06-22 11:20:32 -07:00
|
|
|
case PROP_EDITOR:
|
|
|
|
g_value_set_object (value, edit->priv->editor);
|
|
|
|
break;
|
|
|
|
|
2005-12-10 20:30:02 -08:00
|
|
|
case PROP_ENABLE_BOOKMARKS:
|
|
|
|
g_value_set_boolean (value, edit->priv->enable_bookmarks);
|
|
|
|
break;
|
|
|
|
|
2006-04-29 20:54:03 -07:00
|
|
|
case PROP_HAS_COMMENTS:
|
|
|
|
g_value_set_boolean (value, _moo_edit_has_comments (edit, NULL, NULL));
|
|
|
|
break;
|
|
|
|
|
2005-06-22 11:20:32 -07:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
GType
|
2005-10-13 07:08:18 -07:00
|
|
|
moo_edit_status_get_type (void)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
static GType type = 0;
|
|
|
|
|
|
|
|
if (!type)
|
|
|
|
{
|
|
|
|
static const GFlagsValue values[] = {
|
2005-09-02 16:27:25 -07:00
|
|
|
{ MOO_EDIT_MODIFIED_ON_DISK, (char*)"MOO_EDIT_MODIFIED_ON_DISK", (char*)"modified-on-disk" },
|
|
|
|
{ MOO_EDIT_DELETED, (char*)"MOO_EDIT_DELETED", (char*)"deleted" },
|
|
|
|
{ MOO_EDIT_CHANGED_ON_DISK, (char*)"MOO_EDIT_CHANGED_ON_DISK", (char*)"changed-on-disk" },
|
|
|
|
{ MOO_EDIT_MODIFIED, (char*)"MOO_EDIT_MODIFIED", (char*)"modified" },
|
|
|
|
{ MOO_EDIT_CLEAN, (char*)"MOO_EDIT_CLEAN", (char*)"clean" },
|
2005-06-22 11:20:32 -07:00
|
|
|
{ 0, NULL, NULL }
|
|
|
|
};
|
2005-09-02 16:27:25 -07:00
|
|
|
type = g_flags_register_static ("MooEditStatus", values);
|
2005-06-22 11:20:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
GType
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_on_external_changes_get_type (void)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
static GType type = 0;
|
|
|
|
|
|
|
|
if (!type)
|
|
|
|
{
|
|
|
|
static const GEnumValue values[] = {
|
|
|
|
{ MOO_EDIT_DONT_WATCH_FILE, (char*)"MOO_EDIT_DONT_WATCH_FILE", (char*)"dont-watch-file" },
|
|
|
|
{ MOO_EDIT_ALWAYS_ALERT, (char*)"MOO_EDIT_ALWAYS_ALERT", (char*)"always-alert" },
|
|
|
|
{ MOO_EDIT_ALWAYS_RELOAD, (char*)"MOO_EDIT_ALWAYS_RELOAD", (char*)"always-reload" },
|
|
|
|
{ MOO_EDIT_RELOAD_IF_SAFE, (char*)"MOO_EDIT_RELOAD_IF_SAFE", (char*)"reload-if-safe" },
|
|
|
|
{ 0, NULL, NULL }
|
|
|
|
};
|
|
|
|
type = g_enum_register_static ("MooEditOnExternalChanges", values);
|
|
|
|
}
|
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
2005-09-09 02:40:10 -07:00
|
|
|
|
2005-09-09 02:54:58 -07:00
|
|
|
GType
|
2005-09-09 02:40:10 -07:00
|
|
|
moo_edit_file_info_get_type (void)
|
2005-06-22 11:20:32 -07:00
|
|
|
{
|
|
|
|
static GType type = 0;
|
|
|
|
if (!type)
|
|
|
|
type = g_boxed_type_register_static ("MooEditFileInfo",
|
|
|
|
(GBoxedCopyFunc) moo_edit_file_info_copy,
|
2005-12-08 00:53:46 -08:00
|
|
|
(GBoxedFreeFunc) moo_edit_file_info_free);
|
2005-06-22 11:20:32 -07:00
|
|
|
return type;
|
|
|
|
}
|
2005-07-25 11:49:06 -07:00
|
|
|
|
|
|
|
|
2005-09-09 02:40:10 -07:00
|
|
|
const char*
|
|
|
|
moo_edit_get_filename (MooEdit *edit)
|
2005-07-30 21:28:41 -07:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), NULL);
|
|
|
|
return edit->priv->filename;
|
|
|
|
}
|
|
|
|
|
2005-09-09 02:40:10 -07:00
|
|
|
const char*
|
|
|
|
moo_edit_get_basename (MooEdit *edit)
|
2005-07-30 21:28:41 -07:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), NULL);
|
|
|
|
return edit->priv->basename;
|
|
|
|
}
|
|
|
|
|
2005-09-09 02:40:10 -07:00
|
|
|
const char*
|
|
|
|
moo_edit_get_display_filename (MooEdit *edit)
|
2005-07-30 21:28:41 -07:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), NULL);
|
|
|
|
return edit->priv->display_filename;
|
|
|
|
}
|
|
|
|
|
2005-09-09 02:40:10 -07:00
|
|
|
const char*
|
|
|
|
moo_edit_get_display_basename (MooEdit *edit)
|
2005-07-30 21:28:41 -07:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), NULL);
|
|
|
|
return edit->priv->display_basename;
|
|
|
|
}
|
2005-09-02 16:27:25 -07:00
|
|
|
|
2005-09-09 02:40:10 -07:00
|
|
|
const char*
|
|
|
|
moo_edit_get_encoding (MooEdit *edit)
|
2005-09-02 16:27:25 -07:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), NULL);
|
|
|
|
return edit->priv->encoding;
|
|
|
|
}
|
2005-09-06 09:21:05 -07:00
|
|
|
|
|
|
|
|
2005-11-25 12:48:39 -08:00
|
|
|
char*
|
|
|
|
moo_edit_get_uri (MooEdit *edit)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), NULL);
|
|
|
|
|
|
|
|
if (edit->priv->filename)
|
|
|
|
return g_filename_to_uri (edit->priv->filename, NULL, NULL);
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
static GtkTextBuffer*
|
|
|
|
get_buffer (MooEdit *edit)
|
|
|
|
{
|
|
|
|
return gtk_text_view_get_buffer (GTK_TEXT_VIEW (edit));
|
|
|
|
}
|
|
|
|
|
2005-09-06 09:21:05 -07:00
|
|
|
|
2005-12-10 20:30:02 -08:00
|
|
|
static MooTextBuffer *
|
|
|
|
get_moo_buffer (MooEdit *edit)
|
|
|
|
{
|
|
|
|
return MOO_TEXT_BUFFER (get_buffer (edit));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-04-07 22:39:13 -07:00
|
|
|
MooEditor *
|
|
|
|
moo_edit_get_editor (MooEdit *doc)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (doc), NULL);
|
|
|
|
return doc->priv->editor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-24 09:37:28 -08:00
|
|
|
typedef void (*SetVarFunc) (MooEdit *edit,
|
|
|
|
char *name,
|
|
|
|
char *val);
|
|
|
|
|
|
|
|
static void
|
|
|
|
parse_mode_string (MooEdit *edit,
|
|
|
|
char *string,
|
|
|
|
const char *var_val_separator,
|
|
|
|
SetVarFunc func)
|
|
|
|
{
|
|
|
|
char **vars, **p;
|
|
|
|
|
|
|
|
vars = NULL;
|
|
|
|
|
|
|
|
g_strstrip (string);
|
|
|
|
|
|
|
|
vars = g_strsplit (string, ";", 0);
|
|
|
|
|
|
|
|
if (!vars)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
for (p = vars; *p != NULL; p++)
|
|
|
|
{
|
|
|
|
char *sep, *var, *value;
|
|
|
|
|
|
|
|
g_strstrip (*p);
|
|
|
|
sep = strstr (*p, var_val_separator);
|
|
|
|
|
|
|
|
if (!sep || sep == *p || !sep[1])
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
var = g_strndup (*p, sep - *p);
|
|
|
|
g_strstrip (var);
|
|
|
|
|
|
|
|
if (!var[0])
|
|
|
|
{
|
|
|
|
g_free (var);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
value = sep + 1;
|
|
|
|
g_strstrip (value);
|
|
|
|
|
|
|
|
if (!value)
|
|
|
|
{
|
|
|
|
g_free (var);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
func (edit, var, value);
|
|
|
|
|
|
|
|
g_free (var);
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
g_strfreev (vars);
|
|
|
|
}
|
2005-09-06 09:21:05 -07:00
|
|
|
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
static void
|
2005-12-08 16:19:41 -08:00
|
|
|
set_kate_var (MooEdit *edit,
|
|
|
|
const char *name,
|
|
|
|
const char *val)
|
2005-10-13 07:08:18 -07:00
|
|
|
{
|
2005-12-08 16:19:41 -08:00
|
|
|
if (!g_ascii_strcasecmp (name, "space-indent"))
|
|
|
|
{
|
|
|
|
gboolean spaces = FALSE;
|
|
|
|
|
|
|
|
if (moo_edit_config_parse_bool (val, &spaces))
|
2006-05-03 23:40:54 -07:00
|
|
|
moo_edit_config_parse_one (edit->config, "indent-use-tabs",
|
|
|
|
spaces ? "false" : "true",
|
|
|
|
MOO_EDIT_CONFIG_SOURCE_FILE);
|
2005-12-08 16:19:41 -08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-05-03 23:40:54 -07:00
|
|
|
moo_edit_config_parse_one (edit->config, name, val,
|
|
|
|
MOO_EDIT_CONFIG_SOURCE_FILE);
|
2005-12-08 16:19:41 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
parse_kate_mode_string (MooEdit *edit,
|
|
|
|
char *string)
|
|
|
|
{
|
|
|
|
parse_mode_string (edit, string, " ", (SetVarFunc) set_kate_var);
|
2005-11-24 06:14:48 -08:00
|
|
|
}
|
2005-10-13 07:08:18 -07:00
|
|
|
|
2005-11-24 09:37:28 -08:00
|
|
|
|
|
|
|
static void
|
|
|
|
set_emacs_var (MooEdit *edit,
|
|
|
|
char *name,
|
|
|
|
char *val)
|
|
|
|
{
|
|
|
|
if (!g_ascii_strcasecmp (name, "mode"))
|
|
|
|
{
|
2006-05-03 23:40:54 -07:00
|
|
|
moo_edit_config_parse_one (edit->config, "lang", val,
|
|
|
|
MOO_EDIT_CONFIG_SOURCE_FILE);
|
2005-11-24 09:37:28 -08:00
|
|
|
}
|
|
|
|
else if (!g_ascii_strcasecmp (name, "tab-width"))
|
|
|
|
{
|
2006-06-17 02:08:25 -07:00
|
|
|
moo_edit_config_parse_one (edit->config, "tab-width", val,
|
2006-05-03 23:40:54 -07:00
|
|
|
MOO_EDIT_CONFIG_SOURCE_FILE);
|
2005-11-24 09:37:28 -08:00
|
|
|
}
|
|
|
|
else if (!g_ascii_strcasecmp (name, "c-basic-offset"))
|
|
|
|
{
|
2006-05-03 23:40:54 -07:00
|
|
|
moo_edit_config_parse_one (edit->config, "indent-width", val,
|
|
|
|
MOO_EDIT_CONFIG_SOURCE_FILE);
|
2005-11-24 09:37:28 -08:00
|
|
|
}
|
|
|
|
else if (!g_ascii_strcasecmp (name, "indent-tabs-mode"))
|
|
|
|
{
|
|
|
|
if (!g_ascii_strcasecmp (val, "nil"))
|
2006-05-03 23:40:54 -07:00
|
|
|
moo_edit_config_parse_one (edit->config, "indent-use-tabs", "false",
|
|
|
|
MOO_EDIT_CONFIG_SOURCE_FILE);
|
2005-11-24 09:37:28 -08:00
|
|
|
else
|
2006-05-03 23:40:54 -07:00
|
|
|
moo_edit_config_parse_one (edit->config, "indent-use-tabs", "true",
|
|
|
|
MOO_EDIT_CONFIG_SOURCE_FILE);
|
2005-11-24 09:37:28 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
static void
|
2005-11-24 09:37:28 -08:00
|
|
|
parse_emacs_mode_string (MooEdit *edit,
|
|
|
|
char *string)
|
2005-11-24 06:14:48 -08:00
|
|
|
{
|
2005-11-24 09:37:28 -08:00
|
|
|
parse_mode_string (edit, string, ":", set_emacs_var);
|
2005-11-24 06:14:48 -08:00
|
|
|
}
|
2005-09-06 09:21:05 -07:00
|
|
|
|
2005-11-24 09:37:28 -08:00
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
static void
|
2005-11-24 09:37:28 -08:00
|
|
|
parse_moo_mode_string (MooEdit *edit,
|
|
|
|
char *string)
|
2005-11-24 06:14:48 -08:00
|
|
|
{
|
2006-05-03 23:40:54 -07:00
|
|
|
moo_edit_config_parse (edit->config, string, MOO_EDIT_CONFIG_SOURCE_FILE);
|
2005-11-24 06:14:48 -08:00
|
|
|
}
|
2005-10-13 07:08:18 -07:00
|
|
|
|
2005-09-06 09:21:05 -07:00
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
#define KATE_MODE_STRING "kate:"
|
|
|
|
#define EMACS_MODE_STRING "-*-"
|
2005-11-24 09:37:28 -08:00
|
|
|
#define MOO_MODE_STRING "-%-"
|
2005-09-06 09:21:05 -07:00
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
static void
|
|
|
|
try_mode_string (MooEdit *edit,
|
|
|
|
char *string)
|
|
|
|
{
|
|
|
|
char *start, *end;
|
2005-09-06 09:21:05 -07:00
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
if ((start = strstr (string, KATE_MODE_STRING)))
|
2005-09-06 09:21:05 -07:00
|
|
|
{
|
2005-11-24 06:14:48 -08:00
|
|
|
start += strlen (KATE_MODE_STRING);
|
|
|
|
return parse_kate_mode_string (edit, start);
|
|
|
|
}
|
2005-09-06 09:21:05 -07:00
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
if ((start = strstr (string, EMACS_MODE_STRING)))
|
|
|
|
{
|
|
|
|
start += strlen (EMACS_MODE_STRING);
|
2005-10-13 07:08:18 -07:00
|
|
|
|
2005-11-24 09:37:28 -08:00
|
|
|
if ((end = strstr (start, EMACS_MODE_STRING)) && end > start)
|
2005-09-06 09:21:05 -07:00
|
|
|
{
|
2005-11-24 06:14:48 -08:00
|
|
|
end[0] = 0;
|
|
|
|
return parse_emacs_mode_string (edit, start);
|
2005-09-06 09:21:05 -07:00
|
|
|
}
|
2005-11-24 06:14:48 -08:00
|
|
|
}
|
2005-09-06 09:21:05 -07:00
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
if ((start = strstr (string, MOO_MODE_STRING)))
|
|
|
|
{
|
|
|
|
start += strlen (MOO_MODE_STRING);
|
2005-10-13 07:08:18 -07:00
|
|
|
|
2005-11-24 09:37:28 -08:00
|
|
|
if ((end = strstr (start, MOO_MODE_STRING)) && end > start)
|
2005-09-06 09:21:05 -07:00
|
|
|
{
|
2005-11-24 06:14:48 -08:00
|
|
|
end[0] = 0;
|
|
|
|
return parse_moo_mode_string (edit, start);
|
2005-09-06 09:21:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
static void
|
2005-11-24 06:14:48 -08:00
|
|
|
try_mode_strings (MooEdit *edit)
|
2005-10-13 07:08:18 -07:00
|
|
|
{
|
|
|
|
GtkTextBuffer *buffer = get_buffer (edit);
|
|
|
|
GtkTextIter start, end;
|
2005-11-24 06:14:48 -08:00
|
|
|
char *first, *last;
|
2005-10-13 07:08:18 -07:00
|
|
|
|
|
|
|
gtk_text_buffer_get_start_iter (buffer, &start);
|
|
|
|
end = start;
|
|
|
|
gtk_text_iter_forward_to_line_end (&end);
|
2006-06-09 12:27:08 -07:00
|
|
|
first = gtk_text_buffer_get_slice (buffer, &start, &end, TRUE);
|
2005-10-13 07:08:18 -07:00
|
|
|
|
|
|
|
gtk_text_buffer_get_end_iter (buffer, &end);
|
2005-11-02 22:47:53 -08:00
|
|
|
|
|
|
|
if (gtk_text_iter_starts_line (&end))
|
|
|
|
{
|
|
|
|
gtk_text_iter_backward_line (&end);
|
|
|
|
start = end;
|
|
|
|
gtk_text_iter_forward_to_line_end (&end);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
start = end;
|
|
|
|
gtk_text_iter_set_line_offset (&start, 0);
|
|
|
|
}
|
|
|
|
|
2006-06-09 12:27:08 -07:00
|
|
|
last = gtk_text_buffer_get_slice (buffer, &start, &end, TRUE);
|
2005-11-24 06:14:48 -08:00
|
|
|
|
|
|
|
try_mode_string (edit, first);
|
|
|
|
try_mode_string (edit, last);
|
|
|
|
|
|
|
|
g_free (first);
|
|
|
|
g_free (last);
|
2005-10-13 07:08:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-03 17:35:22 -08:00
|
|
|
static void
|
2005-12-08 00:53:46 -08:00
|
|
|
config_changed (MooEdit *edit,
|
|
|
|
GParamSpec *pspec)
|
2005-10-13 07:08:18 -07:00
|
|
|
{
|
2005-12-08 00:53:46 -08:00
|
|
|
guint id = moo_edit_config_get_setting_id (pspec);
|
2005-12-21 05:07:15 -08:00
|
|
|
GQuark detail = g_quark_from_string (pspec->name);
|
2005-12-08 00:53:46 -08:00
|
|
|
g_return_if_fail (id != 0);
|
2005-12-21 05:07:15 -08:00
|
|
|
g_signal_emit (edit, signals[CONFIG_NOTIFY], detail, id, pspec);
|
2005-12-08 00:53:46 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-04-26 21:04:41 -07:00
|
|
|
static void
|
|
|
|
moo_edit_set_lang (MooEdit *edit,
|
|
|
|
MooLang *lang)
|
|
|
|
{
|
|
|
|
MooLang *old_lang;
|
|
|
|
|
|
|
|
old_lang = moo_text_view_get_lang (MOO_TEXT_VIEW (edit));
|
|
|
|
|
2006-05-21 19:41:02 -07:00
|
|
|
if (old_lang != lang)
|
2006-05-23 10:59:23 -07:00
|
|
|
{
|
2006-05-21 19:41:02 -07:00
|
|
|
moo_text_view_set_lang (MOO_TEXT_VIEW (edit), lang);
|
2006-05-23 10:59:23 -07:00
|
|
|
_moo_lang_mgr_update_config (moo_editor_get_lang_mgr (edit->priv->editor),
|
|
|
|
edit->config, moo_lang_id (lang));
|
2006-07-27 12:39:53 -07:00
|
|
|
_moo_edit_update_config_from_global (edit);
|
2006-05-21 19:41:02 -07:00
|
|
|
g_object_notify (G_OBJECT (edit), "has-comments");
|
2006-05-23 10:59:23 -07:00
|
|
|
}
|
2006-04-26 21:04:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2006-06-17 00:38:23 -07:00
|
|
|
moo_edit_apply_lang_config (MooEdit *edit)
|
2006-04-26 21:04:41 -07:00
|
|
|
{
|
|
|
|
const char *lang_id = moo_edit_config_get_string (edit->config, "lang");
|
|
|
|
MooLangMgr *mgr = moo_editor_get_lang_mgr (edit->priv->editor);
|
|
|
|
MooLang *lang = lang_id ? moo_lang_mgr_get_lang (mgr, lang_id) : NULL;
|
|
|
|
moo_edit_set_lang (edit, lang);
|
|
|
|
}
|
|
|
|
|
2006-06-17 00:38:23 -07:00
|
|
|
static void
|
|
|
|
moo_edit_apply_config (MooEdit *edit)
|
|
|
|
{
|
|
|
|
GtkWrapMode wrap_mode;
|
|
|
|
gboolean line_numbers;
|
2006-06-17 02:08:25 -07:00
|
|
|
guint tab_width;
|
2006-06-17 00:38:23 -07:00
|
|
|
|
|
|
|
moo_edit_apply_lang_config (edit);
|
|
|
|
|
2006-07-27 12:39:53 -07:00
|
|
|
moo_edit_config_get (edit->config,
|
|
|
|
"wrap-mode", &wrap_mode,
|
|
|
|
"show-line-numbers", &line_numbers,
|
|
|
|
"tab-width", &tab_width,
|
|
|
|
NULL);
|
2006-06-17 00:38:23 -07:00
|
|
|
|
2006-07-27 12:39:53 -07:00
|
|
|
gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (edit), wrap_mode);
|
2006-06-17 00:38:23 -07:00
|
|
|
moo_text_view_set_show_line_numbers (MOO_TEXT_VIEW (edit), line_numbers);
|
2006-06-17 02:08:25 -07:00
|
|
|
moo_text_view_set_tab_width (MOO_TEXT_VIEW (edit), tab_width);
|
2006-06-17 00:38:23 -07:00
|
|
|
}
|
|
|
|
|
2006-04-26 21:04:41 -07:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
do_apply_config (MooEdit *edit)
|
|
|
|
{
|
|
|
|
edit->priv->apply_config_idle = 0;
|
|
|
|
moo_edit_apply_config (edit);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
moo_edit_queue_apply_config (MooEdit *edit)
|
|
|
|
{
|
|
|
|
if (!edit->priv->apply_config_idle)
|
|
|
|
edit->priv->apply_config_idle =
|
|
|
|
g_idle_add ((GSourceFunc) do_apply_config, edit);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-08 00:53:46 -08:00
|
|
|
static void
|
|
|
|
moo_edit_config_notify (MooEdit *edit,
|
2005-12-08 14:46:03 -08:00
|
|
|
guint var_id,
|
|
|
|
G_GNUC_UNUSED GParamSpec *pspec)
|
2005-12-08 00:53:46 -08:00
|
|
|
{
|
2006-07-27 12:39:53 -07:00
|
|
|
if (var_id == _moo_edit_settings[MOO_EDIT_SETTING_LANG])
|
|
|
|
moo_edit_apply_lang_config (edit);
|
2006-04-26 21:04:41 -07:00
|
|
|
else
|
|
|
|
moo_edit_queue_apply_config (edit);
|
2005-10-13 07:08:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-03 23:40:54 -07:00
|
|
|
void
|
2006-07-27 12:39:53 -07:00
|
|
|
_moo_edit_update_config_from_global (MooEdit *edit)
|
|
|
|
{
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
/* XXX */
|
|
|
|
moo_edit_config_unset_by_source (edit->config,
|
|
|
|
MOO_EDIT_CONFIG_SOURCE_AUTO);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
_moo_edit_update_lang_config (void)
|
2006-05-03 23:40:54 -07:00
|
|
|
{
|
|
|
|
GSList *l;
|
|
|
|
|
|
|
|
for (l = _moo_edit_instances; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
MooEdit *edit = l->data;
|
|
|
|
_moo_lang_mgr_update_config (moo_editor_get_lang_mgr (edit->priv->editor), edit->config,
|
|
|
|
moo_lang_id (moo_text_view_get_lang (MOO_TEXT_VIEW (edit))));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-03 17:35:22 -08:00
|
|
|
static void
|
2005-11-24 06:14:48 -08:00
|
|
|
moo_edit_filename_changed (MooEdit *edit,
|
|
|
|
const char *filename)
|
2005-10-13 07:08:18 -07:00
|
|
|
{
|
2006-05-23 10:59:23 -07:00
|
|
|
gboolean lang_changed = FALSE;
|
|
|
|
MooLang *lang = NULL, *old_lang = NULL;
|
2005-12-08 00:53:46 -08:00
|
|
|
const char *lang_id = NULL;
|
2006-07-27 12:39:53 -07:00
|
|
|
const char *filter_config = NULL;
|
2005-11-03 17:35:22 -08:00
|
|
|
|
2006-05-23 10:59:23 -07:00
|
|
|
old_lang = moo_text_view_get_lang (MOO_TEXT_VIEW (edit));
|
|
|
|
|
2005-12-08 00:53:46 -08:00
|
|
|
_moo_edit_freeze_config_notify (edit);
|
2005-11-24 09:37:28 -08:00
|
|
|
|
2005-12-08 00:53:46 -08:00
|
|
|
moo_edit_config_unset_by_source (edit->config, MOO_EDIT_CONFIG_SOURCE_FILE);
|
2006-07-27 12:39:53 -07:00
|
|
|
_moo_edit_update_config_from_global (edit);
|
2005-11-24 06:14:48 -08:00
|
|
|
|
|
|
|
if (filename)
|
|
|
|
{
|
|
|
|
MooLangMgr *mgr = moo_editor_get_lang_mgr (edit->priv->editor);
|
|
|
|
lang = moo_lang_mgr_get_lang_for_file (mgr, filename);
|
2006-05-03 23:40:54 -07:00
|
|
|
lang_id = lang ? moo_lang_id (lang) : NULL;
|
2006-07-27 12:39:53 -07:00
|
|
|
filter_config = _moo_edit_filter_settings_get_for_file (filename);
|
2005-11-24 06:14:48 -08:00
|
|
|
}
|
2005-11-03 17:35:22 -08:00
|
|
|
|
2006-07-27 12:39:53 -07:00
|
|
|
moo_edit_config_set (edit->config, MOO_EDIT_CONFIG_SOURCE_FILENAME,
|
|
|
|
"lang", lang_id, "indent", NULL, NULL);
|
|
|
|
|
|
|
|
if (filter_config)
|
|
|
|
moo_edit_config_parse (edit->config, filter_config,
|
|
|
|
MOO_EDIT_CONFIG_SOURCE_FILENAME);
|
2005-12-08 00:53:46 -08:00
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
try_mode_strings (edit);
|
2005-11-03 17:35:22 -08:00
|
|
|
|
2006-05-23 10:59:23 -07:00
|
|
|
lang_id = moo_edit_config_get_string (edit->config, "lang");
|
|
|
|
|
|
|
|
if (!lang_id)
|
|
|
|
lang_id = MOO_LANG_NONE;
|
|
|
|
|
|
|
|
lang_changed = strcmp (lang_id, moo_lang_id (old_lang)) != 0;
|
|
|
|
|
|
|
|
if (!lang_changed)
|
2006-06-26 05:47:55 -07:00
|
|
|
{
|
2006-05-23 10:59:23 -07:00
|
|
|
_moo_lang_mgr_update_config (moo_editor_get_lang_mgr (edit->priv->editor),
|
|
|
|
edit->config, moo_lang_id (lang));
|
2006-07-27 12:39:53 -07:00
|
|
|
_moo_edit_update_config_from_global (edit);
|
2006-06-26 05:47:55 -07:00
|
|
|
}
|
2006-05-23 10:59:23 -07:00
|
|
|
|
2005-12-08 00:53:46 -08:00
|
|
|
_moo_edit_thaw_config_notify (edit);
|
2005-11-03 17:35:22 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
gboolean
|
2005-12-04 12:13:58 -08:00
|
|
|
moo_edit_close (MooEdit *edit,
|
|
|
|
gboolean ask_confirm)
|
2005-11-03 17:35:22 -08:00
|
|
|
{
|
2005-11-24 06:14:48 -08:00
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), FALSE);
|
2005-12-04 12:13:58 -08:00
|
|
|
return moo_editor_close_doc (edit->priv->editor, edit, ask_confirm);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
moo_edit_save (MooEdit *edit,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), FALSE);
|
|
|
|
return _moo_editor_save (edit->priv->editor, edit, error);
|
2005-11-03 17:35:22 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
gboolean
|
|
|
|
moo_edit_save_as (MooEdit *edit,
|
|
|
|
const char *filename,
|
2005-12-04 12:13:58 -08:00
|
|
|
const char *encoding,
|
|
|
|
GError **error)
|
2005-11-03 17:35:22 -08:00
|
|
|
{
|
2005-11-24 06:14:48 -08:00
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), FALSE);
|
2005-12-04 12:13:58 -08:00
|
|
|
return _moo_editor_save_as (edit->priv->editor, edit, filename, encoding, error);
|
2005-11-03 17:35:22 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
gboolean
|
|
|
|
moo_edit_save_copy (MooEdit *edit,
|
|
|
|
const char *filename,
|
|
|
|
const char *encoding,
|
|
|
|
GError **error)
|
2005-11-03 17:35:22 -08:00
|
|
|
{
|
2005-11-24 06:14:48 -08:00
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), FALSE);
|
|
|
|
return moo_editor_save_copy (edit->priv->editor, edit,
|
|
|
|
filename, encoding, error);
|
|
|
|
}
|
2005-10-13 07:08:18 -07:00
|
|
|
|
2005-11-03 17:35:22 -08:00
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
void
|
2005-12-08 00:53:46 -08:00
|
|
|
_moo_edit_freeze_config_notify (MooEdit *edit)
|
2005-11-24 06:14:48 -08:00
|
|
|
{
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
2005-12-08 00:53:46 -08:00
|
|
|
g_object_freeze_notify (G_OBJECT (edit->config));
|
2005-11-03 17:35:22 -08:00
|
|
|
}
|
2005-10-13 07:08:18 -07:00
|
|
|
|
2005-11-03 17:35:22 -08:00
|
|
|
|
2005-11-24 06:14:48 -08:00
|
|
|
void
|
2005-12-08 00:53:46 -08:00
|
|
|
_moo_edit_thaw_config_notify (MooEdit *edit)
|
2005-11-03 17:35:22 -08:00
|
|
|
{
|
2005-11-24 06:14:48 -08:00
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
2005-12-08 00:53:46 -08:00
|
|
|
g_object_thaw_notify (G_OBJECT (edit->config));
|
2005-11-24 06:14:48 -08:00
|
|
|
}
|
2005-12-10 20:30:02 -08:00
|
|
|
|
|
|
|
|
2006-05-04 00:02:43 -07:00
|
|
|
static gboolean
|
|
|
|
find_uri_atom (GdkDragContext *context)
|
|
|
|
{
|
|
|
|
GList *targets;
|
|
|
|
GdkAtom atom;
|
|
|
|
|
|
|
|
atom = gdk_atom_intern ("text/uri-list", FALSE);
|
|
|
|
targets = context->targets;
|
|
|
|
|
|
|
|
while (targets)
|
|
|
|
{
|
|
|
|
if (targets->data == GUINT_TO_POINTER (atom))
|
|
|
|
return TRUE;
|
|
|
|
targets = targets->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
moo_edit_drag_motion (GtkWidget *widget,
|
|
|
|
GdkDragContext *context,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
guint time)
|
|
|
|
{
|
|
|
|
if (find_uri_atom (context))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return GTK_WIDGET_CLASS(moo_edit_parent_class)->drag_motion (widget, context, x, y, time);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
moo_edit_drag_drop (GtkWidget *widget,
|
|
|
|
GdkDragContext *context,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
guint time)
|
|
|
|
{
|
|
|
|
if (find_uri_atom (context))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return GTK_WIDGET_CLASS(moo_edit_parent_class)->drag_drop (widget, context, x, y, time);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-10 20:30:02 -08:00
|
|
|
/***********************************************************************/
|
|
|
|
/* Bookmarks
|
|
|
|
*/
|
|
|
|
|
|
|
|
G_DEFINE_TYPE(MooEditBookmark, moo_edit_bookmark, MOO_TYPE_LINE_MARK)
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
moo_edit_bookmark_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
MooEditBookmark *bk = MOO_EDIT_BOOKMARK (object);
|
|
|
|
g_free (bk->text);
|
|
|
|
G_OBJECT_CLASS(moo_edit_bookmark_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
moo_edit_bookmark_class_init (MooEditBookmarkClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
object_class->finalize = moo_edit_bookmark_finalize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
moo_edit_bookmark_init (MooEditBookmark *bk)
|
|
|
|
{
|
|
|
|
g_object_set (bk,
|
|
|
|
"visible", TRUE,
|
|
|
|
"background", "#E5E5FF",
|
|
|
|
"stock-id", GTK_STOCK_ABOUT,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static guint
|
|
|
|
get_line_count (MooEdit *edit)
|
|
|
|
{
|
|
|
|
return gtk_text_buffer_get_line_count (get_buffer (edit));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
bookmarks_changed (MooEdit *edit)
|
|
|
|
{
|
|
|
|
g_signal_emit (edit, signals[BOOKMARKS_CHANGED], 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
moo_edit_set_enable_bookmarks (MooEdit *edit,
|
|
|
|
gboolean enable)
|
|
|
|
{
|
|
|
|
MooTextBuffer *buffer;
|
|
|
|
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
|
|
|
|
enable = enable != 0;
|
|
|
|
|
|
|
|
if (enable == edit->priv->enable_bookmarks)
|
|
|
|
return;
|
|
|
|
|
|
|
|
edit->priv->enable_bookmarks = enable;
|
|
|
|
moo_text_view_set_show_line_marks (MOO_TEXT_VIEW (edit), enable);
|
|
|
|
buffer = get_moo_buffer (edit);
|
|
|
|
|
|
|
|
if (!enable && edit->priv->bookmarks)
|
|
|
|
{
|
|
|
|
GSList *tmp = edit->priv->bookmarks;
|
|
|
|
edit->priv->bookmarks = NULL;
|
|
|
|
g_slist_foreach (tmp, (GFunc) disconnect_bookmark, NULL);
|
|
|
|
|
|
|
|
while (tmp)
|
|
|
|
{
|
2005-12-12 02:58:25 -08:00
|
|
|
moo_text_buffer_delete_line_mark (buffer, tmp->data);
|
2005-12-10 20:30:02 -08:00
|
|
|
g_object_unref (tmp->data);
|
|
|
|
tmp = g_slist_delete_link (tmp, tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
bookmarks_changed (edit);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (edit), "enable-bookmarks");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
moo_edit_get_enable_bookmarks (MooEdit *edit)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), FALSE);
|
|
|
|
return edit->priv->enable_bookmarks;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int cmp_bookmarks (MooLineMark *a,
|
|
|
|
MooLineMark *b)
|
|
|
|
{
|
|
|
|
int line_a = moo_line_mark_get_line (a);
|
|
|
|
int line_b = moo_line_mark_get_line (b);
|
|
|
|
return line_a < line_b ? -1 : (line_a > line_b ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
update_bookmarks (MooEdit *edit)
|
|
|
|
{
|
|
|
|
GSList *deleted, *dup, *old, *new, *l;
|
|
|
|
|
|
|
|
edit->priv->update_bookmarks_idle = 0;
|
|
|
|
old = edit->priv->bookmarks;
|
|
|
|
edit->priv->bookmarks = NULL;
|
|
|
|
|
|
|
|
for (deleted = NULL, new = NULL, l = old; l != NULL; l = l->next)
|
|
|
|
if (moo_line_mark_get_deleted (MOO_LINE_MARK (l->data)))
|
|
|
|
deleted = g_slist_prepend (deleted, l->data);
|
|
|
|
else
|
|
|
|
new = g_slist_prepend (new, l->data);
|
|
|
|
|
|
|
|
g_slist_foreach (deleted, (GFunc) disconnect_bookmark, NULL);
|
|
|
|
g_slist_foreach (deleted, (GFunc) g_object_unref, NULL);
|
|
|
|
g_slist_free (deleted);
|
|
|
|
|
|
|
|
new = g_slist_sort (new, (GCompareFunc) cmp_bookmarks);
|
|
|
|
old = new;
|
|
|
|
new = NULL;
|
|
|
|
dup = NULL;
|
|
|
|
|
|
|
|
for (l = old; l != NULL; l = l->next)
|
|
|
|
if (new && moo_line_mark_get_line (new->data) == moo_line_mark_get_line (l->data))
|
|
|
|
dup = g_slist_prepend (dup, l->data);
|
|
|
|
else
|
|
|
|
new = g_slist_prepend (new, l->data);
|
|
|
|
|
|
|
|
while (dup)
|
|
|
|
{
|
|
|
|
disconnect_bookmark (dup->data);
|
2005-12-12 02:58:25 -08:00
|
|
|
moo_text_buffer_delete_line_mark (get_moo_buffer (edit), dup->data);
|
2005-12-10 20:30:02 -08:00
|
|
|
g_object_unref (dup->data);
|
|
|
|
dup = g_slist_delete_link (dup, dup);
|
|
|
|
}
|
|
|
|
|
|
|
|
edit->priv->bookmarks = g_slist_reverse (new);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
update_bookmarks_now (MooEdit *edit)
|
|
|
|
{
|
|
|
|
if (edit->priv->update_bookmarks_idle)
|
|
|
|
{
|
|
|
|
g_source_remove (edit->priv->update_bookmarks_idle);
|
|
|
|
edit->priv->update_bookmarks_idle = 0;
|
|
|
|
update_bookmarks (edit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const GSList *
|
|
|
|
moo_edit_list_bookmarks (MooEdit *edit)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), NULL);
|
|
|
|
update_bookmarks_now (edit);
|
|
|
|
return edit->priv->bookmarks;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
moo_edit_toggle_bookmark (MooEdit *edit,
|
|
|
|
guint line)
|
|
|
|
{
|
|
|
|
MooEditBookmark *bk;
|
|
|
|
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
g_return_if_fail (line < get_line_count (edit));
|
|
|
|
|
|
|
|
bk = moo_edit_get_bookmark_at_line (edit, line);
|
|
|
|
|
|
|
|
if (bk)
|
|
|
|
moo_edit_remove_bookmark (edit, bk);
|
|
|
|
else
|
|
|
|
moo_edit_add_bookmark (edit, line);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MooEditBookmark *
|
|
|
|
moo_edit_get_bookmark_at_line (MooEdit *edit,
|
|
|
|
guint line)
|
|
|
|
{
|
|
|
|
GSList *list, *l;
|
|
|
|
MooEditBookmark *bk;
|
|
|
|
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), NULL);
|
|
|
|
g_return_val_if_fail (line < get_line_count (edit), NULL);
|
|
|
|
|
|
|
|
bk = NULL;
|
|
|
|
list = moo_text_buffer_get_line_marks_at_line (get_moo_buffer (edit), line);
|
|
|
|
|
|
|
|
for (l = list; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
if (MOO_IS_EDIT_BOOKMARK (l->data) && g_slist_find (edit->priv->bookmarks, l->data))
|
|
|
|
{
|
|
|
|
bk = l->data;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free (list);
|
|
|
|
return bk;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
moo_edit_remove_bookmark (MooEdit *edit,
|
|
|
|
MooEditBookmark *bookmark)
|
|
|
|
{
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
g_return_if_fail (MOO_IS_EDIT_BOOKMARK (bookmark));
|
|
|
|
g_return_if_fail (g_slist_find (edit->priv->bookmarks, bookmark));
|
|
|
|
|
|
|
|
disconnect_bookmark (bookmark);
|
|
|
|
edit->priv->bookmarks = g_slist_remove (edit->priv->bookmarks, bookmark);
|
2005-12-12 02:58:25 -08:00
|
|
|
moo_text_buffer_delete_line_mark (get_moo_buffer (edit), MOO_LINE_MARK (bookmark));
|
2005-12-10 20:30:02 -08:00
|
|
|
|
|
|
|
g_object_unref (bookmark);
|
|
|
|
bookmarks_changed (edit);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
moo_edit_add_bookmark (MooEdit *edit,
|
|
|
|
guint line)
|
|
|
|
{
|
|
|
|
MooEditBookmark *bk;
|
|
|
|
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
g_return_if_fail (line < get_line_count (edit));
|
|
|
|
g_return_if_fail (moo_edit_get_bookmark_at_line (edit, line) == NULL);
|
|
|
|
|
|
|
|
bk = g_object_new (MOO_TYPE_EDIT_BOOKMARK, NULL);
|
|
|
|
moo_text_buffer_add_line_mark (get_moo_buffer (edit), MOO_LINE_MARK (bk), line);
|
|
|
|
g_object_set_data (G_OBJECT (bk), "moo-edit-bookmark", GINT_TO_POINTER (TRUE));
|
|
|
|
|
|
|
|
// bk->text = ???
|
|
|
|
// background
|
|
|
|
|
|
|
|
if (!edit->priv->update_bookmarks_idle)
|
|
|
|
edit->priv->bookmarks =
|
|
|
|
g_slist_insert_sorted (edit->priv->bookmarks, bk,
|
|
|
|
(GCompareFunc) cmp_bookmarks);
|
|
|
|
else
|
|
|
|
edit->priv->bookmarks = g_slist_prepend (edit->priv->bookmarks, bk);
|
|
|
|
|
|
|
|
bookmarks_changed (edit);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
disconnect_bookmark (MooEditBookmark *bk)
|
|
|
|
{
|
|
|
|
g_object_set_data (G_OBJECT (bk), "moo-edit-bookmark", NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
line_mark_moved (MooEdit *edit,
|
|
|
|
MooLineMark *mark)
|
|
|
|
{
|
|
|
|
if (MOO_IS_EDIT_BOOKMARK (mark) &&
|
|
|
|
g_object_get_data (G_OBJECT (mark), "moo-edit-bookmark") &&
|
|
|
|
!edit->priv->update_bookmarks_idle)
|
|
|
|
{
|
|
|
|
edit->priv->update_bookmarks_idle =
|
|
|
|
g_idle_add ((GSourceFunc) update_bookmarks, edit);
|
|
|
|
bookmarks_changed (edit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
line_mark_deleted (MooEdit *edit,
|
|
|
|
MooLineMark *mark)
|
|
|
|
{
|
|
|
|
if (MOO_IS_EDIT_BOOKMARK (mark) &&
|
|
|
|
g_object_get_data (G_OBJECT (mark), "moo-edit-bookmark") &&
|
|
|
|
g_slist_find (edit->priv->bookmarks, mark))
|
|
|
|
{
|
|
|
|
disconnect_bookmark (MOO_EDIT_BOOKMARK (mark));
|
|
|
|
edit->priv->bookmarks = g_slist_remove (edit->priv->bookmarks, mark);
|
|
|
|
g_object_unref (mark);
|
|
|
|
bookmarks_changed (edit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
moo_edit_line_mark_clicked (MooTextView *view,
|
|
|
|
int line)
|
|
|
|
{
|
|
|
|
moo_edit_toggle_bookmark (MOO_EDIT (view), line);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2005-12-10 23:23:16 -08:00
|
|
|
|
|
|
|
|
|
|
|
GSList*
|
|
|
|
moo_edit_get_bookmarks_in_range (MooEdit *edit,
|
|
|
|
int first_line,
|
|
|
|
int last_line)
|
|
|
|
{
|
|
|
|
GSList *all, *range, *l;
|
|
|
|
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), NULL);
|
|
|
|
g_return_val_if_fail (first_line >= 0, NULL);
|
|
|
|
|
|
|
|
if (last_line < 0 || last_line >= (int) get_line_count (edit))
|
|
|
|
last_line = get_line_count (edit) - 1;
|
|
|
|
|
|
|
|
if (first_line > last_line)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
all = (GSList*) moo_edit_list_bookmarks (edit);
|
|
|
|
|
|
|
|
for (l = all, range = NULL; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
int line = moo_line_mark_get_line (l->data);
|
|
|
|
|
|
|
|
if (line < first_line)
|
|
|
|
continue;
|
|
|
|
else if (line > last_line)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
range = g_slist_prepend (range, l->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_slist_reverse (range);
|
|
|
|
}
|
2005-12-16 08:51:31 -08:00
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Comment/uncomment
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* TODO: all this stuff, it's pretty lame */
|
|
|
|
|
2006-04-29 20:54:03 -07:00
|
|
|
gboolean
|
|
|
|
_moo_edit_has_comments (MooEdit *edit,
|
|
|
|
gboolean *single_line,
|
|
|
|
gboolean *multi_line)
|
2005-12-16 08:51:31 -08:00
|
|
|
{
|
|
|
|
MooLang *lang;
|
2006-04-29 20:54:03 -07:00
|
|
|
gboolean single, multi;
|
2005-12-16 08:51:31 -08:00
|
|
|
|
|
|
|
lang = moo_text_view_get_lang (MOO_TEXT_VIEW (edit));
|
|
|
|
|
2006-04-29 20:54:03 -07:00
|
|
|
if (!lang)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
single = lang->line_comment != NULL;
|
|
|
|
multi = lang->block_comment_start && lang->block_comment_end;
|
|
|
|
|
|
|
|
if (single_line)
|
|
|
|
*single_line = single;
|
|
|
|
if (multi_line)
|
|
|
|
*multi_line = multi;
|
2005-12-16 08:51:31 -08:00
|
|
|
|
2006-04-29 20:54:03 -07:00
|
|
|
return single || multi;
|
2005-12-16 08:51:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
line_comment (GtkTextBuffer *buffer,
|
|
|
|
const char *comment_string,
|
|
|
|
GtkTextIter *start,
|
|
|
|
GtkTextIter *end)
|
|
|
|
{
|
|
|
|
int first, last, i;
|
|
|
|
GtkTextIter iter;
|
|
|
|
char *comment_and_space;
|
|
|
|
|
|
|
|
g_return_if_fail (comment_string && comment_string[0]);
|
|
|
|
|
|
|
|
first = gtk_text_iter_get_line (start);
|
|
|
|
last = gtk_text_iter_get_line (end);
|
|
|
|
|
|
|
|
if (!gtk_text_iter_equal (start, end) && gtk_text_iter_starts_line (end))
|
|
|
|
last -= 1;
|
|
|
|
|
|
|
|
comment_and_space = g_strdup_printf ("%s ", comment_string);
|
|
|
|
|
|
|
|
for (i = first; i <= last; ++i)
|
|
|
|
{
|
|
|
|
gtk_text_buffer_get_iter_at_line (buffer, &iter, i);
|
|
|
|
|
|
|
|
if (gtk_text_iter_ends_line (&iter))
|
|
|
|
gtk_text_buffer_insert (buffer, &iter, comment_string, -1);
|
|
|
|
else
|
|
|
|
gtk_text_buffer_insert (buffer, &iter, comment_and_space, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (comment_and_space);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
line_uncomment (GtkTextBuffer *buffer,
|
|
|
|
const char *comment_string,
|
|
|
|
GtkTextIter *start,
|
|
|
|
GtkTextIter *end)
|
|
|
|
{
|
|
|
|
int first, last, i;
|
|
|
|
guint chars;
|
|
|
|
|
|
|
|
g_return_if_fail (comment_string && comment_string[0]);
|
|
|
|
|
|
|
|
first = gtk_text_iter_get_line (start);
|
|
|
|
last = gtk_text_iter_get_line (end);
|
|
|
|
|
|
|
|
if (!gtk_text_iter_equal (start, end) && gtk_text_iter_starts_line (end))
|
|
|
|
last -= 1;
|
|
|
|
|
|
|
|
chars = g_utf8_strlen (comment_string, -1);
|
|
|
|
|
|
|
|
for (i = first; i <= last; ++i)
|
|
|
|
{
|
|
|
|
char *text;
|
|
|
|
|
|
|
|
gtk_text_buffer_get_iter_at_line (buffer, start, i);
|
|
|
|
*end = *start;
|
|
|
|
gtk_text_iter_forward_chars (end, chars);
|
|
|
|
text = gtk_text_iter_get_slice (start, end);
|
|
|
|
|
|
|
|
if (!strcmp (comment_string, text))
|
|
|
|
{
|
|
|
|
if (gtk_text_iter_get_char (end) == ' ')
|
|
|
|
gtk_text_iter_forward_char (end);
|
|
|
|
gtk_text_buffer_delete (buffer, start, end);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
iter_to_line_end (GtkTextIter *iter)
|
|
|
|
{
|
|
|
|
if (!gtk_text_iter_ends_line (iter))
|
|
|
|
gtk_text_iter_forward_to_line_end (iter);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
block_comment (GtkTextBuffer *buffer,
|
|
|
|
const char *comment_start,
|
|
|
|
const char *comment_end,
|
|
|
|
GtkTextIter *start,
|
|
|
|
GtkTextIter *end)
|
|
|
|
{
|
|
|
|
GtkTextMark *end_mark;
|
|
|
|
|
|
|
|
g_return_if_fail (comment_start && comment_start[0]);
|
|
|
|
g_return_if_fail (comment_end && comment_end[0]);
|
|
|
|
|
|
|
|
if (gtk_text_iter_equal (start, end))
|
|
|
|
{
|
|
|
|
gtk_text_iter_set_line_offset (start, 0);
|
|
|
|
iter_to_line_end (end);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (gtk_text_iter_starts_line (end))
|
|
|
|
{
|
|
|
|
gtk_text_iter_backward_line (end);
|
|
|
|
iter_to_line_end (end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
end_mark = gtk_text_buffer_create_mark (buffer, NULL, end, FALSE);
|
|
|
|
gtk_text_buffer_insert (buffer, start, comment_start, -1);
|
|
|
|
gtk_text_buffer_get_iter_at_mark (buffer, start, end_mark);
|
|
|
|
gtk_text_buffer_insert (buffer, start, comment_end, -1);
|
|
|
|
gtk_text_buffer_delete_mark (buffer, end_mark);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
block_uncomment (GtkTextBuffer *buffer,
|
|
|
|
const char *comment_start,
|
|
|
|
const char *comment_end,
|
|
|
|
GtkTextIter *start,
|
|
|
|
GtkTextIter *end)
|
|
|
|
{
|
|
|
|
GtkTextIter start1, start2, end1, end2;
|
|
|
|
GtkTextMark *mark1, *mark2;
|
|
|
|
GtkTextIter limit;
|
|
|
|
gboolean found;
|
|
|
|
|
|
|
|
g_return_if_fail (comment_start && comment_start[0]);
|
|
|
|
g_return_if_fail (comment_end && comment_end[0]);
|
|
|
|
|
|
|
|
if (!gtk_text_iter_equal (start, end) && gtk_text_iter_starts_line (end))
|
|
|
|
{
|
|
|
|
gtk_text_iter_backward_line (end);
|
|
|
|
iter_to_line_end (end);
|
|
|
|
}
|
|
|
|
|
|
|
|
limit = *end;
|
|
|
|
found = moo_text_search_forward (start, comment_start, 0,
|
|
|
|
&start1, &start2,
|
|
|
|
&limit);
|
|
|
|
|
|
|
|
if (!found)
|
|
|
|
{
|
|
|
|
gtk_text_iter_set_line_offset (&limit, 0);
|
|
|
|
found = gtk_text_iter_backward_search (start, comment_start, 0,
|
|
|
|
&start1, &start2,
|
|
|
|
&limit);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found)
|
|
|
|
return;
|
|
|
|
|
|
|
|
limit = start2;
|
|
|
|
found = gtk_text_iter_backward_search (end, comment_end, 0,
|
|
|
|
&end1, &end2, &limit);
|
|
|
|
|
|
|
|
if (!found)
|
|
|
|
{
|
|
|
|
limit = *end;
|
|
|
|
iter_to_line_end (&limit);
|
|
|
|
found = moo_text_search_forward (end, comment_end, 0,
|
|
|
|
&end1, &end2, &limit);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_assert (gtk_text_iter_compare (&start2, &end1) < 0);
|
|
|
|
|
|
|
|
mark1 = gtk_text_buffer_create_mark (buffer, NULL, &end1, FALSE);
|
|
|
|
mark2 = gtk_text_buffer_create_mark (buffer, NULL, &end2, FALSE);
|
|
|
|
gtk_text_buffer_delete (buffer, &start1, &start2);
|
|
|
|
gtk_text_buffer_get_iter_at_mark (buffer, &end1, mark1);
|
|
|
|
gtk_text_buffer_get_iter_at_mark (buffer, &end2, mark2);
|
|
|
|
gtk_text_buffer_delete (buffer, &end1, &end2);
|
|
|
|
gtk_text_buffer_delete_mark (buffer, mark1);
|
|
|
|
gtk_text_buffer_delete_mark (buffer, mark2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
moo_edit_comment (MooEdit *edit)
|
|
|
|
{
|
|
|
|
MooLang *lang;
|
|
|
|
GtkTextIter start, end;
|
|
|
|
GtkTextBuffer *buffer;
|
|
|
|
gboolean has_selection, single_line, multi_line;
|
|
|
|
gboolean adjust_selection = FALSE, move_insert = FALSE;
|
2005-12-17 16:05:21 -08:00
|
|
|
int sel_start_line = 0, sel_start_offset = 0;
|
2005-12-16 08:51:31 -08:00
|
|
|
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
|
|
|
|
lang = moo_text_view_get_lang (MOO_TEXT_VIEW (edit));
|
|
|
|
|
2006-04-29 20:54:03 -07:00
|
|
|
if (!_moo_edit_has_comments (edit, &single_line, &multi_line))
|
2005-12-16 08:51:31 -08:00
|
|
|
return;
|
|
|
|
|
|
|
|
buffer = get_buffer (edit);
|
|
|
|
has_selection = gtk_text_buffer_get_selection_bounds (buffer, &start, &end);
|
|
|
|
|
2006-05-21 09:18:11 -07:00
|
|
|
gtk_text_buffer_begin_user_action (buffer);
|
2005-12-16 08:51:31 -08:00
|
|
|
|
|
|
|
if (has_selection)
|
|
|
|
{
|
|
|
|
GtkTextIter iter;
|
|
|
|
adjust_selection = TRUE;
|
|
|
|
gtk_text_buffer_get_iter_at_mark (buffer, &iter,
|
|
|
|
gtk_text_buffer_get_insert (buffer));
|
|
|
|
move_insert = gtk_text_iter_equal (&iter, &start);
|
|
|
|
sel_start_line = gtk_text_iter_get_line (&start);
|
|
|
|
sel_start_offset = gtk_text_iter_get_line_offset (&start);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME */
|
|
|
|
if (single_line)
|
|
|
|
line_comment (buffer, lang->line_comment, &start, &end);
|
|
|
|
else
|
|
|
|
block_comment (buffer, lang->block_comment_start,
|
|
|
|
lang->block_comment_end, &start, &end);
|
|
|
|
|
|
|
|
|
|
|
|
if (adjust_selection)
|
|
|
|
{
|
|
|
|
const char *mark = move_insert ? "insert" : "selection_bound";
|
|
|
|
gtk_text_buffer_get_iter_at_line_offset (buffer, &start,
|
|
|
|
sel_start_line,
|
|
|
|
sel_start_offset);
|
|
|
|
gtk_text_buffer_move_mark_by_name (buffer, mark, &start);
|
|
|
|
}
|
|
|
|
|
2006-05-21 09:18:11 -07:00
|
|
|
gtk_text_buffer_end_user_action (buffer);
|
2005-12-16 08:51:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
moo_edit_uncomment (MooEdit *edit)
|
|
|
|
{
|
|
|
|
MooLang *lang;
|
|
|
|
GtkTextIter start, end;
|
|
|
|
GtkTextBuffer *buffer;
|
|
|
|
gboolean single_line, multi_line;
|
|
|
|
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
|
|
|
|
lang = moo_text_view_get_lang (MOO_TEXT_VIEW (edit));
|
|
|
|
|
2006-04-29 20:54:03 -07:00
|
|
|
if (!_moo_edit_has_comments (edit, &single_line, &multi_line))
|
2005-12-16 08:51:31 -08:00
|
|
|
return;
|
|
|
|
|
|
|
|
buffer = get_buffer (edit);
|
|
|
|
gtk_text_buffer_get_selection_bounds (buffer, &start, &end);
|
|
|
|
|
2006-05-21 09:18:11 -07:00
|
|
|
gtk_text_buffer_begin_user_action (buffer);
|
2005-12-16 08:51:31 -08:00
|
|
|
|
|
|
|
/* FIXME */
|
|
|
|
if (single_line)
|
|
|
|
line_uncomment (buffer, lang->line_comment, &start, &end);
|
|
|
|
else
|
|
|
|
block_uncomment (buffer, lang->block_comment_start,
|
|
|
|
lang->block_comment_end, &start, &end);
|
|
|
|
|
2006-05-21 09:18:11 -07:00
|
|
|
gtk_text_buffer_end_user_action (buffer);
|
2005-12-16 08:51:31 -08:00
|
|
|
}
|
2006-04-20 01:57:05 -07:00
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* popup menu
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* gtktextview.c */
|
|
|
|
static void
|
|
|
|
popup_position_func (GtkMenu *menu,
|
|
|
|
gint *x,
|
|
|
|
gint *y,
|
|
|
|
gboolean *push_in,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GtkTextView *text_view;
|
|
|
|
GtkWidget *widget;
|
|
|
|
GdkRectangle cursor_rect;
|
|
|
|
GdkRectangle onscreen_rect;
|
|
|
|
gint root_x, root_y;
|
|
|
|
GtkTextIter iter;
|
|
|
|
GtkRequisition req;
|
|
|
|
GdkScreen *screen;
|
|
|
|
gint monitor_num;
|
|
|
|
GdkRectangle monitor;
|
|
|
|
|
|
|
|
text_view = GTK_TEXT_VIEW (user_data);
|
|
|
|
widget = GTK_WIDGET (text_view);
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_WIDGET_REALIZED (text_view));
|
|
|
|
|
|
|
|
screen = gtk_widget_get_screen (widget);
|
|
|
|
|
|
|
|
gdk_window_get_origin (widget->window, &root_x, &root_y);
|
|
|
|
|
|
|
|
gtk_text_buffer_get_iter_at_mark (gtk_text_view_get_buffer (text_view),
|
|
|
|
&iter,
|
|
|
|
gtk_text_buffer_get_insert (gtk_text_view_get_buffer (text_view)));
|
|
|
|
|
|
|
|
gtk_text_view_get_iter_location (text_view,
|
|
|
|
&iter,
|
|
|
|
&cursor_rect);
|
|
|
|
|
|
|
|
gtk_text_view_get_visible_rect (text_view, &onscreen_rect);
|
|
|
|
|
|
|
|
gtk_widget_size_request (text_view->popup_menu, &req);
|
|
|
|
|
|
|
|
/* can't use rectangle_intersect since cursor rect can have 0 width */
|
|
|
|
if (cursor_rect.x >= onscreen_rect.x &&
|
|
|
|
cursor_rect.x < onscreen_rect.x + onscreen_rect.width &&
|
|
|
|
cursor_rect.y >= onscreen_rect.y &&
|
|
|
|
cursor_rect.y < onscreen_rect.y + onscreen_rect.height)
|
|
|
|
{
|
|
|
|
gtk_text_view_buffer_to_window_coords (text_view,
|
|
|
|
GTK_TEXT_WINDOW_WIDGET,
|
|
|
|
cursor_rect.x, cursor_rect.y,
|
|
|
|
&cursor_rect.x, &cursor_rect.y);
|
|
|
|
|
|
|
|
*x = root_x + cursor_rect.x + cursor_rect.width;
|
|
|
|
*y = root_y + cursor_rect.y + cursor_rect.height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Just center the menu, since cursor is offscreen. */
|
|
|
|
*x = root_x + (widget->allocation.width / 2 - req.width / 2);
|
|
|
|
*y = root_y + (widget->allocation.height / 2 - req.height / 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure sanity */
|
|
|
|
*x = CLAMP (*x, root_x, (root_x + widget->allocation.width));
|
|
|
|
*y = CLAMP (*y, root_y, (root_y + widget->allocation.height));
|
|
|
|
|
|
|
|
monitor_num = gdk_screen_get_monitor_at_point (screen, *x, *y);
|
|
|
|
gtk_menu_set_monitor (menu, monitor_num);
|
|
|
|
gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor);
|
|
|
|
|
|
|
|
*x = CLAMP (*x, monitor.x, monitor.x + MAX (0, monitor.width - req.width));
|
|
|
|
*y = CLAMP (*y, monitor.y, monitor.y + MAX (0, monitor.height - req.height));
|
|
|
|
|
|
|
|
*push_in = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_moo_edit_do_popup (MooEdit *edit,
|
|
|
|
GdkEventButton *event)
|
|
|
|
{
|
|
|
|
MooUIXML *xml;
|
2006-04-20 21:44:50 -07:00
|
|
|
MooEditWindow *window;
|
2006-04-20 01:57:05 -07:00
|
|
|
|
|
|
|
xml = moo_editor_get_ui_xml (edit->priv->editor);
|
|
|
|
g_return_if_fail (xml != NULL);
|
|
|
|
|
|
|
|
if (!edit->priv->menu)
|
|
|
|
{
|
2006-04-25 00:30:46 -07:00
|
|
|
gboolean show_im_menu = TRUE;
|
|
|
|
|
2006-04-20 21:44:50 -07:00
|
|
|
window = moo_edit_get_window (edit);
|
2006-04-20 01:57:05 -07:00
|
|
|
edit->priv->menu =
|
|
|
|
moo_ui_xml_create_widget (xml, MOO_UI_MENU, "Editor/Popup",
|
|
|
|
moo_edit_get_actions (edit),
|
2006-04-20 21:44:50 -07:00
|
|
|
window ? MOO_WINDOW(window)->accel_group : NULL);
|
2006-04-20 01:57:05 -07:00
|
|
|
gtk_object_sink (g_object_ref (edit->priv->menu));
|
2006-04-25 00:30:46 -07:00
|
|
|
|
|
|
|
if (show_im_menu)
|
|
|
|
{
|
|
|
|
GtkWidget *item, *submenu;
|
|
|
|
|
|
|
|
item = gtk_separator_menu_item_new ();
|
|
|
|
gtk_widget_show (item);
|
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (edit->priv->menu), item);
|
|
|
|
|
|
|
|
item = gtk_menu_item_new_with_label ("Input Methods");
|
|
|
|
gtk_widget_show (item);
|
|
|
|
|
|
|
|
submenu = gtk_menu_new ();
|
|
|
|
gtk_menu_item_set_submenu (GTK_MENU_ITEM (item), submenu);
|
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (edit->priv->menu), item);
|
|
|
|
|
|
|
|
gtk_im_multicontext_append_menuitems (GTK_IM_MULTICONTEXT (GTK_TEXT_VIEW (edit)->im_context),
|
|
|
|
GTK_MENU_SHELL (submenu));
|
|
|
|
}
|
2006-04-20 01:57:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
g_return_if_fail (edit->priv->menu != NULL);
|
|
|
|
|
|
|
|
_moo_edit_check_actions (edit);
|
|
|
|
|
|
|
|
if (event)
|
|
|
|
{
|
|
|
|
gtk_menu_popup (GTK_MENU (edit->priv->menu),
|
|
|
|
NULL, NULL, NULL, NULL,
|
|
|
|
event->button, event->time);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_menu_popup (GTK_MENU (edit->priv->menu), NULL, NULL,
|
|
|
|
popup_position_func, edit,
|
|
|
|
0, gtk_get_current_event_time ());
|
|
|
|
gtk_menu_shell_select_first (GTK_MENU_SHELL (edit->priv->menu), FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
moo_edit_popup_menu (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
_moo_edit_do_popup (MOO_EDIT (widget), NULL);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2006-06-29 22:58:35 -07:00
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* progress dialogs and stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
GType
|
|
|
|
moo_edit_state_get_type (void)
|
|
|
|
{
|
|
|
|
static GType type = 0;
|
|
|
|
|
|
|
|
if (!type)
|
|
|
|
{
|
|
|
|
static const GEnumValue values[] = {
|
|
|
|
{ MOO_EDIT_STATE_NORMAL, (char*) "MOO_EDIT_STATE_NORMAL", (char*) "normal" },
|
|
|
|
{ MOO_EDIT_STATE_LOADING, (char*) "MOO_EDIT_STATE_LOADING", (char*) "loading" },
|
|
|
|
{ MOO_EDIT_STATE_SAVING, (char*) "MOO_EDIT_STATE_SAVING", (char*) "saving" },
|
|
|
|
{ MOO_EDIT_STATE_PRINTING, (char*) "MOO_EDIT_STATE_PRINTING", (char*) "printing" },
|
|
|
|
{ 0, NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
type = g_enum_register_static ("MooEditState", values);
|
|
|
|
}
|
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MooEditState
|
|
|
|
moo_edit_get_state (MooEdit *edit)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), MOO_EDIT_STATE_NORMAL);
|
|
|
|
return edit->priv->state;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
position_progress (MooEdit *edit)
|
|
|
|
{
|
|
|
|
GtkAllocation *allocation;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
g_return_if_fail (GTK_IS_WIDGET (edit->priv->progress));
|
|
|
|
|
|
|
|
if (!GTK_WIDGET_REALIZED (edit))
|
|
|
|
return;
|
|
|
|
|
|
|
|
allocation = >K_WIDGET(edit)->allocation;
|
|
|
|
|
|
|
|
x = allocation->width/2 - PROGRESS_WIDTH/2;
|
|
|
|
y = allocation->height/2 - PROGRESS_HEIGHT/2;
|
|
|
|
gtk_text_view_move_child (GTK_TEXT_VIEW (edit),
|
|
|
|
edit->priv->progress,
|
|
|
|
x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
update_progress (MooEdit *edit)
|
|
|
|
{
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (edit));
|
|
|
|
g_return_if_fail (edit->priv->progress_text != NULL);
|
2006-07-14 20:30:45 -07:00
|
|
|
g_return_if_fail (edit->priv->state != MOO_EDIT_STATE_NORMAL);
|
|
|
|
|
|
|
|
if (edit->priv->progressbar)
|
|
|
|
gtk_progress_bar_set_text (GTK_PROGRESS_BAR (edit->priv->progressbar),
|
|
|
|
edit->priv->progress_text);
|
2006-06-29 22:58:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
_moo_edit_set_progress_text (MooEdit *edit,
|
|
|
|
const char *text)
|
|
|
|
{
|
|
|
|
g_free (edit->priv->progress_text);
|
|
|
|
edit->priv->progress_text = g_strdup (text);
|
|
|
|
update_progress (edit);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
pulse_progress (MooEdit *edit)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (MOO_IS_EDIT (edit), FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_WIDGET (edit->priv->progressbar), FALSE);
|
|
|
|
gtk_progress_bar_pulse (GTK_PROGRESS_BAR (edit->priv->progressbar));
|
|
|
|
update_progress (edit);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-14 20:30:45 -07:00
|
|
|
static void
|
|
|
|
progress_cancel_clicked (MooEdit *doc)
|
|
|
|
{
|
|
|
|
g_return_if_fail (MOO_IS_EDIT (doc));
|
|
|
|
if (doc->priv->state && doc->priv->cancel_op)
|
|
|
|
doc->priv->cancel_op (doc->priv->cancel_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-29 22:58:35 -07:00
|
|
|
static gboolean
|
|
|
|
show_progress (MooEdit *edit)
|
|
|
|
{
|
2006-07-14 20:30:45 -07:00
|
|
|
MooGladeXML *xml;
|
|
|
|
GtkButton *cancel;
|
2006-06-29 22:58:35 -07:00
|
|
|
|
|
|
|
edit->priv->progress_timeout = 0;
|
|
|
|
|
|
|
|
g_return_val_if_fail (!edit->priv->progress, FALSE);
|
|
|
|
|
2006-07-14 20:30:45 -07:00
|
|
|
xml = moo_glade_xml_new_from_buf (MOO_EDIT_PROGRESS_GLADE_XML, -1, "eventbox");
|
|
|
|
g_return_val_if_fail (xml != NULL, FALSE);
|
|
|
|
|
|
|
|
edit->priv->progress = moo_glade_xml_get_widget (xml, "eventbox");
|
|
|
|
edit->priv->progressbar = moo_glade_xml_get_widget (xml, "progressbar");
|
|
|
|
g_assert (GTK_IS_WIDGET (edit->priv->progressbar));
|
|
|
|
|
|
|
|
cancel = moo_glade_xml_get_widget (xml, "cancel");
|
|
|
|
g_signal_connect_swapped (cancel, "clicked",
|
|
|
|
G_CALLBACK (progress_cancel_clicked),
|
|
|
|
MOO_EDIT (edit));
|
2006-06-29 22:58:35 -07:00
|
|
|
|
|
|
|
gtk_text_view_add_child_in_window (GTK_TEXT_VIEW (edit),
|
|
|
|
edit->priv->progress,
|
|
|
|
GTK_TEXT_WINDOW_WIDGET,
|
|
|
|
0, 0);
|
|
|
|
position_progress (edit);
|
|
|
|
update_progress (edit);
|
|
|
|
|
|
|
|
edit->priv->progress_timeout =
|
|
|
|
g_timeout_add (PROGRESS_TIMEOUT,
|
|
|
|
(GSourceFunc) pulse_progress,
|
|
|
|
edit);
|
|
|
|
|
2006-07-14 20:30:45 -07:00
|
|
|
g_object_unref (xml);
|
2006-06-29 22:58:35 -07:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2006-07-14 20:30:45 -07:00
|
|
|
_moo_edit_set_state (MooEdit *edit,
|
|
|
|
MooEditState state,
|
|
|
|
const char *text,
|
|
|
|
GDestroyNotify cancel,
|
|
|
|
gpointer data)
|
2006-06-29 22:58:35 -07:00
|
|
|
{
|
|
|
|
g_return_if_fail (state == MOO_EDIT_STATE_NORMAL ||
|
|
|
|
edit->priv->state == MOO_EDIT_STATE_NORMAL);
|
|
|
|
|
2006-07-14 20:30:45 -07:00
|
|
|
edit->priv->cancel_op = cancel;
|
|
|
|
edit->priv->cancel_data = data;
|
|
|
|
|
2006-06-29 22:58:35 -07:00
|
|
|
if (state == edit->priv->state)
|
|
|
|
return;
|
|
|
|
|
|
|
|
edit->priv->state = state;
|
|
|
|
gtk_text_view_set_editable (GTK_TEXT_VIEW (edit), !state);
|
|
|
|
|
|
|
|
if (!state)
|
|
|
|
{
|
|
|
|
if (edit->priv->progress)
|
|
|
|
{
|
|
|
|
GtkWidget *tmp = edit->priv->progress;
|
|
|
|
edit->priv->progress = NULL;
|
|
|
|
edit->priv->progressbar = NULL;
|
|
|
|
gtk_widget_destroy (tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (edit->priv->progress_text);
|
|
|
|
edit->priv->progress_text = NULL;
|
|
|
|
|
|
|
|
if (edit->priv->progress_timeout)
|
|
|
|
g_source_remove (edit->priv->progress_timeout);
|
|
|
|
edit->priv->progress_timeout = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!edit->priv->progress_timeout)
|
|
|
|
edit->priv->progress_timeout =
|
|
|
|
g_timeout_add (PROGRESS_TIMEOUT,
|
|
|
|
(GSourceFunc) show_progress,
|
|
|
|
edit);
|
|
|
|
edit->priv->progress_text = g_strdup (text);
|
|
|
|
}
|
|
|
|
}
|