2005-11-22 12:26:26 +00:00
|
|
|
/*
|
|
|
|
* document.c - this file is part of Geany, a fast and lightweight IDE
|
|
|
|
*
|
2007-01-14 17:36:42 +00:00
|
|
|
* Copyright 2005-2007 Enrico Tröger <enrico.troeger@uvena.de>
|
2007-01-07 18:48:56 +00:00
|
|
|
* Copyright 2006-2007 Nick Treleaven <nick.treleaven@btinternet.com>
|
2005-11-22 12:26:26 +00: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.
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-10 19:54:44 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-11-22 12:26:26 +00:00
|
|
|
*
|
2005-12-01 22:59:02 +00:00
|
|
|
* $Id$
|
2005-11-22 12:26:26 +00:00
|
|
|
*/
|
|
|
|
|
2007-02-24 11:41:56 +00:00
|
|
|
/*
|
|
|
|
* Document related actions: new, save, open, etc.
|
|
|
|
* Also Scintilla search actions.
|
|
|
|
*/
|
|
|
|
|
2005-12-29 20:01:18 +00:00
|
|
|
#include "geany.h"
|
|
|
|
|
|
|
|
#ifdef TIME_WITH_SYS_TIME
|
|
|
|
# include <time.h>
|
|
|
|
# include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
|
|
# include <sys/stat.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
# include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
# include <fcntl.h>
|
|
|
|
#endif
|
2006-06-13 19:37:21 +00:00
|
|
|
#include <ctype.h>
|
2006-06-29 17:14:52 +00:00
|
|
|
#include <stdlib.h>
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2007-04-16 15:58:34 +00:00
|
|
|
#include <glib/gstdio.h>
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
#include "document.h"
|
2005-12-29 20:01:18 +00:00
|
|
|
#include "support.h"
|
|
|
|
#include "sciwrappers.h"
|
2007-05-28 16:07:30 +00:00
|
|
|
#include "editor.h"
|
2005-12-29 20:01:18 +00:00
|
|
|
#include "dialogs.h"
|
|
|
|
#include "msgwindow.h"
|
2005-11-22 12:26:26 +00:00
|
|
|
#include "templates.h"
|
|
|
|
#include "treeviews.h"
|
2006-09-05 14:24:47 +00:00
|
|
|
#include "ui_utils.h"
|
2005-12-29 20:01:18 +00:00
|
|
|
#include "utils.h"
|
2006-06-21 18:54:07 +00:00
|
|
|
#include "encodings.h"
|
2006-06-25 12:13:35 +00:00
|
|
|
#include "notebook.h"
|
2006-08-20 15:47:18 +00:00
|
|
|
#include "main.h"
|
2006-08-31 18:50:10 +00:00
|
|
|
#include "vte.h"
|
2006-10-18 19:35:42 +00:00
|
|
|
#include "build.h"
|
2006-11-08 11:42:05 +00:00
|
|
|
#include "symbols.h"
|
2007-06-11 08:58:37 +00:00
|
|
|
#include "callbacks.h"
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
/* dynamic array of document elements to hold all information of the notebook tabs */
|
|
|
|
GArray *doc_array;
|
|
|
|
|
2007-02-23 13:26:06 +00:00
|
|
|
/* Whether to colourise the document straight after styling settings are changed.
|
|
|
|
* (e.g. when filetype is set or typenames are updated) */
|
|
|
|
static gboolean delay_colourise = FALSE;
|
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
static void document_undo_clear(gint idx);
|
|
|
|
static void document_redo_add(gint idx, guint type, gpointer data);
|
|
|
|
|
2007-02-23 13:26:06 +00:00
|
|
|
static gboolean update_type_keywords(ScintillaObject *sci);
|
2006-10-10 16:02:41 +00:00
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2007-02-23 15:36:21 +00:00
|
|
|
/* returns the document index which has the given filename.
|
2006-06-07 21:24:15 +00:00
|
|
|
* is_tm_filename is needed when passing TagManager filenames because they are
|
|
|
|
* dereferenced, and would not match the link filename. */
|
|
|
|
gint document_find_by_filename(const gchar *filename, gboolean is_tm_filename)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
if (! filename) return -1;
|
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
for(i = 0; i < doc_array->len; i++)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-06-11 14:08:10 +00:00
|
|
|
gchar *dl_fname = (is_tm_filename && doc_list[i].tm_file) ?
|
|
|
|
doc_list[i].tm_file->file_name : doc_list[i].file_name;
|
2006-07-26 17:02:16 +00:00
|
|
|
#ifdef G_OS_WIN32
|
2005-11-22 12:26:26 +00:00
|
|
|
// ignore the case of filenames and paths under WIN32, causes errors if not
|
2006-06-07 21:24:15 +00:00
|
|
|
if (dl_fname && ! strcasecmp(dl_fname, filename)) return i;
|
2005-11-22 12:26:26 +00:00
|
|
|
#else
|
2006-12-07 16:09:45 +00:00
|
|
|
if (dl_fname && utils_str_equal(dl_fname, filename)) return i;
|
2005-11-22 12:26:26 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-23 15:36:21 +00:00
|
|
|
/* returns the document index which has sci */
|
2005-11-22 12:26:26 +00:00
|
|
|
gint document_find_by_sci(ScintillaObject *sci)
|
|
|
|
{
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
if (! sci) return -1;
|
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
for(i = 0; i < doc_array->len; i++)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-01-14 22:40:05 +00:00
|
|
|
if (doc_list[i].is_valid && doc_list[i].sci == sci) return i;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-23 15:36:21 +00:00
|
|
|
/* returns the index of the notebook page from the document index */
|
|
|
|
gint document_get_notebook_page(gint doc_idx)
|
|
|
|
{
|
|
|
|
if (! DOC_IDX_VALID(doc_idx)) return -1;
|
|
|
|
|
|
|
|
return gtk_notebook_page_num(GTK_NOTEBOOK(app->notebook),
|
|
|
|
GTK_WIDGET(doc_list[doc_idx].sci));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
/* returns the index of the given notebook page in the document list */
|
2006-01-11 18:38:17 +00:00
|
|
|
gint document_get_n_idx(guint page_num)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-05-08 01:57:25 +00:00
|
|
|
ScintillaObject *sci;
|
2006-10-09 16:08:53 +00:00
|
|
|
if (page_num >= doc_array->len) return -1;
|
2006-01-11 18:38:17 +00:00
|
|
|
|
2006-05-08 01:57:25 +00:00
|
|
|
sci = (ScintillaObject*)gtk_notebook_get_nth_page(
|
2006-01-11 18:38:17 +00:00
|
|
|
GTK_NOTEBOOK(app->notebook), page_num);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
return document_find_by_sci(sci);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* returns the index of the current notebook page in the document list */
|
2006-09-02 20:49:11 +00:00
|
|
|
gint document_get_cur_idx()
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
gint cur_page = gtk_notebook_get_current_page(GTK_NOTEBOOK(app->notebook));
|
|
|
|
|
|
|
|
if (cur_page == -1)
|
|
|
|
return -1;
|
|
|
|
else
|
2007-05-28 15:24:21 +00:00
|
|
|
{
|
|
|
|
ScintillaObject *sci = (ScintillaObject*)
|
|
|
|
gtk_notebook_get_nth_page(GTK_NOTEBOOK(app->notebook), cur_page);
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
return document_find_by_sci(sci);
|
2007-05-28 15:24:21 +00:00
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-02 20:49:11 +00:00
|
|
|
/* returns NULL if no documents are open */
|
|
|
|
document *document_get_current()
|
|
|
|
{
|
|
|
|
gint idx = document_get_cur_idx();
|
|
|
|
|
|
|
|
return DOC_IDX_VALID(idx) ? &doc_list[idx] : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
void document_init_doclist()
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-10-09 16:08:53 +00:00
|
|
|
doc_array = g_array_new(FALSE, FALSE, sizeof(document));
|
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
|
|
|
|
void document_finalize()
|
|
|
|
{
|
|
|
|
g_array_free(doc_array, TRUE);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-06 16:09:08 +00:00
|
|
|
void document_set_text_changed(gint idx)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-12-04 14:32:50 +00:00
|
|
|
if (DOC_IDX_VALID(idx) && ! app->quitting)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-12-05 10:37:36 +00:00
|
|
|
ui_update_tab_status(idx);
|
2006-09-06 16:09:08 +00:00
|
|
|
ui_save_buttons_toggle(doc_list[idx].changed);
|
|
|
|
ui_set_window_title(idx);
|
2006-10-24 13:41:34 +00:00
|
|
|
ui_update_statusbar(idx, -1);
|
2006-09-06 16:09:08 +00:00
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-01 13:24:58 +00:00
|
|
|
// Apply just the prefs that can change in the Preferences dialog
|
2007-03-08 18:02:08 +00:00
|
|
|
void document_apply_update_prefs(gint idx)
|
2006-08-01 13:24:58 +00:00
|
|
|
{
|
2007-03-08 18:02:08 +00:00
|
|
|
ScintillaObject *sci = doc_list[idx].sci;
|
2006-08-01 13:24:58 +00:00
|
|
|
sci_set_mark_long_lines(sci, app->long_line_type, app->long_line_column, app->long_line_color);
|
|
|
|
|
2007-05-29 16:30:54 +00:00
|
|
|
sci_set_tab_width(sci, editor_prefs.tab_width);
|
2007-05-09 11:23:50 +00:00
|
|
|
|
2007-05-29 16:30:54 +00:00
|
|
|
sci_set_use_tabs(sci, editor_prefs.use_tabs);
|
2007-05-14 13:06:18 +00:00
|
|
|
// remove indent spaces on backspace, if using spaces to indent
|
2007-05-29 16:30:54 +00:00
|
|
|
SSM(sci, SCI_SETBACKSPACEUNINDENTS, ! editor_prefs.use_tabs, 0);
|
2007-01-14 17:09:17 +00:00
|
|
|
|
2006-08-13 15:04:30 +00:00
|
|
|
sci_set_autoc_max_height(sci, app->autocompletion_max_height);
|
2006-08-01 13:24:58 +00:00
|
|
|
|
2007-06-12 15:16:17 +00:00
|
|
|
sci_set_indentation_guides(sci, editor_prefs.show_indent_guide);
|
2007-05-29 16:30:54 +00:00
|
|
|
sci_set_visible_white_spaces(sci, editor_prefs.show_white_space);
|
|
|
|
sci_set_visible_eols(sci, editor_prefs.show_line_endings);
|
2006-08-01 13:24:58 +00:00
|
|
|
|
2007-05-29 16:30:54 +00:00
|
|
|
sci_set_folding_margin_visible(sci, editor_prefs.folding);
|
2007-03-08 18:02:08 +00:00
|
|
|
|
2007-06-12 15:16:17 +00:00
|
|
|
doc_list[idx].auto_indent = (editor_prefs.indent_mode != INDENT_NONE);
|
2007-07-12 15:44:13 +00:00
|
|
|
|
|
|
|
sci_assign_cmdkey(sci, SCK_HOME,
|
|
|
|
editor_prefs.smart_home_key ? SCI_VCHOMEWRAP : SCI_HOMEWRAP);
|
|
|
|
sci_assign_cmdkey(sci, SCK_END, SCI_LINEENDWRAP);
|
2006-08-01 13:24:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
/* Sets is_valid to FALSE and initializes some members to NULL, to mark it uninitialized.
|
|
|
|
* The flag is_valid is set to TRUE in document_create_new_sci(). */
|
|
|
|
static void init_doc_struct(document *new_doc)
|
|
|
|
{
|
|
|
|
new_doc->is_valid = FALSE;
|
|
|
|
new_doc->has_tags = FALSE;
|
2007-06-12 15:16:17 +00:00
|
|
|
new_doc->auto_indent = (editor_prefs.indent_mode != INDENT_NONE);
|
2007-05-29 16:30:54 +00:00
|
|
|
new_doc->line_breaking = editor_prefs.line_breaking;
|
2006-10-09 16:08:53 +00:00
|
|
|
new_doc->readonly = FALSE;
|
|
|
|
new_doc->tag_store = NULL;
|
|
|
|
new_doc->tag_tree = NULL;
|
|
|
|
new_doc->file_name = NULL;
|
|
|
|
new_doc->file_type = NULL;
|
|
|
|
new_doc->tm_file = NULL;
|
|
|
|
new_doc->encoding = NULL;
|
|
|
|
new_doc->has_bom = FALSE;
|
|
|
|
new_doc->sci = NULL;
|
|
|
|
new_doc->undo_actions = NULL;
|
|
|
|
new_doc->redo_actions = NULL;
|
2007-01-31 15:53:11 +00:00
|
|
|
new_doc->scroll_percent = -1.0F;
|
2006-10-09 16:08:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* returns the next free place(i.e. index) in the document list,
|
|
|
|
* or -1 if the current doc_array is full */
|
|
|
|
static gint document_get_new_idx()
|
|
|
|
{
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
for(i = 0; i < doc_array->len; i++)
|
|
|
|
{
|
|
|
|
if (doc_list[i].sci == NULL)
|
|
|
|
{
|
|
|
|
return (gint) i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
/* creates a new tab in the notebook and does all related stuff
|
|
|
|
* finally it returns the index of the created document */
|
2006-10-23 20:32:37 +00:00
|
|
|
static gint document_create_new_sci(const gchar *filename)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
ScintillaObject *sci;
|
|
|
|
PangoFontDescription *pfd;
|
2006-12-05 10:37:36 +00:00
|
|
|
gchar *fname;
|
2006-09-07 15:51:24 +00:00
|
|
|
gint new_idx;
|
2006-07-22 01:29:10 +00:00
|
|
|
document *this;
|
2006-06-25 12:13:35 +00:00
|
|
|
gint tabnum;
|
2006-11-21 18:39:23 +00:00
|
|
|
gint cur_pages = gtk_notebook_get_n_pages(GTK_NOTEBOOK(app->notebook));
|
2006-05-09 22:02:22 +00:00
|
|
|
|
2006-11-22 16:07:18 +00:00
|
|
|
if (cur_pages == 1)
|
2006-09-07 15:51:24 +00:00
|
|
|
{
|
|
|
|
gint idx = document_get_cur_idx();
|
|
|
|
// remove the empty document and open a new one
|
|
|
|
if (doc_list[idx].file_name == NULL && ! doc_list[idx].changed) document_remove(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
new_idx = document_get_new_idx();
|
2006-10-09 16:08:53 +00:00
|
|
|
if (new_idx == -1) // expand the array, no free places
|
|
|
|
{
|
|
|
|
document new_doc;
|
|
|
|
init_doc_struct(&new_doc);
|
|
|
|
new_idx = doc_array->len;
|
|
|
|
g_array_append_val(doc_array, new_doc);
|
|
|
|
}
|
|
|
|
this = &doc_list[new_idx];
|
2006-07-22 01:29:10 +00:00
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
/* SCI - Code */
|
|
|
|
sci = SCINTILLA(scintilla_new());
|
2006-01-14 22:40:05 +00:00
|
|
|
scintilla_set_id(sci, new_idx);
|
2006-06-13 19:37:21 +00:00
|
|
|
this->sci = sci;
|
2006-05-09 22:02:22 +00:00
|
|
|
|
|
|
|
gtk_widget_show(GTK_WIDGET(sci));
|
|
|
|
|
2006-04-27 18:06:35 +00:00
|
|
|
sci_set_codepage(sci, SC_CP_UTF8);
|
2005-12-01 22:59:02 +00:00
|
|
|
//SSM(sci, SCI_SETWRAPSTARTINDENT, 4, 0);
|
2006-02-26 18:19:28 +00:00
|
|
|
// disable scintilla provided popup menu
|
2005-11-22 12:26:26 +00:00
|
|
|
sci_use_popup(sci, FALSE);
|
2007-07-07 15:12:13 +00:00
|
|
|
// disable some Scintilla keybinsings to be able to redefine it
|
|
|
|
sci_clear_cmdkey(sci, 'A' | (SCMOD_CTRL << 16)); // select all
|
|
|
|
sci_clear_cmdkey(sci, 'T' | (SCMOD_CTRL << 16)); // line transpose
|
|
|
|
sci_clear_cmdkey(sci, 'L' | (SCMOD_CTRL << 16)); // line cut
|
|
|
|
sci_clear_cmdkey(sci, 'L' | (SCMOD_CTRL << 16) | (SCMOD_SHIFT << 16)); // line delete
|
|
|
|
sci_clear_cmdkey(sci, 'T' | (SCMOD_CTRL << 16) | (SCMOD_SHIFT << 16)); // line copy
|
2006-08-01 13:24:58 +00:00
|
|
|
|
2007-03-08 18:02:08 +00:00
|
|
|
document_apply_update_prefs(new_idx);
|
2006-08-01 13:24:58 +00:00
|
|
|
|
2006-12-12 21:52:48 +00:00
|
|
|
sci_set_tab_indents(sci, app->use_tab_to_indent);
|
2005-11-22 12:26:26 +00:00
|
|
|
sci_set_symbol_margin(sci, app->show_markers_margin);
|
2006-05-09 22:02:22 +00:00
|
|
|
sci_set_line_numbers(sci, app->show_linenumber_margin, 0);
|
2007-05-29 16:30:54 +00:00
|
|
|
sci_set_lines_wrapped(sci, editor_prefs.line_breaking);
|
|
|
|
sci_set_scrollbar_mode(sci, editor_prefs.show_scrollbars);
|
2007-07-11 17:05:13 +00:00
|
|
|
sci_set_caret_policy_x(sci, CARET_JUMPS | CARET_EVEN, 0);
|
2007-07-12 17:16:44 +00:00
|
|
|
//sci_set_caret_policy_y(sci, CARET_JUMPS | CARET_EVEN, 0);
|
2006-08-02 10:50:53 +00:00
|
|
|
|
2006-12-05 10:37:36 +00:00
|
|
|
// signal for insert-key(works without too, but to update the right status bar)
|
2007-01-12 13:04:39 +00:00
|
|
|
//g_signal_connect((GtkWidget*) sci, "key-press-event",
|
|
|
|
//G_CALLBACK(keybindings_got_event), GINT_TO_POINTER(new_idx));
|
|
|
|
// signal for the popup menu
|
2007-06-11 08:58:37 +00:00
|
|
|
g_signal_connect(G_OBJECT(sci), "button-press-event",
|
2006-12-05 10:37:36 +00:00
|
|
|
G_CALLBACK(on_editor_button_press_event), GINT_TO_POINTER(new_idx));
|
2007-06-11 08:58:37 +00:00
|
|
|
g_signal_connect(G_OBJECT(sci), "motion-notify-event", G_CALLBACK(on_motion_event), NULL);
|
2006-12-05 10:37:36 +00:00
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
pfd = pango_font_description_from_string(app->editor_font);
|
|
|
|
fname = g_strdup_printf("!%s", pango_font_description_get_family(pfd));
|
2006-06-13 19:37:21 +00:00
|
|
|
document_set_font(new_idx, fname, pango_font_description_get_size(pfd) / PANGO_SCALE);
|
2005-11-22 12:26:26 +00:00
|
|
|
pango_font_description_free(pfd);
|
|
|
|
g_free(fname);
|
|
|
|
|
2006-06-13 19:37:21 +00:00
|
|
|
this->tag_store = NULL;
|
|
|
|
this->tag_tree = NULL;
|
2005-12-18 22:08:42 +00:00
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
// store important pointers in the tab list
|
2006-06-13 19:37:21 +00:00
|
|
|
this->file_name = (filename) ? g_strdup(filename) : NULL;
|
|
|
|
this->encoding = NULL;
|
2006-10-24 13:41:34 +00:00
|
|
|
this->saved_encoding.encoding = NULL;
|
|
|
|
this->saved_encoding.has_bom = FALSE;
|
2006-06-13 19:37:21 +00:00
|
|
|
this->tm_file = NULL;
|
|
|
|
this->file_type = NULL;
|
|
|
|
this->mtime = 0;
|
|
|
|
this->changed = FALSE;
|
|
|
|
this->last_check = time(NULL);
|
|
|
|
this->readonly = FALSE;
|
2007-05-29 16:30:54 +00:00
|
|
|
this->line_breaking = editor_prefs.line_breaking;
|
2007-06-12 15:16:17 +00:00
|
|
|
this->auto_indent = (editor_prefs.indent_mode != INDENT_NONE);
|
2006-06-13 19:37:21 +00:00
|
|
|
this->has_tags = FALSE;
|
2005-12-18 22:08:42 +00:00
|
|
|
|
2006-12-05 10:37:36 +00:00
|
|
|
treeviews_openfiles_add(new_idx); // sets this->iter
|
|
|
|
|
|
|
|
tabnum = notebook_new_tab(new_idx);
|
|
|
|
gtk_notebook_set_current_page(GTK_NOTEBOOK(app->notebook), tabnum);
|
|
|
|
|
2007-01-12 13:04:39 +00:00
|
|
|
// select document in sidebar
|
|
|
|
{
|
|
|
|
GtkTreeSelection *sel;
|
|
|
|
|
|
|
|
sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(tv.tree_openfiles));
|
|
|
|
gtk_tree_selection_select_iter(sel, &this->iter);
|
|
|
|
}
|
|
|
|
|
2007-07-20 12:06:51 +00:00
|
|
|
ui_document_buttons_update();
|
2006-12-05 10:37:36 +00:00
|
|
|
|
|
|
|
this->is_valid = TRUE; // do this last to prevent UI updating with NULL items.
|
2006-10-09 16:08:53 +00:00
|
|
|
g_assert(doc_list[new_idx].sci == sci);
|
2005-11-22 12:26:26 +00:00
|
|
|
return new_idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-01-14 22:40:05 +00:00
|
|
|
/* removes the given notebook tab and clears the related entry in the document list */
|
2006-01-11 18:38:17 +00:00
|
|
|
gboolean document_remove(guint page_num)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
gint idx = document_get_n_idx(page_num);
|
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
if (DOC_IDX_VALID(idx))
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
if (doc_list[idx].changed && ! dialogs_show_unsaved_file(idx))
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-11-22 16:07:18 +00:00
|
|
|
notebook_remove_page(page_num);
|
2006-12-05 10:37:36 +00:00
|
|
|
treeviews_remove_document(idx);
|
2006-11-25 12:32:22 +00:00
|
|
|
msgwin_status_add(_("File %s closed."), DOC_FILENAME(idx));
|
2005-11-22 12:26:26 +00:00
|
|
|
g_free(doc_list[idx].encoding);
|
2006-10-24 13:41:34 +00:00
|
|
|
g_free(doc_list[idx].saved_encoding.encoding);
|
2005-11-22 12:26:26 +00:00
|
|
|
g_free(doc_list[idx].file_name);
|
|
|
|
tm_workspace_remove_object(doc_list[idx].tm_file, TRUE);
|
2007-01-31 15:53:11 +00:00
|
|
|
|
2006-01-11 18:38:17 +00:00
|
|
|
doc_list[idx].is_valid = FALSE;
|
2005-11-22 12:26:26 +00:00
|
|
|
doc_list[idx].sci = NULL;
|
|
|
|
doc_list[idx].file_name = NULL;
|
|
|
|
doc_list[idx].file_type = NULL;
|
2006-04-27 18:06:35 +00:00
|
|
|
doc_list[idx].encoding = NULL;
|
2006-07-23 15:45:05 +00:00
|
|
|
doc_list[idx].has_bom = FALSE;
|
2005-11-22 12:26:26 +00:00
|
|
|
doc_list[idx].tm_file = NULL;
|
2007-01-31 15:53:11 +00:00
|
|
|
doc_list[idx].scroll_percent = -1.0F;
|
2006-09-06 18:26:08 +00:00
|
|
|
document_undo_clear(idx);
|
2005-11-22 12:26:26 +00:00
|
|
|
if (gtk_notebook_get_n_pages(GTK_NOTEBOOK(app->notebook)) == 0)
|
|
|
|
{
|
2007-02-05 16:17:44 +00:00
|
|
|
treeviews_update_tag_list(-1, FALSE);
|
2005-11-22 12:26:26 +00:00
|
|
|
//on_notebook1_switch_page(GTK_NOTEBOOK(app->notebook), NULL, 0, NULL);
|
2006-09-05 14:24:47 +00:00
|
|
|
ui_set_window_title(-1);
|
|
|
|
ui_save_buttons_toggle(FALSE);
|
2007-07-20 12:06:51 +00:00
|
|
|
ui_document_buttons_update();
|
2006-10-18 19:35:42 +00:00
|
|
|
build_menu_update(-1);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
}
|
2006-01-14 22:40:05 +00:00
|
|
|
else geany_debug("Error: idx: %d page_num: %d", idx, page_num);
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-24 13:41:34 +00:00
|
|
|
// used to keep a record of the unchanged document state encoding
|
|
|
|
static void store_saved_encoding(gint idx)
|
|
|
|
{
|
|
|
|
g_free(doc_list[idx].saved_encoding.encoding);
|
|
|
|
doc_list[idx].saved_encoding.encoding = g_strdup(doc_list[idx].encoding);
|
|
|
|
doc_list[idx].saved_encoding.has_bom = doc_list[idx].has_bom;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
/* This creates a new document, by clearing the text widget and setting the
|
2007-02-15 23:56:15 +00:00
|
|
|
current filename to filename or NULL. If ft is NULL and filename is not NULL, then the filetype
|
|
|
|
will be guessed from the given filename.
|
|
|
|
filename is expected in UTF-8 encoding. */
|
|
|
|
gint document_new_file(const gchar *filename, filetype *ft)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2007-02-15 23:56:15 +00:00
|
|
|
gint idx = document_create_new_sci(filename);
|
2006-11-14 16:03:25 +00:00
|
|
|
gchar *template = templates_get_template_new_file(ft);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
g_assert(idx != -1);
|
2006-07-22 01:29:10 +00:00
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
sci_set_undo_collection(doc_list[idx].sci, FALSE); // avoid creation of an undo action
|
2006-10-09 16:08:53 +00:00
|
|
|
sci_clear_all(doc_list[idx].sci);
|
|
|
|
sci_set_text(doc_list[idx].sci, template);
|
|
|
|
g_free(template);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
sci_set_eol_mode(doc_list[idx].sci, SC_EOL_CRLF);
|
|
|
|
#else
|
|
|
|
sci_set_eol_mode(doc_list[idx].sci, SC_EOL_LF);
|
|
|
|
#endif
|
|
|
|
sci_set_undo_collection(doc_list[idx].sci, TRUE);
|
|
|
|
sci_empty_undo_buffer(doc_list[idx].sci);
|
|
|
|
|
2007-06-26 15:41:27 +00:00
|
|
|
doc_list[idx].encoding = g_strdup(encodings[editor_prefs.default_new_encoding].charset);
|
2006-10-24 13:41:34 +00:00
|
|
|
// store the opened encoding for undo/redo
|
|
|
|
store_saved_encoding(idx);
|
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
//document_set_filetype(idx, (ft == NULL) ? filetypes[GEANY_FILETYPES_ALL] : ft);
|
2007-02-15 23:56:15 +00:00
|
|
|
if (ft == NULL && filename != NULL) // guess the filetype from the filename if one is given
|
2007-04-18 12:12:51 +00:00
|
|
|
ft = filetypes_detect_from_file(idx);
|
2007-02-15 23:56:15 +00:00
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
document_set_filetype(idx, ft); // also clears taglist
|
|
|
|
if (ft == NULL) filetypes[GEANY_FILETYPES_ALL]->style_func_ptr(doc_list[idx].sci);
|
|
|
|
ui_set_window_title(idx);
|
2006-10-18 19:35:42 +00:00
|
|
|
build_menu_update(idx);
|
2007-01-13 15:25:45 +00:00
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
doc_list[idx].mtime = time(NULL);
|
|
|
|
doc_list[idx].changed = FALSE;
|
2007-01-13 15:25:45 +00:00
|
|
|
|
|
|
|
document_update_tag_list(idx, FALSE);
|
2006-10-09 16:08:53 +00:00
|
|
|
document_set_text_changed(idx);
|
2007-02-15 23:56:15 +00:00
|
|
|
ui_document_show_hide(idx); // update the document menu
|
2006-10-10 16:02:41 +00:00
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
sci_set_line_numbers(doc_list[idx].sci, app->show_linenumber_margin, 0);
|
|
|
|
sci_goto_pos(doc_list[idx].sci, 0, TRUE);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-10-09 16:08:53 +00:00
|
|
|
// "the" SCI signal (connect after initial setup(i.e. adding text))
|
|
|
|
g_signal_connect((GtkWidget*) doc_list[idx].sci, "sci-notify",
|
|
|
|
G_CALLBACK(on_editor_notification), GINT_TO_POINTER(idx));
|
2006-09-06 16:09:08 +00:00
|
|
|
|
2007-02-15 23:56:15 +00:00
|
|
|
msgwin_status_add(_("New file \"%s\" opened."),
|
|
|
|
(doc_list[idx].file_name != NULL) ? doc_list[idx].file_name : GEANY_STRING_UNTITLED);
|
|
|
|
|
|
|
|
return idx;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-06 12:35:43 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gchar *data; // null-terminated file data
|
2007-05-24 10:24:26 +00:00
|
|
|
gsize size; // actual file size on disk
|
2007-01-06 12:35:43 +00:00
|
|
|
gsize len; // string length of data
|
|
|
|
gchar *enc;
|
|
|
|
gboolean bom;
|
|
|
|
time_t mtime; // modification time, read by stat::st_mtime
|
|
|
|
gboolean readonly;
|
|
|
|
} FileData;
|
|
|
|
|
|
|
|
|
2006-09-08 15:05:32 +00:00
|
|
|
// reload file with specified encoding
|
|
|
|
static gboolean
|
2007-01-06 12:35:43 +00:00
|
|
|
handle_forced_encoding(FileData *filedata, const gchar *forced_enc)
|
2006-09-08 15:05:32 +00:00
|
|
|
{
|
2007-01-07 16:22:41 +00:00
|
|
|
GeanyEncodingIndex enc_idx;
|
|
|
|
|
2006-12-07 16:09:45 +00:00
|
|
|
if (utils_str_equal(forced_enc, "UTF-8"))
|
2006-09-08 15:05:32 +00:00
|
|
|
{
|
2007-01-06 12:35:43 +00:00
|
|
|
if (! g_utf8_validate(filedata->data, filedata->len, NULL))
|
2006-09-08 15:05:32 +00:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-10-25 14:48:07 +00:00
|
|
|
gchar *converted_text = encodings_convert_to_utf8_from_charset(
|
2007-01-06 12:35:43 +00:00
|
|
|
filedata->data, filedata->len, forced_enc, FALSE);
|
2006-09-08 15:05:32 +00:00
|
|
|
if (converted_text == NULL)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-01-06 12:35:43 +00:00
|
|
|
g_free(filedata->data);
|
|
|
|
filedata->data = converted_text;
|
|
|
|
filedata->len = strlen(converted_text);
|
2006-09-08 15:05:32 +00:00
|
|
|
}
|
|
|
|
}
|
2007-05-24 10:24:26 +00:00
|
|
|
enc_idx = encodings_scan_unicode_bom(filedata->data, filedata->size, NULL);
|
2007-01-07 16:22:41 +00:00
|
|
|
filedata->bom = (enc_idx == GEANY_ENCODING_UTF_8);
|
|
|
|
filedata->enc = g_strdup(forced_enc);
|
2006-09-08 15:05:32 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-07 16:22:41 +00:00
|
|
|
// detect encoding and convert to UTF-8 if necessary
|
2006-09-08 15:05:32 +00:00
|
|
|
static gboolean
|
2007-01-06 12:35:43 +00:00
|
|
|
handle_encoding(FileData *filedata)
|
2006-09-08 15:05:32 +00:00
|
|
|
{
|
2007-01-07 16:22:41 +00:00
|
|
|
g_return_val_if_fail(filedata->enc == NULL, FALSE);
|
|
|
|
g_return_val_if_fail(filedata->bom == FALSE, FALSE);
|
|
|
|
|
2007-05-24 10:24:26 +00:00
|
|
|
if (filedata->size == 0)
|
2007-01-07 16:22:41 +00:00
|
|
|
{
|
2007-05-24 10:24:26 +00:00
|
|
|
// we have no data so assume UTF-8, filedata->len can be 0 even we have an empty
|
|
|
|
// e.g. UTF32 file with a BOM(so size is 4, len is 0)
|
2007-01-07 16:22:41 +00:00
|
|
|
filedata->enc = g_strdup("UTF-8");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// first check for a BOM
|
|
|
|
GeanyEncodingIndex enc_idx =
|
2007-05-24 10:24:26 +00:00
|
|
|
encodings_scan_unicode_bom(filedata->data, filedata->size, NULL);
|
2007-01-07 16:22:41 +00:00
|
|
|
|
|
|
|
if (enc_idx != GEANY_ENCODING_NONE)
|
2006-09-08 15:05:32 +00:00
|
|
|
{
|
2007-01-07 16:22:41 +00:00
|
|
|
filedata->enc = g_strdup(encodings[enc_idx].charset);
|
2007-01-06 12:35:43 +00:00
|
|
|
filedata->bom = TRUE;
|
2007-01-07 16:22:41 +00:00
|
|
|
|
|
|
|
if (enc_idx != GEANY_ENCODING_UTF_8) // the BOM indicated something else than UTF-8
|
2006-09-08 15:05:32 +00:00
|
|
|
{
|
2006-10-25 14:48:07 +00:00
|
|
|
gchar *converted_text = encodings_convert_to_utf8_from_charset(
|
2007-05-24 10:24:26 +00:00
|
|
|
filedata->data, filedata->size, filedata->enc, FALSE);
|
2007-01-07 16:22:41 +00:00
|
|
|
if (converted_text != NULL)
|
2006-09-08 15:05:32 +00:00
|
|
|
{
|
2007-01-06 12:35:43 +00:00
|
|
|
g_free(filedata->data);
|
|
|
|
filedata->data = converted_text;
|
|
|
|
filedata->len = strlen(converted_text);
|
2006-09-08 15:05:32 +00:00
|
|
|
}
|
2007-01-07 16:22:41 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// there was a problem converting data from BOM encoding type
|
|
|
|
g_free(filedata->enc);
|
|
|
|
filedata->enc = NULL;
|
|
|
|
filedata->bom = FALSE;
|
|
|
|
}
|
2006-09-08 15:05:32 +00:00
|
|
|
}
|
|
|
|
}
|
2007-01-07 16:22:41 +00:00
|
|
|
|
|
|
|
if (filedata->enc == NULL) // either there was no BOM or the BOM encoding failed
|
2006-09-08 15:05:32 +00:00
|
|
|
{
|
2007-01-07 16:22:41 +00:00
|
|
|
// try UTF-8 first
|
2007-01-06 12:35:43 +00:00
|
|
|
if (g_utf8_validate(filedata->data, filedata->len, NULL))
|
2006-09-08 15:05:32 +00:00
|
|
|
{
|
2007-01-06 12:35:43 +00:00
|
|
|
filedata->enc = g_strdup("UTF-8");
|
2006-09-08 15:05:32 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-01-07 16:22:41 +00:00
|
|
|
// detect the encoding
|
2007-01-06 12:35:43 +00:00
|
|
|
gchar *converted_text = encodings_convert_to_utf8(filedata->data,
|
2007-05-24 10:24:26 +00:00
|
|
|
filedata->size, &filedata->enc);
|
2006-09-08 15:05:32 +00:00
|
|
|
|
|
|
|
if (converted_text == NULL)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2007-01-07 16:22:41 +00:00
|
|
|
g_free(filedata->data);
|
|
|
|
filedata->data = converted_text;
|
|
|
|
filedata->len = strlen(converted_text);
|
2006-09-08 15:05:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2007-01-06 12:35:43 +00:00
|
|
|
handle_bom(FileData *filedata)
|
2006-09-08 15:05:32 +00:00
|
|
|
{
|
2007-01-07 16:22:41 +00:00
|
|
|
guint bom_len;
|
2007-01-06 12:35:43 +00:00
|
|
|
|
2007-05-24 10:24:26 +00:00
|
|
|
encodings_scan_unicode_bom(filedata->data, filedata->size, &bom_len);
|
2007-01-07 16:22:41 +00:00
|
|
|
g_return_if_fail(bom_len != 0);
|
2007-01-06 12:35:43 +00:00
|
|
|
|
2007-05-24 10:24:26 +00:00
|
|
|
// use filedata->len here because the contents are already converted into UTF-8
|
2007-01-07 16:22:41 +00:00
|
|
|
filedata->len -= bom_len;
|
|
|
|
// overwrite the BOM with the remainder of the file contents, plus the NULL terminator.
|
|
|
|
g_memmove(filedata->data, filedata->data + bom_len, filedata->len + 1);
|
2007-01-07 18:48:56 +00:00
|
|
|
filedata->data = g_realloc(filedata->data, filedata->len + 1);
|
2007-01-06 12:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* loads textfile data, verifies and converts to forced_enc or UTF-8. Also handles BOM. */
|
|
|
|
static gboolean load_text_file(const gchar *locale_filename, const gchar *utf8_filename,
|
|
|
|
FileData *filedata, const gchar *forced_enc)
|
|
|
|
{
|
|
|
|
GError *err = NULL;
|
|
|
|
struct stat st;
|
2007-05-24 10:24:26 +00:00
|
|
|
GeanyEncodingIndex tmp_enc_idx;
|
2007-01-06 12:35:43 +00:00
|
|
|
|
|
|
|
filedata->data = NULL;
|
|
|
|
filedata->len = 0;
|
|
|
|
filedata->enc = NULL;
|
|
|
|
filedata->bom = FALSE;
|
|
|
|
filedata->readonly = FALSE;
|
|
|
|
|
2007-04-16 15:58:34 +00:00
|
|
|
if (g_stat(locale_filename, &st) != 0)
|
2007-01-06 12:35:43 +00:00
|
|
|
{
|
|
|
|
msgwin_status_add(_("Could not open file %s (%s)"), utf8_filename, g_strerror(errno));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
filedata->mtime = st.st_mtime;
|
|
|
|
|
|
|
|
if (! g_file_get_contents(locale_filename, &filedata->data, NULL, &err))
|
|
|
|
{
|
|
|
|
msgwin_status_add(err->message);
|
|
|
|
g_error_free(err);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// use strlen to check for null chars
|
2007-05-24 10:24:26 +00:00
|
|
|
filedata->size = (gsize) st.st_size;
|
2007-01-06 12:35:43 +00:00
|
|
|
filedata->len = strlen(filedata->data);
|
|
|
|
|
2007-05-24 10:24:26 +00:00
|
|
|
// temporarily retrieve the encoding idx based on the BOM to suppress the following warning
|
|
|
|
// if we have a BOM
|
|
|
|
tmp_enc_idx = encodings_scan_unicode_bom(filedata->data, filedata->size, NULL);
|
|
|
|
|
2007-01-06 12:35:43 +00:00
|
|
|
/* check whether the size of the loaded data is equal to the size of the file in the filesystem */
|
2007-05-24 10:24:26 +00:00
|
|
|
if (filedata->len != filedata->size && (
|
|
|
|
tmp_enc_idx == GEANY_ENCODING_UTF_8 || // tmp_enc_idx can be UTF-7/8/16/32, UCS and None
|
|
|
|
tmp_enc_idx == GEANY_ENCODING_UTF_7 || // filter out UTF-7/8 and None where no NULL bytes
|
|
|
|
tmp_enc_idx == GEANY_ENCODING_NONE)) // are allowed
|
2007-01-06 12:35:43 +00:00
|
|
|
{
|
|
|
|
gchar *warn_msg = _("The file \"%s\" could not be opened properly and has been truncated. "
|
|
|
|
"This can occur if the file contains a NULL byte. "
|
|
|
|
"Be aware that saving it can cause data loss.\nThe file was set to read-only.");
|
|
|
|
|
|
|
|
if (app->main_window_realized)
|
|
|
|
dialogs_show_msgbox(GTK_MESSAGE_WARNING, warn_msg, utf8_filename);
|
|
|
|
|
|
|
|
msgwin_status_add(warn_msg, utf8_filename);
|
|
|
|
|
|
|
|
// set the file to read-only mode because saving it is probably dangerous
|
|
|
|
filedata->readonly = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Determine character encoding and convert to UTF-8 */
|
|
|
|
if (forced_enc != NULL)
|
|
|
|
{
|
|
|
|
// the encoding should be ignored(requested by user), so open the file "as it is"
|
|
|
|
if (utils_str_equal(forced_enc, encodings[GEANY_ENCODING_NONE].charset))
|
|
|
|
{
|
|
|
|
filedata->bom = FALSE;
|
|
|
|
filedata->enc = g_strdup(encodings[GEANY_ENCODING_NONE].charset);
|
|
|
|
}
|
|
|
|
else if (! handle_forced_encoding(filedata, forced_enc))
|
|
|
|
{
|
|
|
|
msgwin_status_add(_("The file \"%s\" is not valid %s."), utf8_filename, forced_enc);
|
|
|
|
utils_beep();
|
|
|
|
g_free(filedata->data);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (! handle_encoding(filedata))
|
|
|
|
{
|
|
|
|
msgwin_status_add(
|
|
|
|
_("The file \"%s\" does not look like a text file or the file encoding is not supported."),
|
|
|
|
utf8_filename);
|
|
|
|
utils_beep();
|
|
|
|
g_free(filedata->data);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (filedata->bom)
|
|
|
|
handle_bom(filedata);
|
|
|
|
return TRUE;
|
2006-09-08 15:05:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-01 15:00:59 +00:00
|
|
|
/* Sets the cursor position on opening a file. First it sets the line when cl_options.goto_line
|
|
|
|
* is set, otherwise it sets the line when pos is greater than zero and finally it sets the column
|
|
|
|
* if cl_options.goto_column is set. */
|
|
|
|
static void set_cursor_position(gint idx, gint pos)
|
|
|
|
{
|
|
|
|
if (cl_options.goto_line >= 0)
|
|
|
|
{ // goto line which was specified on command line and then undefine the line
|
|
|
|
sci_goto_line(doc_list[idx].sci, cl_options.goto_line - 1, TRUE);
|
|
|
|
doc_list[idx].scroll_percent = 0.5F;
|
|
|
|
cl_options.goto_line = -1;
|
|
|
|
}
|
|
|
|
else if (pos > 0)
|
|
|
|
{
|
|
|
|
sci_set_current_position(doc_list[idx].sci, pos, FALSE);
|
|
|
|
doc_list[idx].scroll_percent = 0.5F;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cl_options.goto_column >= 0)
|
|
|
|
{ // goto column which was specified on command line and then undefine the column
|
|
|
|
gint cur_pos = sci_get_current_position(doc_list[idx].sci);
|
|
|
|
sci_set_current_position(doc_list[idx].sci, cur_pos + cl_options.goto_column, FALSE);
|
|
|
|
doc_list[idx].scroll_percent = 0.5F;
|
|
|
|
cl_options.goto_column = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-06 12:35:43 +00:00
|
|
|
/* To open a new file, set idx to -1; filename should be locale encoded.
|
|
|
|
* To reload a file, set the idx for the document to be reloaded; filename should be NULL.
|
|
|
|
* Returns: idx of the opened file or -1 if an error occurred.
|
2007-03-06 16:57:09 +00:00
|
|
|
* Note: If opening more than one file, document_delay_colourise() should be used before
|
|
|
|
* and document_colourise_new() after opening to avoid unnecessary recolourising. */
|
|
|
|
gint document_open_file(gint idx, const gchar *filename, gint pos, gboolean readonly,
|
|
|
|
filetype *ft, const gchar *forced_enc)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-05-17 18:29:29 +00:00
|
|
|
gint editor_mode;
|
2005-11-22 12:26:26 +00:00
|
|
|
gboolean reload = (idx == -1) ? FALSE : TRUE;
|
2006-01-23 17:05:29 +00:00
|
|
|
gchar *utf8_filename = NULL;
|
2006-02-06 06:26:53 +00:00
|
|
|
gchar *locale_filename = NULL;
|
2006-12-14 12:54:36 +00:00
|
|
|
filetype *use_ft;
|
2007-01-06 12:35:43 +00:00
|
|
|
FileData filedata;
|
2006-05-16 19:06:08 +00:00
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
//struct timeval tv, tv1;
|
|
|
|
//struct timezone tz;
|
|
|
|
//gettimeofday(&tv, &tz);
|
|
|
|
|
|
|
|
if (reload)
|
|
|
|
{
|
2006-02-06 06:26:53 +00:00
|
|
|
utf8_filename = g_strdup(doc_list[idx].file_name);
|
2006-08-13 08:36:52 +00:00
|
|
|
locale_filename = utils_get_locale_from_utf8(utf8_filename);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-04-27 18:06:35 +00:00
|
|
|
// filename must not be NULL when it is a new file
|
|
|
|
if (filename == NULL)
|
|
|
|
{
|
2006-12-18 11:56:46 +00:00
|
|
|
ui_set_statusbar(_("Invalid filename"));
|
2006-06-11 22:39:11 +00:00
|
|
|
return -1;
|
2006-04-27 18:06:35 +00:00
|
|
|
}
|
2006-05-08 01:57:25 +00:00
|
|
|
|
2006-01-23 17:05:29 +00:00
|
|
|
// try to get the UTF-8 equivalent for the filename, fallback to filename if error
|
2006-02-06 06:26:53 +00:00
|
|
|
locale_filename = g_strdup(filename);
|
2007-04-16 15:58:34 +00:00
|
|
|
#ifdef G_OS_WIN32 // on Win32 we only use locale_filename because it is already UTF8. I hope
|
|
|
|
utf8_filename = g_strdup(locale_filename);
|
|
|
|
#else
|
2006-08-13 08:36:52 +00:00
|
|
|
utf8_filename = utils_get_utf8_from_locale(locale_filename);
|
2007-04-16 15:58:34 +00:00
|
|
|
#endif
|
2006-01-23 17:05:29 +00:00
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
// if file is already open, switch to it and go
|
2006-06-07 21:24:15 +00:00
|
|
|
idx = document_find_by_filename(utf8_filename, FALSE);
|
2005-11-22 12:26:26 +00:00
|
|
|
if (idx >= 0)
|
|
|
|
{
|
2006-09-09 12:03:11 +00:00
|
|
|
ui_add_recent_file(utf8_filename); // either add or reorder recent item
|
2005-11-22 12:26:26 +00:00
|
|
|
gtk_notebook_set_current_page(GTK_NOTEBOOK(app->notebook),
|
|
|
|
gtk_notebook_page_num(GTK_NOTEBOOK(app->notebook),
|
|
|
|
(GtkWidget*) doc_list[idx].sci));
|
2006-02-06 06:26:53 +00:00
|
|
|
g_free(utf8_filename);
|
|
|
|
g_free(locale_filename);
|
2006-12-18 13:04:18 +00:00
|
|
|
utils_check_disk_status(idx, TRUE); // force a file changed check
|
2007-02-01 15:00:59 +00:00
|
|
|
set_cursor_position(idx, pos);
|
2006-06-11 22:39:11 +00:00
|
|
|
return idx;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-26 15:41:27 +00:00
|
|
|
// if default encoding for opening files is set, use it if no forced encoding is set
|
|
|
|
if (editor_prefs.default_open_encoding >= 0 && forced_enc == NULL)
|
|
|
|
forced_enc = encodings[editor_prefs.default_open_encoding].charset;
|
|
|
|
|
2007-01-06 12:35:43 +00:00
|
|
|
if (! load_text_file(locale_filename, utf8_filename, &filedata, forced_enc))
|
2006-07-22 01:29:10 +00:00
|
|
|
{
|
2006-09-08 15:05:32 +00:00
|
|
|
g_free(utf8_filename);
|
|
|
|
g_free(locale_filename);
|
|
|
|
return -1;
|
2006-07-22 01:29:10 +00:00
|
|
|
}
|
|
|
|
|
2006-01-23 17:05:29 +00:00
|
|
|
if (! reload) idx = document_create_new_sci(utf8_filename);
|
2007-01-06 12:35:43 +00:00
|
|
|
g_return_val_if_fail(idx != -1, -1); // really should not happen
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
sci_set_undo_collection(doc_list[idx].sci, FALSE); // avoid creation of an undo action
|
|
|
|
sci_empty_undo_buffer(doc_list[idx].sci);
|
|
|
|
|
2007-01-06 12:35:43 +00:00
|
|
|
// add the text to the ScintillaObject
|
2007-04-30 12:17:31 +00:00
|
|
|
sci_set_readonly(doc_list[idx].sci, FALSE); // to allow replacing text
|
2007-01-06 12:35:43 +00:00
|
|
|
sci_set_text(doc_list[idx].sci, filedata.data); // NULL terminated data
|
|
|
|
|
|
|
|
// detect & set line endings
|
|
|
|
editor_mode = utils_get_line_endings(filedata.data, filedata.len);
|
2005-11-22 12:26:26 +00:00
|
|
|
sci_set_eol_mode(doc_list[idx].sci, editor_mode);
|
2007-01-06 12:35:43 +00:00
|
|
|
g_free(filedata.data);
|
2006-10-10 16:02:41 +00:00
|
|
|
|
|
|
|
sci_set_undo_collection(doc_list[idx].sci, TRUE);
|
|
|
|
|
2007-01-06 12:35:43 +00:00
|
|
|
doc_list[idx].mtime = filedata.mtime; // get the modification time from file and keep it
|
2005-11-22 12:26:26 +00:00
|
|
|
doc_list[idx].changed = FALSE;
|
2006-12-13 15:18:49 +00:00
|
|
|
g_free(doc_list[idx].encoding); // if reloading, free old encoding
|
2007-01-06 12:35:43 +00:00
|
|
|
doc_list[idx].encoding = filedata.enc;
|
|
|
|
doc_list[idx].has_bom = filedata.bom;
|
2006-10-24 13:41:34 +00:00
|
|
|
store_saved_encoding(idx); // store the opened encoding for undo/redo
|
2006-06-20 11:55:34 +00:00
|
|
|
|
2007-01-06 12:35:43 +00:00
|
|
|
doc_list[idx].readonly = readonly || filedata.readonly;
|
|
|
|
sci_set_readonly(doc_list[idx].sci, doc_list[idx].readonly);
|
|
|
|
|
|
|
|
// update line number margin width
|
|
|
|
sci_set_line_numbers(doc_list[idx].sci, app->show_linenumber_margin, 0);
|
|
|
|
|
2007-02-01 15:00:59 +00:00
|
|
|
// set the cursor position according to pos, cl_options.goto_line and cl_options.goto_column
|
|
|
|
set_cursor_position(idx, pos);
|
2006-06-20 11:55:34 +00:00
|
|
|
|
2006-06-20 14:54:09 +00:00
|
|
|
if (! reload)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-10-10 13:52:22 +00:00
|
|
|
// "the" SCI signal (connect after initial setup(i.e. adding text))
|
|
|
|
g_signal_connect((GtkWidget*) doc_list[idx].sci, "sci-notify",
|
|
|
|
G_CALLBACK(on_editor_notification), GINT_TO_POINTER(idx));
|
2006-12-14 12:54:36 +00:00
|
|
|
|
2007-04-18 12:12:51 +00:00
|
|
|
use_ft = (ft != NULL) ? ft : filetypes_detect_from_file(idx);
|
2006-06-20 14:54:09 +00:00
|
|
|
}
|
2006-06-29 17:14:52 +00:00
|
|
|
else
|
2006-09-30 16:15:45 +00:00
|
|
|
{ // reloading
|
2006-10-10 16:02:41 +00:00
|
|
|
document_undo_clear(idx);
|
2006-12-14 12:54:36 +00:00
|
|
|
use_ft = ft;
|
2006-06-26 16:19:28 +00:00
|
|
|
}
|
2006-12-14 12:54:36 +00:00
|
|
|
// update taglist, typedef keywords and build menu if necessary
|
|
|
|
document_set_filetype(idx, use_ft);
|
2006-06-29 17:14:52 +00:00
|
|
|
|
2006-12-05 10:37:36 +00:00
|
|
|
document_set_text_changed(idx); // also updates tab state
|
|
|
|
ui_document_show_hide(idx); // update the document menu
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
|
2005-12-21 19:43:48 +00:00
|
|
|
// finally add current file to recent files menu, but not the files from the last session
|
2006-09-05 14:24:47 +00:00
|
|
|
if (! app->opening_session_files) ui_add_recent_file(utf8_filename);
|
2006-01-23 17:05:29 +00:00
|
|
|
|
2006-06-26 15:49:07 +00:00
|
|
|
if (reload)
|
|
|
|
msgwin_status_add(_("File %s reloaded."), utf8_filename);
|
|
|
|
else
|
|
|
|
msgwin_status_add(_("File %s opened(%d%s)."),
|
|
|
|
utf8_filename, gtk_notebook_get_n_pages(GTK_NOTEBOOK(app->notebook)),
|
|
|
|
(readonly) ? _(", read-only") : "");
|
|
|
|
|
2006-01-23 17:05:29 +00:00
|
|
|
g_free(utf8_filename);
|
2006-02-06 06:26:53 +00:00
|
|
|
g_free(locale_filename);
|
2005-11-22 12:26:26 +00:00
|
|
|
//gettimeofday(&tv1, &tz);
|
|
|
|
//geany_debug("%s: %d", filename, (gint)(tv1.tv_usec - tv.tv_usec));
|
2006-06-11 22:39:11 +00:00
|
|
|
|
|
|
|
return idx;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-15 23:12:13 +00:00
|
|
|
/* Takes a new line separated list of filename URIs and opens each file.
|
|
|
|
* length is the length of the string or -1 if it should be detected */
|
2006-11-17 12:19:31 +00:00
|
|
|
void document_open_file_list(const gchar *data, gssize length)
|
2006-11-15 23:12:13 +00:00
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
gchar *filename;
|
|
|
|
gchar **list;
|
|
|
|
|
|
|
|
if (data == NULL) return;
|
|
|
|
|
2006-11-17 12:19:31 +00:00
|
|
|
if (length < 0)
|
2006-11-15 23:12:13 +00:00
|
|
|
length = strlen(data);
|
|
|
|
|
|
|
|
switch (utils_get_line_endings((gchar*) data, length))
|
|
|
|
{
|
|
|
|
case SC_EOL_CR: list = g_strsplit(data, "\r", 0); break;
|
|
|
|
case SC_EOL_CRLF: list = g_strsplit(data, "\r\n", 0); break;
|
|
|
|
case SC_EOL_LF: list = g_strsplit(data, "\n", 0); break;
|
|
|
|
default: list = g_strsplit(data, "\n", 0);
|
|
|
|
}
|
|
|
|
|
2007-03-06 16:57:09 +00:00
|
|
|
document_delay_colourise();
|
|
|
|
|
2006-11-15 23:12:13 +00:00
|
|
|
for (i = 0; ; i++)
|
|
|
|
{
|
|
|
|
if (list[i] == NULL) break;
|
|
|
|
filename = g_filename_from_uri(list[i], NULL, NULL);
|
|
|
|
if (filename == NULL) continue;
|
|
|
|
document_open_file(-1, filename, 0, FALSE, NULL, NULL);
|
|
|
|
g_free(filename);
|
|
|
|
}
|
2007-03-06 16:57:09 +00:00
|
|
|
document_colourise_new();
|
2006-11-15 23:12:13 +00:00
|
|
|
|
|
|
|
g_strfreev(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-06 16:57:09 +00:00
|
|
|
/* Takes a linked list of filename URIs and opens each file, ensuring the newly opened
|
|
|
|
* documents and existing documents (if necessary) are only colourised once. */
|
|
|
|
void document_open_files(const GSList *filenames, gboolean readonly, filetype *ft,
|
|
|
|
const gchar *forced_enc)
|
|
|
|
{
|
|
|
|
const GSList *item;
|
|
|
|
|
|
|
|
document_delay_colourise();
|
|
|
|
|
|
|
|
for (item = filenames; item != NULL; item = g_slist_next(item))
|
|
|
|
{
|
|
|
|
document_open_file(-1, item->data, 0, readonly, ft, forced_enc);
|
|
|
|
}
|
|
|
|
document_colourise_new();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-22 01:29:10 +00:00
|
|
|
gint document_reload_file(gint idx, const gchar *forced_enc)
|
2006-06-20 11:55:34 +00:00
|
|
|
{
|
|
|
|
gint pos = 0;
|
2006-07-22 01:29:10 +00:00
|
|
|
|
2007-07-04 17:08:53 +00:00
|
|
|
if (! DOC_IDX_VALID(idx))
|
2006-06-20 11:55:34 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
// try to set the cursor to the position before reloading
|
|
|
|
pos = sci_get_current_position(doc_list[idx].sci);
|
|
|
|
return document_open_file(idx, NULL, pos, doc_list[idx].readonly,
|
2006-07-22 01:29:10 +00:00
|
|
|
doc_list[idx].file_type, forced_enc);
|
2006-06-20 11:55:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-09 13:07:23 +00:00
|
|
|
static gboolean document_update_timestamp(gint idx)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
gchar *locale_filename;
|
2006-12-10 21:29:04 +00:00
|
|
|
|
2006-12-09 13:07:23 +00:00
|
|
|
g_return_val_if_fail(DOC_IDX_VALID(idx), FALSE);
|
|
|
|
|
2007-04-16 15:58:34 +00:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
// don't try to convert the filename on Windows, it should be already in UTF8
|
|
|
|
locale_filename = g_strdup(doc_list[idx].file_name);
|
|
|
|
#else
|
2006-12-09 13:07:23 +00:00
|
|
|
locale_filename = utils_get_locale_from_utf8(doc_list[idx].file_name);
|
2007-04-16 15:58:34 +00:00
|
|
|
#endif
|
|
|
|
if (g_stat(locale_filename, &st) != 0)
|
2006-12-09 13:07:23 +00:00
|
|
|
{
|
|
|
|
msgwin_status_add(_("Could not open file %s (%s)"), doc_list[idx].file_name,
|
|
|
|
g_strerror(errno));
|
|
|
|
g_free(locale_filename);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
doc_list[idx].mtime = st.st_mtime; // get the modification time from file and keep it
|
|
|
|
g_free(locale_filename);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-02 10:50:53 +00:00
|
|
|
/* This saves the file.
|
2006-09-05 18:33:48 +00:00
|
|
|
* When force is set then it is always saved, even if it is unchanged(useful when using Save As)
|
|
|
|
* It returns whether the file could be saved or not. */
|
|
|
|
gboolean document_save_file(gint idx, gboolean force)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
gchar *data;
|
|
|
|
FILE *fp;
|
|
|
|
gint bytes_written, len;
|
2007-07-06 12:37:07 +00:00
|
|
|
#ifndef G_OS_WIN32
|
2006-02-10 20:56:17 +00:00
|
|
|
gchar *locale_filename = NULL;
|
2007-07-06 12:37:07 +00:00
|
|
|
#endif
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-10-23 20:32:37 +00:00
|
|
|
if (! DOC_IDX_VALID(idx)) return FALSE;
|
|
|
|
// the changed flag should exclude the readonly flag, but check it anyway for safety
|
|
|
|
if (! force && (! doc_list[idx].changed || doc_list[idx].readonly)) return FALSE;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
if (doc_list[idx].file_name == NULL)
|
|
|
|
{
|
|
|
|
msgwin_status_add(_("Error saving file."));
|
2006-02-10 20:56:17 +00:00
|
|
|
utils_beep();
|
2006-09-05 18:33:48 +00:00
|
|
|
return FALSE;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
2006-06-21 18:54:07 +00:00
|
|
|
// replaces tabs by spaces
|
2007-05-29 16:30:54 +00:00
|
|
|
if (editor_prefs.replace_tabs) document_replace_tabs(idx);
|
2005-11-22 12:26:26 +00:00
|
|
|
// strip trailing spaces
|
2007-05-29 16:30:54 +00:00
|
|
|
if (editor_prefs.trail_space) document_strip_trailing_spaces(idx);
|
2005-11-22 12:26:26 +00:00
|
|
|
// ensure the file has a newline at the end
|
2007-05-29 16:30:54 +00:00
|
|
|
if (editor_prefs.new_line) document_ensure_final_newline(idx);
|
2005-11-22 12:26:26 +00:00
|
|
|
// ensure there a really the same EOL chars
|
|
|
|
sci_convert_eols(doc_list[idx].sci, sci_get_eol_mode(doc_list[idx].sci));
|
|
|
|
|
|
|
|
len = sci_get_length(doc_list[idx].sci) + 1;
|
2007-01-07 16:22:41 +00:00
|
|
|
if (doc_list[idx].has_bom && encodings_is_unicode_charset(doc_list[idx].encoding))
|
2007-01-07 18:48:56 +00:00
|
|
|
{ // always write a UTF-8 BOM because in this moment the text itself is still in UTF-8
|
|
|
|
// encoding, it will be converted to doc_list[idx].encoding below and this conversion
|
|
|
|
// also changes the BOM
|
2006-07-23 13:14:23 +00:00
|
|
|
data = (gchar*) g_malloc(len + 3); // 3 chars for BOM
|
2006-07-22 01:29:10 +00:00
|
|
|
data[0] = 0xef;
|
|
|
|
data[1] = 0xbb;
|
|
|
|
data[2] = 0xbf;
|
|
|
|
sci_get_text(doc_list[idx].sci, len, data + 3);
|
|
|
|
len += 3;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-07-23 13:14:23 +00:00
|
|
|
data = (gchar*) g_malloc(len);
|
2006-07-22 01:29:10 +00:00
|
|
|
sci_get_text(doc_list[idx].sci, len, data);
|
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-10-23 20:32:37 +00:00
|
|
|
// save in original encoding, skip when it is already UTF-8 or has the encoding "None"
|
2006-12-07 16:09:45 +00:00
|
|
|
if (doc_list[idx].encoding != NULL && ! utils_str_equal(doc_list[idx].encoding, "UTF-8") &&
|
|
|
|
! utils_str_equal(doc_list[idx].encoding, encodings[GEANY_ENCODING_NONE].charset))
|
2006-06-19 18:31:17 +00:00
|
|
|
{
|
|
|
|
GError *conv_error = NULL;
|
|
|
|
gchar* conv_file_contents = NULL;
|
2006-07-22 01:29:10 +00:00
|
|
|
gsize conv_len;
|
2006-06-28 19:27:19 +00:00
|
|
|
|
2006-06-19 18:31:17 +00:00
|
|
|
// try to convert it from UTF-8 to original encoding
|
2006-07-23 13:14:23 +00:00
|
|
|
conv_file_contents = g_convert(data, len-1, doc_list[idx].encoding, "UTF-8",
|
2006-07-22 01:29:10 +00:00
|
|
|
NULL, &conv_len, &conv_error);
|
2006-06-29 17:14:52 +00:00
|
|
|
|
2006-06-19 18:31:17 +00:00
|
|
|
if (conv_error != NULL)
|
|
|
|
{
|
2006-10-25 14:38:48 +00:00
|
|
|
dialogs_show_msgbox(GTK_MESSAGE_ERROR,
|
2006-07-22 01:29:10 +00:00
|
|
|
_("An error occurred while converting the file from UTF-8 in \"%s\". The file remains unsaved."
|
|
|
|
"\nError message: %s\n"),
|
2006-06-28 19:27:19 +00:00
|
|
|
doc_list[idx].encoding, conv_error->message);
|
|
|
|
geany_debug("encoding error: %s)", conv_error->message);
|
2006-06-21 18:54:07 +00:00
|
|
|
g_error_free(conv_error);
|
2006-06-28 19:27:19 +00:00
|
|
|
g_free(data);
|
2006-09-05 18:33:48 +00:00
|
|
|
return FALSE;
|
2006-06-19 18:31:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_free(data);
|
|
|
|
data = conv_file_contents;
|
2006-07-22 01:29:10 +00:00
|
|
|
len = conv_len;
|
2006-06-19 18:31:17 +00:00
|
|
|
}
|
|
|
|
}
|
2006-07-23 13:14:23 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
len = strlen(data);
|
|
|
|
}
|
2007-07-06 12:37:07 +00:00
|
|
|
#ifdef G_OS_WIN32
|
2007-07-17 12:04:46 +00:00
|
|
|
fp = g_fopen(doc_list[idx].file_name, "wb"); // this should fix the windows \n problem
|
2007-07-06 12:37:07 +00:00
|
|
|
#else
|
2006-08-13 08:36:52 +00:00
|
|
|
locale_filename = utils_get_locale_from_utf8(doc_list[idx].file_name);
|
2007-07-17 12:04:46 +00:00
|
|
|
fp = g_fopen(locale_filename, "w");
|
2006-08-13 08:36:52 +00:00
|
|
|
g_free(locale_filename);
|
2007-07-06 12:37:07 +00:00
|
|
|
#endif
|
2005-11-22 12:26:26 +00:00
|
|
|
if (fp == NULL)
|
|
|
|
{
|
2007-07-06 12:37:07 +00:00
|
|
|
msgwin_status_add(_("Error saving file (%s)."), g_strerror(errno));
|
2006-02-10 20:56:17 +00:00
|
|
|
utils_beep();
|
2005-11-22 12:26:26 +00:00
|
|
|
g_free(data);
|
2006-09-05 18:33:48 +00:00
|
|
|
return FALSE;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
bytes_written = fwrite(data, sizeof (gchar), len, fp);
|
|
|
|
fclose (fp);
|
|
|
|
|
|
|
|
g_free(data);
|
|
|
|
|
|
|
|
if (len != bytes_written)
|
|
|
|
{
|
|
|
|
msgwin_status_add(_("Error saving file."));
|
2006-02-10 20:56:17 +00:00
|
|
|
utils_beep();
|
2006-09-05 18:33:48 +00:00
|
|
|
return FALSE;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
2006-10-24 13:41:34 +00:00
|
|
|
// store the opened encoding for undo/redo
|
|
|
|
store_saved_encoding(idx);
|
|
|
|
|
2006-01-11 18:38:17 +00:00
|
|
|
// ignore the following things if we are quitting
|
2006-01-14 22:40:05 +00:00
|
|
|
if (! app->quitting)
|
2006-02-10 20:56:17 +00:00
|
|
|
{
|
2007-07-17 12:37:48 +00:00
|
|
|
gchar *base_name = g_path_get_basename(doc_list[idx].file_name);
|
2006-01-14 22:40:05 +00:00
|
|
|
|
2006-02-10 20:56:17 +00:00
|
|
|
// set line numbers again, to reset the margin width, if
|
|
|
|
// there are more lines than before
|
2006-02-14 22:07:55 +00:00
|
|
|
sci_set_line_numbers(doc_list[idx].sci, app->show_linenumber_margin, 0);
|
2006-01-11 18:38:17 +00:00
|
|
|
sci_set_savepoint(doc_list[idx].sci);
|
2006-12-09 13:07:23 +00:00
|
|
|
|
|
|
|
/* stat the file to get the timestamp, otherwise on Windows the actual
|
|
|
|
* timestamp can be ahead of time(NULL) */
|
|
|
|
document_update_timestamp(idx);
|
|
|
|
|
2006-01-11 18:38:17 +00:00
|
|
|
if (doc_list[idx].file_type == NULL || doc_list[idx].file_type->id == GEANY_FILETYPES_ALL)
|
2006-08-26 17:12:55 +00:00
|
|
|
{
|
2007-04-18 12:12:51 +00:00
|
|
|
doc_list[idx].file_type = filetypes_detect_from_file(idx);
|
2006-08-26 17:12:55 +00:00
|
|
|
filetypes_select_radio_item(doc_list[idx].file_type);
|
|
|
|
}
|
2006-01-11 18:38:17 +00:00
|
|
|
document_set_filetype(idx, doc_list[idx].file_type);
|
|
|
|
tm_workspace_update(TM_WORK_OBJECT(app->tm_workspace), TRUE, TRUE, FALSE);
|
2007-07-17 12:37:48 +00:00
|
|
|
gtk_label_set_text(GTK_LABEL(doc_list[idx].tab_label), base_name);
|
|
|
|
gtk_label_set_text(GTK_LABEL(doc_list[idx].tabmenu_label), base_name);
|
2006-01-11 18:38:17 +00:00
|
|
|
msgwin_status_add(_("File %s saved."), doc_list[idx].file_name);
|
2006-09-05 14:24:47 +00:00
|
|
|
ui_update_statusbar(idx, -1);
|
2007-07-17 12:37:48 +00:00
|
|
|
g_free(base_name);
|
2006-08-30 18:53:45 +00:00
|
|
|
#ifdef HAVE_VTE
|
2006-12-10 21:29:04 +00:00
|
|
|
vte_cwd(doc_list[idx].file_name, FALSE);
|
2006-08-30 18:53:45 +00:00
|
|
|
#endif
|
|
|
|
|
2006-01-11 18:38:17 +00:00
|
|
|
}
|
2006-09-05 18:33:48 +00:00
|
|
|
return TRUE;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-09 17:33:31 +00:00
|
|
|
/* special search function, used from the find entry in the toolbar
|
|
|
|
* return TRUE if text was found otherwise FALSE
|
|
|
|
* return also TRUE if text is empty */
|
|
|
|
gboolean document_search_bar_find(gint idx, const gchar *text, gint flags, gboolean inc)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-10-21 10:50:45 +00:00
|
|
|
gint start_pos, search_pos;
|
|
|
|
struct TextToFind ttf;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2007-07-09 17:33:31 +00:00
|
|
|
g_return_val_if_fail(text != NULL, FALSE);
|
|
|
|
if (! DOC_IDX_VALID(idx))
|
|
|
|
return FALSE;
|
|
|
|
if (! *text)
|
|
|
|
return TRUE;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-10-21 10:50:45 +00:00
|
|
|
start_pos = (inc) ? sci_get_selection_start(doc_list[idx].sci) :
|
|
|
|
sci_get_selection_end(doc_list[idx].sci); // equal if no selection
|
|
|
|
|
|
|
|
// search cursor to end
|
|
|
|
ttf.chrg.cpMin = start_pos;
|
|
|
|
ttf.chrg.cpMax = sci_get_length(doc_list[idx].sci);
|
|
|
|
ttf.lpstrText = (gchar *)text;
|
|
|
|
search_pos = sci_find_text(doc_list[idx].sci, flags, &ttf);
|
|
|
|
|
|
|
|
// if no match, search start to cursor
|
|
|
|
if (search_pos == -1)
|
|
|
|
{
|
|
|
|
ttf.chrg.cpMin = 0;
|
|
|
|
ttf.chrg.cpMax = start_pos + strlen(text);
|
|
|
|
search_pos = sci_find_text(doc_list[idx].sci, flags, &ttf);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (search_pos != -1)
|
|
|
|
{
|
2006-10-21 10:50:45 +00:00
|
|
|
sci_set_selection_start(doc_list[idx].sci, ttf.chrgText.cpMin);
|
|
|
|
sci_set_selection_end(doc_list[idx].sci, ttf.chrgText.cpMax);
|
2007-01-31 15:53:11 +00:00
|
|
|
doc_list[idx].scroll_percent = 0.3F;
|
2007-07-09 17:33:31 +00:00
|
|
|
return TRUE;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-11-03 15:09:13 +00:00
|
|
|
if (! inc)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-11-25 16:33:38 +00:00
|
|
|
ui_set_statusbar(_("\"%s\" was not found."), text);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
2006-10-21 10:50:45 +00:00
|
|
|
utils_beep();
|
|
|
|
sci_goto_pos(doc_list[idx].sci, start_pos, FALSE); // clear selection
|
2007-07-09 17:33:31 +00:00
|
|
|
return FALSE;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-20 21:19:18 +00:00
|
|
|
/* General search function, used from the find dialog.
|
|
|
|
* Returns -1 on failure or the start position of the matching text.
|
|
|
|
* Will skip past any selection, ignoring it. */
|
2006-11-03 15:09:13 +00:00
|
|
|
gint document_find_text(gint idx, const gchar *text, gint flags, gboolean search_backwards,
|
2007-07-04 17:08:53 +00:00
|
|
|
gboolean scroll, GtkWidget *parent)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-11-18 15:47:28 +00:00
|
|
|
gint selection_end, selection_start, search_pos, first_visible_line;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-07-20 21:19:18 +00:00
|
|
|
g_return_val_if_fail(text != NULL, -1);
|
|
|
|
if (idx == -1 || ! *text) return -1;
|
2006-07-18 17:43:22 +00:00
|
|
|
// Sci doesn't support searching backwards with a regex
|
|
|
|
if (flags & SCFIND_REGEXP) search_backwards = FALSE;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-11-18 15:47:28 +00:00
|
|
|
first_visible_line = sci_get_first_visible_line(doc_list[idx].sci);
|
2006-11-21 18:39:23 +00:00
|
|
|
|
2006-07-20 21:19:18 +00:00
|
|
|
selection_start = sci_get_selection_start(doc_list[idx].sci);
|
|
|
|
selection_end = sci_get_selection_end(doc_list[idx].sci);
|
2005-11-22 12:26:26 +00:00
|
|
|
if ((selection_end - selection_start) > 0)
|
|
|
|
{ // there's a selection so go to the end
|
|
|
|
if (search_backwards)
|
2006-05-26 17:11:41 +00:00
|
|
|
sci_goto_pos(doc_list[idx].sci, selection_start, TRUE);
|
2005-11-22 12:26:26 +00:00
|
|
|
else
|
2006-05-26 17:11:41 +00:00
|
|
|
sci_goto_pos(doc_list[idx].sci, selection_end, TRUE);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sci_set_search_anchor(doc_list[idx].sci);
|
|
|
|
if (search_backwards)
|
|
|
|
search_pos = sci_search_prev(doc_list[idx].sci, flags, text);
|
|
|
|
else
|
|
|
|
search_pos = sci_search_next(doc_list[idx].sci, flags, text);
|
|
|
|
|
|
|
|
if (search_pos != -1)
|
|
|
|
{
|
2006-11-03 15:09:13 +00:00
|
|
|
if (scroll)
|
2007-01-31 15:53:11 +00:00
|
|
|
doc_list[idx].scroll_percent = 0.3F;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-10-21 10:50:45 +00:00
|
|
|
gint sci_len = sci_get_length(doc_list[idx].sci);
|
|
|
|
|
|
|
|
// if we just searched the whole text, give up searching.
|
|
|
|
if ((selection_end == 0 && ! search_backwards) ||
|
|
|
|
(selection_end == sci_len && search_backwards))
|
|
|
|
{
|
2006-11-25 16:33:38 +00:00
|
|
|
ui_set_statusbar(_("\"%s\" was not found."), text);
|
2006-10-21 10:50:45 +00:00
|
|
|
utils_beep();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we searched only part of the document, so ask whether to wraparound.
|
2006-11-18 15:47:28 +00:00
|
|
|
if (app->pref_main_suppress_search_dialogs ||
|
2007-07-04 17:08:53 +00:00
|
|
|
dialogs_show_question_full(parent, GTK_STOCK_FIND, GTK_STOCK_CANCEL,
|
2006-11-18 15:47:28 +00:00
|
|
|
_("Wrap search and find again?"), _("\"%s\" was not found."), text))
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-10-21 10:50:45 +00:00
|
|
|
gint ret;
|
2006-11-18 15:47:28 +00:00
|
|
|
|
2007-02-03 13:14:34 +00:00
|
|
|
sci_set_current_position(doc_list[idx].sci, (search_backwards) ? sci_len : 0, FALSE);
|
2007-07-04 17:08:53 +00:00
|
|
|
ret = document_find_text(idx, text, flags, search_backwards, scroll, parent);
|
2006-11-18 15:47:28 +00:00
|
|
|
if (ret == -1)
|
|
|
|
{ // return to original cursor position if not found
|
2007-02-03 13:14:34 +00:00
|
|
|
sci_set_current_position(doc_list[idx].sci, selection_start, FALSE);
|
2006-11-18 15:47:28 +00:00
|
|
|
}
|
2006-10-21 10:50:45 +00:00
|
|
|
return ret;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
}
|
2006-07-20 21:19:18 +00:00
|
|
|
return search_pos;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-22 14:56:05 +00:00
|
|
|
/* Replaces the selection if it matches, otherwise just finds the next match.
|
|
|
|
* Returns: start of replaced text, or -1 if no replacement was made */
|
|
|
|
gint document_replace_text(gint idx, const gchar *find_text, const gchar *replace_text,
|
|
|
|
gint flags, gboolean search_backwards)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
gint selection_end, selection_start, search_pos;
|
|
|
|
|
2006-10-22 14:56:05 +00:00
|
|
|
g_return_val_if_fail(find_text != NULL && replace_text != NULL, -1);
|
|
|
|
if (idx == -1 || ! *find_text) return -1;
|
|
|
|
|
2006-07-18 17:43:22 +00:00
|
|
|
// Sci doesn't support searching backwards with a regex
|
|
|
|
if (flags & SCFIND_REGEXP) search_backwards = FALSE;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-10-22 14:56:05 +00:00
|
|
|
selection_start = sci_get_selection_start(doc_list[idx].sci);
|
|
|
|
selection_end = sci_get_selection_end(doc_list[idx].sci);
|
2006-07-20 21:19:18 +00:00
|
|
|
if (selection_end == selection_start)
|
|
|
|
{
|
|
|
|
// no selection so just find the next match
|
2007-07-04 17:08:53 +00:00
|
|
|
document_find_text(idx, find_text, flags, search_backwards, TRUE, NULL);
|
2006-10-22 14:56:05 +00:00
|
|
|
return -1;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
2006-07-20 21:19:18 +00:00
|
|
|
// there's a selection so go to the start before finding to search through it
|
|
|
|
// this ensures there is a match
|
2005-11-22 12:26:26 +00:00
|
|
|
if (search_backwards)
|
2006-07-20 21:19:18 +00:00
|
|
|
sci_goto_pos(doc_list[idx].sci, selection_end, TRUE);
|
2005-11-22 12:26:26 +00:00
|
|
|
else
|
2006-07-20 21:19:18 +00:00
|
|
|
sci_goto_pos(doc_list[idx].sci, selection_start, TRUE);
|
|
|
|
|
2007-07-04 17:08:53 +00:00
|
|
|
search_pos = document_find_text(idx, find_text, flags, search_backwards, TRUE, NULL);
|
2006-07-20 21:19:18 +00:00
|
|
|
// return if the original selected text did not match (at the start of the selection)
|
2006-10-22 14:56:05 +00:00
|
|
|
if (search_pos != selection_start) return -1;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
if (search_pos != -1)
|
|
|
|
{
|
2006-07-18 14:09:01 +00:00
|
|
|
gint replace_len;
|
|
|
|
// search next/prev will select matching text, which we use to set the replace target
|
|
|
|
sci_target_from_selection(doc_list[idx].sci);
|
|
|
|
replace_len = sci_target_replace(doc_list[idx].sci, replace_text, flags & SCFIND_REGEXP);
|
2006-07-20 21:19:18 +00:00
|
|
|
// select the replacement - find text will skip past the selected text
|
2005-11-22 12:26:26 +00:00
|
|
|
sci_set_selection_start(doc_list[idx].sci, search_pos);
|
2006-07-18 14:09:01 +00:00
|
|
|
sci_set_selection_end(doc_list[idx].sci, search_pos + replace_len);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-07-20 21:19:18 +00:00
|
|
|
// no match in the selection
|
2006-02-10 20:56:17 +00:00
|
|
|
utils_beep();
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
2006-10-22 14:56:05 +00:00
|
|
|
return search_pos;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-17 17:13:46 +00:00
|
|
|
static void show_replace_summary(gint idx, gint count, const gchar *find_text,
|
|
|
|
const gchar *replace_text, gboolean escaped_chars)
|
|
|
|
{
|
|
|
|
gchar *escaped_find_text, *escaped_replace_text, *filename;
|
|
|
|
|
|
|
|
if (count == 0)
|
|
|
|
{
|
2007-06-28 16:00:29 +00:00
|
|
|
ui_set_statusbar(_("No matches found for \"%s\"."), find_text);
|
2006-12-17 17:13:46 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
filename = g_path_get_basename(DOC_FILENAME(idx));
|
|
|
|
|
|
|
|
if (escaped_chars)
|
|
|
|
{ // escape special characters for showing
|
|
|
|
escaped_find_text = g_strescape(find_text, NULL);
|
|
|
|
escaped_replace_text = g_strescape(replace_text, NULL);
|
2007-03-13 15:40:59 +00:00
|
|
|
msgwin_status_add(_("%s: replaced %d occurrence(s) of \"%s\" with \"%s\"."),
|
2006-12-17 17:13:46 +00:00
|
|
|
filename, count, escaped_find_text, escaped_replace_text);
|
|
|
|
g_free(escaped_find_text);
|
|
|
|
g_free(escaped_replace_text);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-03-13 15:40:59 +00:00
|
|
|
msgwin_status_add(_("%s: replaced %d occurrence(s) of \"%s\" with \"%s\"."),
|
2006-12-17 17:13:46 +00:00
|
|
|
filename, count, find_text, replace_text);
|
|
|
|
}
|
|
|
|
g_free(filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-13 15:40:59 +00:00
|
|
|
/* Replace all text matches in a certain range within document idx.
|
|
|
|
* If not NULL, *new_range_end is set to the new range endpoint after replacing,
|
|
|
|
* or -1 if no text was found.
|
|
|
|
* scroll_to_match is whether to scroll the last replacement in view (which also
|
|
|
|
* clears the selection).
|
|
|
|
* Returns: the number of replacements made. */
|
|
|
|
static guint
|
2006-07-18 17:43:22 +00:00
|
|
|
document_replace_range(gint idx, const gchar *find_text, const gchar *replace_text,
|
2007-03-13 15:40:59 +00:00
|
|
|
gint flags, gint start, gint end, gboolean scroll_to_match, gint *new_range_end)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-08-23 18:08:48 +00:00
|
|
|
gint count = 0;
|
2006-07-18 14:09:01 +00:00
|
|
|
struct TextToFind ttf;
|
2007-07-24 15:34:35 +00:00
|
|
|
ScintillaObject *sci;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2007-03-13 15:40:59 +00:00
|
|
|
if (new_range_end != NULL)
|
|
|
|
*new_range_end = -1;
|
|
|
|
g_return_val_if_fail(find_text != NULL && replace_text != NULL, 0);
|
2007-04-30 12:24:40 +00:00
|
|
|
if (idx == -1 || ! *find_text || doc_list[idx].readonly) return 0;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2007-07-24 15:34:35 +00:00
|
|
|
sci = doc_list[idx].sci;
|
|
|
|
|
|
|
|
sci_start_undo_action(sci);
|
2006-07-18 14:09:01 +00:00
|
|
|
ttf.chrg.cpMin = start;
|
|
|
|
ttf.chrg.cpMax = end;
|
|
|
|
ttf.lpstrText = (gchar*)find_text;
|
2007-03-06 16:57:09 +00:00
|
|
|
|
2006-05-25 15:32:03 +00:00
|
|
|
while (TRUE)
|
|
|
|
{
|
2007-07-24 15:34:35 +00:00
|
|
|
gint search_pos;
|
|
|
|
gint find_len = 0, replace_len = 0;
|
|
|
|
|
|
|
|
search_pos = sci_find_text(sci, flags, &ttf);
|
2006-07-18 14:09:01 +00:00
|
|
|
find_len = ttf.chrgText.cpMax - ttf.chrgText.cpMin;
|
2007-06-28 16:00:29 +00:00
|
|
|
if (search_pos == -1)
|
|
|
|
break; // no more matches
|
|
|
|
if (find_len == 0 && ! NZV(replace_text))
|
|
|
|
break; // nothing to do
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-07-18 14:09:01 +00:00
|
|
|
if (search_pos + find_len > end)
|
2007-06-28 16:00:29 +00:00
|
|
|
break; // found text is partly out of range
|
2006-03-10 00:52:09 +00:00
|
|
|
else
|
|
|
|
{
|
2007-07-24 15:34:35 +00:00
|
|
|
gint movepastEOL = 0;
|
|
|
|
|
|
|
|
sci_target_start(sci, search_pos);
|
|
|
|
sci_target_end(sci, search_pos + find_len);
|
|
|
|
|
|
|
|
if (find_len <= 0)
|
|
|
|
{
|
|
|
|
gchar chNext = sci_get_char_at(sci, SSM(sci, SCI_GETTARGETEND, 0, 0));
|
|
|
|
if (chNext == '\r' || chNext == '\n') {
|
|
|
|
movepastEOL = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
replace_len = sci_target_replace(sci, replace_text,
|
2006-07-18 14:09:01 +00:00
|
|
|
flags & SCFIND_REGEXP);
|
2006-08-23 18:08:48 +00:00
|
|
|
count++;
|
2007-06-28 16:00:29 +00:00
|
|
|
if (search_pos == end)
|
|
|
|
break; // Prevent hang when replacing regex $
|
|
|
|
|
|
|
|
// make the next search start after the replaced text
|
2007-07-24 15:34:35 +00:00
|
|
|
start = search_pos + replace_len + movepastEOL;
|
|
|
|
if (find_len == 0)
|
|
|
|
start = SSM(sci, SCI_POSITIONAFTER, start, 0); // prevent '[ ]*' regex rematching part of replaced text
|
2007-06-28 16:00:29 +00:00
|
|
|
ttf.chrg.cpMin = start;
|
|
|
|
end += replace_len - find_len; // update end of range now text has changed
|
|
|
|
ttf.chrg.cpMax = end;
|
2006-03-10 00:52:09 +00:00
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
2007-07-24 15:34:35 +00:00
|
|
|
sci_end_undo_action(sci);
|
2006-09-02 23:28:34 +00:00
|
|
|
|
2007-03-13 15:40:59 +00:00
|
|
|
if (count > 0)
|
2007-03-01 17:36:51 +00:00
|
|
|
{ // scroll last match in view, will destroy the existing selection
|
|
|
|
if (scroll_to_match)
|
2007-07-24 15:34:35 +00:00
|
|
|
sci_goto_pos(sci, ttf.chrg.cpMin, TRUE);
|
2007-03-06 16:57:09 +00:00
|
|
|
|
2007-03-13 15:40:59 +00:00
|
|
|
if (new_range_end != NULL)
|
|
|
|
*new_range_end = end;
|
2006-07-18 17:43:22 +00:00
|
|
|
}
|
2007-03-13 15:40:59 +00:00
|
|
|
return count;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-02 23:28:34 +00:00
|
|
|
void document_replace_sel(gint idx, const gchar *find_text, const gchar *replace_text, gint flags,
|
|
|
|
gboolean escaped_chars)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2007-04-15 19:25:22 +00:00
|
|
|
gint selection_end, selection_start, selection_mode, selected_lines, last_line = 0;
|
2007-03-13 15:40:59 +00:00
|
|
|
gint max_column = 0, count = 0;
|
2007-03-01 17:36:51 +00:00
|
|
|
gboolean replaced = FALSE;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-07-18 14:09:01 +00:00
|
|
|
g_return_if_fail(find_text != NULL && replace_text != NULL);
|
|
|
|
if (idx == -1 || ! *find_text) return;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-07-18 14:09:01 +00:00
|
|
|
selection_start = sci_get_selection_start(doc_list[idx].sci);
|
|
|
|
selection_end = sci_get_selection_end(doc_list[idx].sci);
|
2007-03-01 17:36:51 +00:00
|
|
|
// do we have a selection?
|
2006-07-18 14:09:01 +00:00
|
|
|
if ((selection_end - selection_start) == 0)
|
|
|
|
{
|
|
|
|
utils_beep();
|
|
|
|
return;
|
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2007-03-01 17:36:51 +00:00
|
|
|
selection_mode = sci_get_selection_mode(doc_list[idx].sci);
|
|
|
|
selected_lines = sci_get_lines_selected(doc_list[idx].sci);
|
|
|
|
// handle rectangle, multi line selections (it doesn't matter on a single line)
|
|
|
|
if (selection_mode == SC_SEL_RECTANGLE && selected_lines > 1)
|
2006-12-17 17:13:46 +00:00
|
|
|
{
|
2007-03-13 15:40:59 +00:00
|
|
|
gint first_line, line;
|
2007-03-06 16:57:09 +00:00
|
|
|
|
2007-03-01 17:36:51 +00:00
|
|
|
sci_start_undo_action(doc_list[idx].sci);
|
2007-03-06 16:57:09 +00:00
|
|
|
|
2007-03-01 17:36:51 +00:00
|
|
|
first_line = sci_get_line_from_position(doc_list[idx].sci, selection_start);
|
|
|
|
// Find the last line with chars selected (not EOL char)
|
2007-07-16 15:42:12 +00:00
|
|
|
last_line = sci_get_line_from_position(doc_list[idx].sci,
|
|
|
|
selection_end - utils_get_eol_char_len(idx));
|
2007-03-01 17:36:51 +00:00
|
|
|
last_line = MAX(first_line, last_line);
|
|
|
|
for (line = first_line; line < (first_line + selected_lines); line++)
|
|
|
|
{
|
2007-03-13 15:40:59 +00:00
|
|
|
gint line_start = sci_get_pos_at_line_sel_start(doc_list[idx].sci, line);
|
|
|
|
gint line_end = sci_get_pos_at_line_sel_end(doc_list[idx].sci, line);
|
2007-03-06 16:57:09 +00:00
|
|
|
|
2007-03-01 17:36:51 +00:00
|
|
|
// skip line if there is no selection
|
|
|
|
if (line_start != INVALID_POSITION)
|
|
|
|
{
|
|
|
|
// don't let document_replace_range() scroll to match to keep our selection
|
2007-03-13 15:40:59 +00:00
|
|
|
gint new_sel_end;
|
|
|
|
|
|
|
|
count += document_replace_range(idx, find_text, replace_text, flags,
|
|
|
|
line_start, line_end, FALSE, &new_sel_end);
|
|
|
|
if (new_sel_end != -1)
|
2007-03-01 17:36:51 +00:00
|
|
|
{
|
2007-03-06 16:57:09 +00:00
|
|
|
replaced = TRUE;
|
2007-03-01 17:36:51 +00:00
|
|
|
// this gets the greatest column within the selection after replacing
|
|
|
|
max_column = MAX(max_column,
|
2007-03-13 15:40:59 +00:00
|
|
|
new_sel_end - sci_get_position_from_line(doc_list[idx].sci, line));
|
2007-03-01 17:36:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sci_end_undo_action(doc_list[idx].sci);
|
2006-12-17 17:13:46 +00:00
|
|
|
}
|
2007-03-13 15:40:59 +00:00
|
|
|
else // handle normal line selection
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2007-03-13 15:40:59 +00:00
|
|
|
count += document_replace_range(idx, find_text, replace_text, flags,
|
|
|
|
selection_start, selection_end, TRUE, &selection_end);
|
2007-03-01 17:36:51 +00:00
|
|
|
if (selection_end != -1)
|
|
|
|
replaced = TRUE;
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
2007-03-06 16:57:09 +00:00
|
|
|
|
2007-03-01 17:36:51 +00:00
|
|
|
if (replaced)
|
|
|
|
{ // update the selection for the new endpoint
|
2007-03-06 16:57:09 +00:00
|
|
|
|
2007-03-01 17:36:51 +00:00
|
|
|
if (selection_mode == SC_SEL_RECTANGLE && selected_lines > 1)
|
|
|
|
{
|
|
|
|
// now we can scroll to the selection and destroy it because we rebuild it later
|
|
|
|
//sci_goto_pos(doc_list[idx].sci, selection_start, FALSE);
|
2007-03-06 16:57:09 +00:00
|
|
|
|
2007-03-01 17:36:51 +00:00
|
|
|
// Note: the selection will be wrapped to last_line + 1 if max_column is greater than
|
|
|
|
// the highest column on the last line. The wrapped selection is completely different
|
|
|
|
// from the original one, so skip the selection at all
|
|
|
|
/// TODO is there a better way to handle the wrapped selection?
|
|
|
|
if ((sci_get_line_length(doc_list[idx].sci, last_line) - 1) >= max_column)
|
|
|
|
{
|
|
|
|
// for keeping and adjusting the selection in multi line rectangle selection we
|
|
|
|
// need the last line of the original selection and the greatest column number after
|
|
|
|
// replacing and set the selection end to the last line at the greatest column
|
|
|
|
sci_set_selection_start(doc_list[idx].sci, selection_start);
|
|
|
|
sci_set_selection_end(doc_list[idx].sci,
|
|
|
|
sci_get_position_from_line(doc_list[idx].sci, last_line) + max_column);
|
|
|
|
sci_set_selection_mode(doc_list[idx].sci, selection_mode);
|
|
|
|
}
|
|
|
|
}
|
2007-03-06 16:57:09 +00:00
|
|
|
else
|
2007-03-01 17:36:51 +00:00
|
|
|
{
|
|
|
|
sci_set_selection_start(doc_list[idx].sci, selection_start);
|
|
|
|
sci_set_selection_end(doc_list[idx].sci, selection_end);
|
|
|
|
}
|
2007-03-06 16:57:09 +00:00
|
|
|
}
|
2007-03-01 17:36:51 +00:00
|
|
|
else // no replacements
|
|
|
|
utils_beep();
|
2007-03-13 15:40:59 +00:00
|
|
|
|
|
|
|
show_replace_summary(idx, count, find_text, replace_text, escaped_chars);
|
2006-07-18 14:09:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-25 12:32:22 +00:00
|
|
|
// returns TRUE if at least one replacement was made.
|
|
|
|
gboolean document_replace_all(gint idx, const gchar *find_text, const gchar *replace_text,
|
|
|
|
gint flags, gboolean escaped_chars)
|
2006-07-18 14:09:01 +00:00
|
|
|
{
|
2007-03-13 15:40:59 +00:00
|
|
|
gint len, count;
|
2006-11-25 12:32:22 +00:00
|
|
|
g_return_val_if_fail(find_text != NULL && replace_text != NULL, FALSE);
|
|
|
|
if (idx == -1 || ! *find_text) return FALSE;
|
2006-07-18 14:09:01 +00:00
|
|
|
|
|
|
|
len = sci_get_length(doc_list[idx].sci);
|
2007-03-13 15:40:59 +00:00
|
|
|
count = document_replace_range(
|
|
|
|
idx, find_text, replace_text, flags, 0, len, TRUE, NULL);
|
|
|
|
|
|
|
|
if (count == 0)
|
2006-11-25 12:32:22 +00:00
|
|
|
{
|
2006-07-18 14:09:01 +00:00
|
|
|
utils_beep();
|
2006-11-25 12:32:22 +00:00
|
|
|
}
|
2007-03-13 15:40:59 +00:00
|
|
|
show_replace_summary(idx, count, find_text, replace_text, escaped_chars);
|
|
|
|
return (count > 0);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-13 19:37:21 +00:00
|
|
|
void document_set_font(gint idx, const gchar *font_name, gint size)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
gint style;
|
|
|
|
|
|
|
|
for (style = 0; style <= 127; style++)
|
2006-06-13 19:37:21 +00:00
|
|
|
sci_set_font(doc_list[idx].sci, style, font_name, size);
|
2005-11-22 12:26:26 +00:00
|
|
|
// line number and braces
|
2006-06-13 19:37:21 +00:00
|
|
|
sci_set_font(doc_list[idx].sci, STYLE_LINENUMBER, font_name, size);
|
|
|
|
sci_set_font(doc_list[idx].sci, STYLE_BRACELIGHT, font_name, size);
|
|
|
|
sci_set_font(doc_list[idx].sci, STYLE_BRACEBAD, font_name, size);
|
2005-11-22 12:26:26 +00:00
|
|
|
// zoom to 100% to prevent confusion
|
2006-06-13 19:37:21 +00:00
|
|
|
sci_zoom_off(doc_list[idx].sci);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-10 23:06:47 +00:00
|
|
|
void document_update_tag_list(gint idx, gboolean update)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-09-30 16:15:45 +00:00
|
|
|
// if the filetype doesn't have a tag parser or it is a new file
|
2006-06-26 16:19:28 +00:00
|
|
|
if (idx == -1 || doc_list[idx].file_type == NULL ||
|
2007-05-26 12:13:53 +00:00
|
|
|
! filetype_has_tags(doc_list[idx].file_type) || ! doc_list[idx].file_name)
|
2006-09-30 16:15:45 +00:00
|
|
|
{
|
|
|
|
// set the default (empty) tag list
|
2007-02-05 16:17:44 +00:00
|
|
|
treeviews_update_tag_list(idx, FALSE);
|
2006-09-30 16:15:45 +00:00
|
|
|
return;
|
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
if (doc_list[idx].tm_file == NULL)
|
|
|
|
{
|
2007-07-17 12:04:46 +00:00
|
|
|
#ifdef GEANY_OS_WIN32
|
|
|
|
doc_list[idx].tm_file = tm_source_file_new(
|
|
|
|
doc_list[idx].file_name, FALSE, doc_list[idx].file_type->name);
|
|
|
|
#else
|
2006-08-13 08:36:52 +00:00
|
|
|
gchar *locale_filename = utils_get_locale_from_utf8(doc_list[idx].file_name);
|
2007-07-17 12:04:46 +00:00
|
|
|
doc_list[idx].tm_file = tm_source_file_new(
|
|
|
|
locale_filename, FALSE, doc_list[idx].file_type->name);
|
2006-01-23 17:05:29 +00:00
|
|
|
g_free(locale_filename);
|
2007-07-17 12:04:46 +00:00
|
|
|
#endif
|
2006-01-23 17:05:29 +00:00
|
|
|
if (! doc_list[idx].tm_file) return;
|
2005-11-22 12:26:26 +00:00
|
|
|
tm_workspace_add_object(doc_list[idx].tm_file);
|
2006-05-10 23:06:47 +00:00
|
|
|
if (update)
|
|
|
|
tm_source_file_update(doc_list[idx].tm_file, TRUE, FALSE, TRUE);
|
2007-02-05 16:17:44 +00:00
|
|
|
treeviews_update_tag_list(idx, TRUE);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (tm_source_file_update(doc_list[idx].tm_file, TRUE, FALSE, TRUE))
|
|
|
|
{
|
2007-02-05 16:17:44 +00:00
|
|
|
treeviews_update_tag_list(idx, TRUE);
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-06-26 17:44:18 +00:00
|
|
|
geany_debug("tag list updating failed");
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-08 13:32:03 +00:00
|
|
|
/* Caches the list of project typenames, as a space separated GString.
|
|
|
|
* Returns: TRUE if typenames have changed.
|
|
|
|
* (*types) is set to the list of typenames, or NULL if there are none. */
|
|
|
|
static gboolean get_project_typenames(const GString **types)
|
2006-11-08 11:42:05 +00:00
|
|
|
{
|
2007-03-08 13:32:03 +00:00
|
|
|
static GString *last_typenames = NULL;
|
2006-11-08 11:42:05 +00:00
|
|
|
GString *s = NULL;
|
|
|
|
|
|
|
|
if (app->tm_workspace)
|
|
|
|
{
|
|
|
|
GPtrArray *tags_array = app->tm_workspace->work_object.tags_array;
|
|
|
|
|
|
|
|
if (tags_array)
|
|
|
|
{
|
2006-12-16 17:18:53 +00:00
|
|
|
s = symbols_find_tags_as_string(tags_array, TM_GLOBAL_TYPE_MASK);
|
2006-11-08 11:42:05 +00:00
|
|
|
}
|
|
|
|
}
|
2007-03-08 13:32:03 +00:00
|
|
|
|
|
|
|
if (s && last_typenames && g_string_equal(s, last_typenames))
|
|
|
|
{
|
|
|
|
g_string_free(s, TRUE);
|
|
|
|
*types = last_typenames;
|
|
|
|
return FALSE; // project typenames haven't changed
|
|
|
|
}
|
|
|
|
// cache typename list for next time
|
|
|
|
if (last_typenames)
|
|
|
|
g_string_free(last_typenames, TRUE);
|
|
|
|
last_typenames = s;
|
|
|
|
|
|
|
|
*types = s;
|
|
|
|
if (s == NULL) return FALSE;
|
|
|
|
return TRUE;
|
2006-11-08 11:42:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-08 13:32:03 +00:00
|
|
|
/* If sci is NULL, update project typenames for all documents that support typenames,
|
|
|
|
* if typenames have changed.
|
|
|
|
* If sci is not NULL, then if sci supports typenames, project typenames are updated
|
|
|
|
* if necessary, and typename keywords are set for sci.
|
|
|
|
* Returns: TRUE if any scintilla type keywords were updated. */
|
2006-12-15 12:52:52 +00:00
|
|
|
static gboolean update_type_keywords(ScintillaObject *sci)
|
|
|
|
{
|
|
|
|
gboolean ret = FALSE;
|
2007-03-08 13:32:03 +00:00
|
|
|
guint n;
|
|
|
|
const GString *s;
|
2006-12-15 12:52:52 +00:00
|
|
|
|
2007-05-28 16:07:30 +00:00
|
|
|
if (sci != NULL && editor_lexer_get_type_keyword_idx(sci_get_lexer(sci)) == -1)
|
2007-03-08 13:32:03 +00:00
|
|
|
return FALSE;
|
2006-12-15 12:52:52 +00:00
|
|
|
|
2007-03-08 13:32:03 +00:00
|
|
|
if (! get_project_typenames(&s))
|
|
|
|
{ // typenames have not changed
|
|
|
|
if (s != NULL && sci != NULL)
|
2007-02-23 13:26:06 +00:00
|
|
|
{
|
2007-05-28 16:07:30 +00:00
|
|
|
gint keyword_idx = editor_lexer_get_type_keyword_idx(sci_get_lexer(sci));
|
2007-03-08 13:32:03 +00:00
|
|
|
|
|
|
|
sci_set_keywords(sci, keyword_idx, s->str);
|
|
|
|
if (! delay_colourise)
|
|
|
|
{
|
|
|
|
sci_colourise(sci, 0, -1);
|
|
|
|
}
|
2007-02-23 13:26:06 +00:00
|
|
|
}
|
2007-03-08 13:32:03 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
g_return_val_if_fail(s != NULL, FALSE);
|
2006-12-16 17:18:53 +00:00
|
|
|
|
2007-03-08 13:32:03 +00:00
|
|
|
for (n = 0; n < doc_array->len; n++)
|
|
|
|
{
|
|
|
|
ScintillaObject *wid = doc_list[n].sci;
|
|
|
|
|
|
|
|
if (wid)
|
2006-12-15 12:52:52 +00:00
|
|
|
{
|
2007-05-28 16:07:30 +00:00
|
|
|
gint keyword_idx = editor_lexer_get_type_keyword_idx(sci_get_lexer(wid));
|
2006-12-15 12:52:52 +00:00
|
|
|
|
2007-03-08 13:32:03 +00:00
|
|
|
if (keyword_idx > 0)
|
2006-12-15 12:52:52 +00:00
|
|
|
{
|
2007-03-08 13:32:03 +00:00
|
|
|
sci_set_keywords(wid, keyword_idx, s->str);
|
|
|
|
if (! delay_colourise)
|
2006-12-15 12:52:52 +00:00
|
|
|
{
|
2007-03-08 13:32:03 +00:00
|
|
|
sci_colourise(wid, 0, -1);
|
2006-12-15 12:52:52 +00:00
|
|
|
}
|
2007-03-08 13:32:03 +00:00
|
|
|
ret = TRUE;
|
2006-12-15 12:52:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-07 15:13:49 +00:00
|
|
|
/* sets the filetype of the document (sets syntax highlighting and tagging) */
|
2005-11-22 12:26:26 +00:00
|
|
|
void document_set_filetype(gint idx, filetype *type)
|
|
|
|
{
|
2006-12-15 12:52:52 +00:00
|
|
|
gboolean colourise = FALSE;
|
2007-03-12 16:24:52 +00:00
|
|
|
gboolean ft_changed;
|
2006-12-15 12:52:52 +00:00
|
|
|
|
2006-12-14 12:54:36 +00:00
|
|
|
if (type == NULL || ! DOC_IDX_VALID(idx))
|
2006-12-07 15:13:49 +00:00
|
|
|
return;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-08-15 12:51:36 +00:00
|
|
|
geany_debug("%s : %s (%s)", doc_list[idx].file_name, type->name, doc_list[idx].encoding);
|
2006-12-07 15:13:49 +00:00
|
|
|
|
2007-03-12 16:24:52 +00:00
|
|
|
ft_changed = (doc_list[idx].file_type != type);
|
|
|
|
if (ft_changed) // filetype has changed
|
2006-12-07 15:13:49 +00:00
|
|
|
{
|
2006-12-14 12:54:36 +00:00
|
|
|
doc_list[idx].file_type = type;
|
|
|
|
|
|
|
|
// delete tm file object to force creation of a new one
|
|
|
|
if (doc_list[idx].tm_file != NULL)
|
|
|
|
{
|
|
|
|
tm_workspace_remove_object(doc_list[idx].tm_file, TRUE);
|
|
|
|
doc_list[idx].tm_file = NULL;
|
|
|
|
}
|
|
|
|
type->style_func_ptr(doc_list[idx].sci); // set new styles
|
2006-12-17 23:57:11 +00:00
|
|
|
build_menu_update(idx);
|
2006-12-15 12:52:52 +00:00
|
|
|
colourise = TRUE;
|
2006-12-07 15:13:49 +00:00
|
|
|
}
|
|
|
|
|
2006-05-10 23:06:47 +00:00
|
|
|
document_update_tag_list(idx, TRUE);
|
2007-02-23 13:26:06 +00:00
|
|
|
if (! delay_colourise)
|
|
|
|
{
|
2007-03-06 16:57:09 +00:00
|
|
|
/* Check if project typename keywords have changed.
|
|
|
|
* If they haven't, we may need to colourise the document. */
|
|
|
|
if (! update_type_keywords(doc_list[idx].sci) && colourise)
|
2007-02-23 13:26:06 +00:00
|
|
|
sci_colourise(doc_list[idx].sci, 0, -1);
|
|
|
|
}
|
2007-03-12 16:24:52 +00:00
|
|
|
if (ft_changed)
|
|
|
|
{
|
|
|
|
utils_get_current_function(-1, NULL);
|
|
|
|
ui_update_statusbar(idx, -1);
|
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
gchar *document_get_eol_mode(gint idx)
|
|
|
|
{
|
|
|
|
if (idx == -1) return '\0';
|
|
|
|
|
|
|
|
switch (sci_get_eol_mode(doc_list[idx].sci))
|
|
|
|
{
|
|
|
|
case SC_EOL_CRLF: return _("Win (CRLF)"); break;
|
2006-06-28 19:27:19 +00:00
|
|
|
case SC_EOL_CR: return _("Mac (CR)"); break;
|
2005-11-22 12:26:26 +00:00
|
|
|
case SC_EOL_LF:
|
|
|
|
default: return _("Unix (LF)"); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-26 18:19:28 +00:00
|
|
|
void document_unfold_all(gint idx)
|
|
|
|
{
|
|
|
|
gint lines, pos, i;
|
|
|
|
|
|
|
|
if (idx == -1 || ! doc_list[idx].is_valid) return;
|
|
|
|
|
|
|
|
lines = sci_get_line_count(doc_list[idx].sci);
|
|
|
|
pos = sci_get_current_position(doc_list[idx].sci);
|
|
|
|
|
|
|
|
for (i = 0; i < lines; i++)
|
|
|
|
{
|
|
|
|
sci_ensure_line_is_visible(doc_list[idx].sci, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void document_fold_all(gint idx)
|
|
|
|
{
|
|
|
|
gint lines, pos, i;
|
|
|
|
|
|
|
|
if (idx == -1 || ! doc_list[idx].is_valid) return;
|
|
|
|
|
|
|
|
lines = sci_get_line_count(doc_list[idx].sci);
|
|
|
|
pos = sci_get_current_position(doc_list[idx].sci);
|
|
|
|
|
|
|
|
for (i = 0; i < lines; i++)
|
|
|
|
{
|
|
|
|
gint level = sci_get_fold_level(doc_list[idx].sci, i);
|
|
|
|
if (level & SC_FOLDLEVELHEADERFLAG)
|
|
|
|
{
|
|
|
|
if (sci_get_fold_expanded(doc_list[idx].sci, i))
|
|
|
|
sci_toggle_fold(doc_list[idx].sci, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-06-13 19:37:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
void document_clear_indicators(gint idx)
|
|
|
|
{
|
2007-02-17 18:06:08 +00:00
|
|
|
glong last_pos;
|
|
|
|
|
|
|
|
g_return_if_fail(DOC_IDX_VALID(idx));
|
|
|
|
|
|
|
|
last_pos = sci_get_length(doc_list[idx].sci);
|
2006-06-13 19:37:21 +00:00
|
|
|
if (last_pos > 0)
|
|
|
|
{
|
|
|
|
sci_start_styling(doc_list[idx].sci, 0, INDIC2_MASK);
|
|
|
|
sci_set_styling(doc_list[idx].sci, last_pos, 0);
|
|
|
|
}
|
2007-02-20 15:48:58 +00:00
|
|
|
sci_marker_delete_all(doc_list[idx].sci, 0); // remove the yellow error line marker
|
2006-06-13 19:37:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void document_set_indicator(gint idx, gint line)
|
|
|
|
{
|
|
|
|
gint start, end, current_mask;
|
|
|
|
guint i = 0, len;
|
|
|
|
gchar *linebuf;
|
|
|
|
|
|
|
|
if (idx == -1 || ! doc_list[idx].is_valid) return;
|
2006-06-29 17:14:52 +00:00
|
|
|
|
2006-06-13 19:37:21 +00:00
|
|
|
start = sci_get_position_from_line(doc_list[idx].sci, line);
|
|
|
|
end = sci_get_position_from_line(doc_list[idx].sci, line + 1);
|
2006-06-29 17:14:52 +00:00
|
|
|
|
2006-06-13 19:37:21 +00:00
|
|
|
// skip blank lines
|
2006-09-06 17:53:58 +00:00
|
|
|
if ((start + 1) == end ||
|
|
|
|
sci_get_line_length(doc_list[idx].sci, line) == utils_get_eol_char_len(idx))
|
|
|
|
return;
|
2006-06-13 19:37:21 +00:00
|
|
|
|
|
|
|
// don't set the indicator on whitespace
|
2006-10-02 15:22:29 +00:00
|
|
|
len = end - start;
|
|
|
|
linebuf = sci_get_line(doc_list[idx].sci, line);
|
2006-06-13 19:37:21 +00:00
|
|
|
|
|
|
|
while (isspace(linebuf[i])) i++;
|
2006-11-01 10:58:47 +00:00
|
|
|
while (len > 1 && len > i && isspace(linebuf[len-1])) len--;
|
2006-06-13 19:37:21 +00:00
|
|
|
g_free(linebuf);
|
2006-06-29 17:14:52 +00:00
|
|
|
|
2006-06-13 19:37:21 +00:00
|
|
|
current_mask = sci_get_style_at(doc_list[idx].sci, start);
|
|
|
|
current_mask &= INDICS_MASK;
|
|
|
|
current_mask |= INDIC2_MASK;
|
|
|
|
sci_start_styling(doc_list[idx].sci, start + i, INDIC2_MASK);
|
2006-09-06 17:53:58 +00:00
|
|
|
//geany_debug("%p\tline: %d\tstart-end: %d - %d\t%d - %i", doc_list[idx].sci, line, start, end, len, i);
|
2006-06-13 19:37:21 +00:00
|
|
|
sci_set_styling(doc_list[idx].sci, len - i, current_mask);
|
|
|
|
}
|
2006-06-29 17:14:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* simple file print */
|
|
|
|
void document_print(gint idx)
|
|
|
|
{
|
|
|
|
gchar *cmdline;
|
|
|
|
|
2007-04-15 19:25:22 +00:00
|
|
|
if (! DOC_IDX_VALID(idx) || doc_list[idx].file_name == NULL)
|
|
|
|
return;
|
2006-06-29 17:14:52 +00:00
|
|
|
|
|
|
|
cmdline = g_strdup(app->tools_print_cmd);
|
|
|
|
cmdline = utils_str_replace(cmdline, "%f", doc_list[idx].file_name);
|
|
|
|
|
2007-07-04 17:08:53 +00:00
|
|
|
if (dialogs_show_question(
|
|
|
|
_("The file \"%s\" will be printed with the following command:\n\n%s"),
|
|
|
|
doc_list[idx].file_name, cmdline))
|
2006-06-29 17:14:52 +00:00
|
|
|
{
|
2007-04-15 19:25:22 +00:00
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
gchar *tmp_cmdline = cmdline;
|
|
|
|
#else
|
|
|
|
// /bin/sh -c emulates the system() call and makes complex commands possible
|
|
|
|
// but only needed on non-win32 systems due to the lack of win32's shell capabilities
|
|
|
|
gchar *tmp_cmdline = g_strconcat("/bin/sh -c \"", cmdline, "\"", NULL);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (! g_spawn_command_line_async(tmp_cmdline, &error))
|
2006-06-29 17:14:52 +00:00
|
|
|
{
|
2007-04-15 19:25:22 +00:00
|
|
|
dialogs_show_msgbox(GTK_MESSAGE_ERROR, _("Printing of \"%s\" failed (return code: %s)."),
|
|
|
|
doc_list[idx].file_name, error->message);
|
|
|
|
g_error_free(error);
|
2006-06-29 17:14:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
msgwin_status_add(_("File %s printed."), doc_list[idx].file_name);
|
|
|
|
}
|
2007-04-15 19:25:22 +00:00
|
|
|
#ifndef G_OS_WIN32
|
|
|
|
g_free(tmp_cmdline);
|
|
|
|
#endif
|
2006-06-29 17:14:52 +00:00
|
|
|
}
|
|
|
|
g_free(cmdline);
|
|
|
|
}
|
2006-07-17 10:42:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
void document_replace_tabs(gint idx)
|
|
|
|
{
|
2007-06-09 12:11:18 +00:00
|
|
|
gint search_pos, pos_in_line, current_tab_true_length;
|
2006-10-25 19:23:19 +00:00
|
|
|
gint tab_len;
|
2006-10-25 17:03:24 +00:00
|
|
|
gchar *tab_str;
|
|
|
|
struct TextToFind ttf;
|
2006-07-17 10:42:26 +00:00
|
|
|
|
2006-10-25 17:03:24 +00:00
|
|
|
if (! DOC_IDX_VALID(idx)) return;
|
2006-07-17 10:42:26 +00:00
|
|
|
|
2006-10-25 17:03:24 +00:00
|
|
|
sci_start_undo_action(doc_list[idx].sci);
|
2006-10-25 19:23:19 +00:00
|
|
|
tab_len = sci_get_tab_width(doc_list[idx].sci);
|
2006-10-25 17:03:24 +00:00
|
|
|
ttf.chrg.cpMin = 0;
|
|
|
|
ttf.chrg.cpMax = sci_get_length(doc_list[idx].sci);
|
2007-06-09 12:11:18 +00:00
|
|
|
ttf.lpstrText = (gchar*) "\t";
|
2006-07-17 10:42:26 +00:00
|
|
|
|
2006-10-25 17:03:24 +00:00
|
|
|
while (TRUE)
|
2006-07-17 10:42:26 +00:00
|
|
|
{
|
2006-10-25 17:03:24 +00:00
|
|
|
search_pos = sci_find_text(doc_list[idx].sci, SCFIND_MATCHCASE, &ttf);
|
2007-06-09 12:11:18 +00:00
|
|
|
if (search_pos == -1)
|
|
|
|
break;
|
2006-07-17 10:42:26 +00:00
|
|
|
|
2007-06-09 12:11:18 +00:00
|
|
|
pos_in_line = sci_get_col_from_position(doc_list[idx].sci,search_pos);
|
|
|
|
current_tab_true_length = tab_len - (pos_in_line % tab_len);
|
|
|
|
tab_str = g_strnfill(current_tab_true_length, ' ');
|
2006-10-25 17:03:24 +00:00
|
|
|
sci_target_start(doc_list[idx].sci, search_pos);
|
|
|
|
sci_target_end(doc_list[idx].sci, search_pos + 1);
|
|
|
|
sci_target_replace(doc_list[idx].sci, tab_str, FALSE);
|
2007-06-09 12:11:18 +00:00
|
|
|
ttf.chrg.cpMin = search_pos + current_tab_true_length - 1; // next search starts after replacement
|
|
|
|
ttf.chrg.cpMax += current_tab_true_length - 1; // update end of range now text has changed
|
|
|
|
g_free(tab_str);
|
2006-07-17 10:42:26 +00:00
|
|
|
}
|
2006-10-25 17:03:24 +00:00
|
|
|
sci_end_undo_action(doc_list[idx].sci);
|
2006-07-17 10:42:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void document_strip_trailing_spaces(gint idx)
|
|
|
|
{
|
|
|
|
gint max_lines = sci_get_line_count(doc_list[idx].sci);
|
|
|
|
gint line;
|
|
|
|
|
2007-02-16 16:44:16 +00:00
|
|
|
sci_start_undo_action(doc_list[idx].sci);
|
|
|
|
|
2006-07-17 10:42:26 +00:00
|
|
|
for (line = 0; line < max_lines; line++)
|
|
|
|
{
|
|
|
|
gint line_start = sci_get_position_from_line(doc_list[idx].sci, line);
|
2007-02-16 16:38:23 +00:00
|
|
|
gint line_end = sci_get_line_end_position(doc_list[idx].sci, line);
|
2006-07-17 10:42:26 +00:00
|
|
|
gint i = line_end - 1;
|
|
|
|
gchar ch = sci_get_char_at(doc_list[idx].sci, i);
|
|
|
|
|
|
|
|
while ((i >= line_start) && ((ch == ' ') || (ch == '\t')))
|
|
|
|
{
|
|
|
|
i--;
|
|
|
|
ch = sci_get_char_at(doc_list[idx].sci, i);
|
|
|
|
}
|
|
|
|
if (i < (line_end-1))
|
|
|
|
{
|
|
|
|
sci_target_start(doc_list[idx].sci, i + 1);
|
|
|
|
sci_target_end(doc_list[idx].sci, line_end);
|
2006-07-18 14:09:01 +00:00
|
|
|
sci_target_replace(doc_list[idx].sci, "", FALSE);
|
2006-07-17 10:42:26 +00:00
|
|
|
}
|
|
|
|
}
|
2007-02-16 16:44:16 +00:00
|
|
|
sci_end_undo_action(doc_list[idx].sci);
|
2006-07-17 10:42:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void document_ensure_final_newline(gint idx)
|
|
|
|
{
|
|
|
|
gint max_lines = sci_get_line_count(doc_list[idx].sci);
|
|
|
|
gboolean append_newline = (max_lines == 1);
|
|
|
|
gint end_document = sci_get_position_from_line(doc_list[idx].sci, max_lines);
|
|
|
|
|
|
|
|
if (max_lines > 1)
|
|
|
|
{
|
|
|
|
append_newline = end_document > sci_get_position_from_line(doc_list[idx].sci, max_lines - 1);
|
|
|
|
}
|
|
|
|
if (append_newline)
|
|
|
|
{
|
|
|
|
const gchar *eol = "\n";
|
|
|
|
switch (sci_get_eol_mode(doc_list[idx].sci))
|
|
|
|
{
|
|
|
|
case SC_EOL_CRLF:
|
|
|
|
eol = "\r\n";
|
|
|
|
break;
|
|
|
|
case SC_EOL_CR:
|
|
|
|
eol = "\r";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
sci_insert_text(doc_list[idx].sci, end_document, eol);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
|
|
|
|
void document_set_encoding(gint idx, const gchar *new_encoding)
|
|
|
|
{
|
|
|
|
if (! DOC_IDX_VALID(idx) || new_encoding == NULL ||
|
2006-12-07 16:09:45 +00:00
|
|
|
utils_str_equal(new_encoding, doc_list[idx].encoding)) return;
|
2006-10-10 16:02:41 +00:00
|
|
|
|
|
|
|
g_free(doc_list[idx].encoding);
|
|
|
|
doc_list[idx].encoding = g_strdup(new_encoding);
|
|
|
|
|
|
|
|
ui_update_statusbar(idx, -1);
|
|
|
|
gtk_widget_set_sensitive(lookup_widget(app->window, "menu_write_unicode_bom1"),
|
2007-01-07 16:22:41 +00:00
|
|
|
encodings_is_unicode_charset(doc_list[idx].encoding));
|
2006-10-10 16:02:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-06 16:09:08 +00:00
|
|
|
/* own Undo / Redo implementation to be able to undo / redo changes
|
|
|
|
* to the encoding or the Unicode BOM (which are Scintilla independet).
|
|
|
|
* All Scintilla events are stored in the undo / redo buffer and are passed through. */
|
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
/* Clears the Undo and Redo buffer (to be called when reloading or closing the document) */
|
2006-09-06 16:09:08 +00:00
|
|
|
void document_undo_clear(gint idx)
|
|
|
|
{
|
|
|
|
undo_action *a;
|
|
|
|
|
|
|
|
while (g_trash_stack_height(&doc_list[idx].undo_actions) > 0)
|
|
|
|
{
|
|
|
|
a = g_trash_stack_pop(&doc_list[idx].undo_actions);
|
|
|
|
if (a != NULL)
|
|
|
|
{
|
|
|
|
switch (a->type)
|
|
|
|
{
|
|
|
|
case UNDO_ENCODING: g_free(a->data); break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free(a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
doc_list[idx].undo_actions = NULL;
|
|
|
|
|
|
|
|
while (g_trash_stack_height(&doc_list[idx].redo_actions) > 0)
|
|
|
|
{
|
|
|
|
a = g_trash_stack_pop(&doc_list[idx].redo_actions);
|
|
|
|
if (a != NULL)
|
|
|
|
{
|
|
|
|
switch (a->type)
|
|
|
|
{
|
|
|
|
case UNDO_ENCODING: g_free(a->data); break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free(a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
doc_list[idx].redo_actions = NULL;
|
|
|
|
|
|
|
|
doc_list[idx].changed = FALSE;
|
|
|
|
if (! app->quitting) document_set_text_changed(idx);
|
2006-10-10 16:02:41 +00:00
|
|
|
|
|
|
|
//geany_debug("%s: new undo stack height: %d, new redo stack height: %d", __func__,
|
|
|
|
//g_trash_stack_height(&doc_list[idx].undo_actions), g_trash_stack_height(&doc_list[idx].redo_actions));
|
2006-09-06 16:09:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void document_undo_add(gint idx, guint type, gpointer data)
|
|
|
|
{
|
|
|
|
undo_action *action;
|
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
if (! DOC_IDX_VALID(idx)) return;
|
2006-09-06 16:09:08 +00:00
|
|
|
|
|
|
|
action = g_new0(undo_action, 1);
|
|
|
|
action->type = type;
|
|
|
|
action->data = data;
|
|
|
|
|
|
|
|
g_trash_stack_push(&doc_list[idx].undo_actions, action);
|
|
|
|
|
|
|
|
doc_list[idx].changed = TRUE;
|
|
|
|
document_set_text_changed(idx);
|
|
|
|
ui_update_popup_reundo_items(idx);
|
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
//geany_debug("%s: new stack height: %d, added type: %d", __func__,
|
|
|
|
//g_trash_stack_height(&doc_list[idx].undo_actions), action->type);
|
2006-09-06 16:09:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
gboolean document_can_undo(gint idx)
|
|
|
|
{
|
2006-10-10 16:02:41 +00:00
|
|
|
if (! DOC_IDX_VALID(idx)) return FALSE;
|
2006-09-06 16:09:08 +00:00
|
|
|
|
|
|
|
if (g_trash_stack_height(&doc_list[idx].undo_actions) > 0 || sci_can_undo(doc_list[idx].sci))
|
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-24 13:41:34 +00:00
|
|
|
static void update_changed_state(gint idx)
|
|
|
|
{
|
|
|
|
doc_list[idx].changed =
|
|
|
|
(sci_is_modified(doc_list[idx].sci) ||
|
|
|
|
doc_list[idx].has_bom != doc_list[idx].saved_encoding.has_bom ||
|
2006-12-07 16:09:45 +00:00
|
|
|
! utils_str_equal(doc_list[idx].encoding, doc_list[idx].saved_encoding.encoding));
|
2006-10-24 13:41:34 +00:00
|
|
|
document_set_text_changed(idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
void document_undo(gint idx)
|
|
|
|
{
|
|
|
|
undo_action *action;
|
|
|
|
|
|
|
|
if (! DOC_IDX_VALID(idx)) return;
|
|
|
|
|
|
|
|
action = g_trash_stack_pop(&doc_list[idx].undo_actions);
|
|
|
|
|
|
|
|
if (action == NULL)
|
|
|
|
{
|
|
|
|
// fallback, should not be necessary
|
|
|
|
geany_debug("%s: fallback used", __func__);
|
|
|
|
sci_undo(doc_list[idx].sci);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (action->type)
|
|
|
|
{
|
|
|
|
case UNDO_SCINTILLA:
|
|
|
|
{
|
|
|
|
document_redo_add(idx, UNDO_SCINTILLA, NULL);
|
|
|
|
|
|
|
|
sci_undo(doc_list[idx].sci);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case UNDO_BOM:
|
|
|
|
{
|
|
|
|
document_redo_add(idx, UNDO_BOM, GINT_TO_POINTER(doc_list[idx].has_bom));
|
|
|
|
|
|
|
|
doc_list[idx].has_bom = GPOINTER_TO_INT(action->data);
|
|
|
|
ui_update_statusbar(idx, -1);
|
|
|
|
ui_document_show_hide(idx);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case UNDO_ENCODING:
|
|
|
|
{
|
|
|
|
// use the "old" encoding
|
|
|
|
document_redo_add(idx, UNDO_ENCODING, g_strdup(doc_list[idx].encoding));
|
|
|
|
|
|
|
|
document_set_encoding(idx, (const gchar*)action->data);
|
|
|
|
|
|
|
|
app->ignore_callback = TRUE;
|
|
|
|
encodings_select_radio_item((const gchar*)action->data);
|
|
|
|
app->ignore_callback = FALSE;
|
|
|
|
|
|
|
|
g_free(action->data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_free(action); // free the action which was taken from the stack
|
|
|
|
|
2006-10-24 13:41:34 +00:00
|
|
|
update_changed_state(idx);
|
2006-10-10 16:02:41 +00:00
|
|
|
ui_update_popup_reundo_items(idx);
|
|
|
|
//geany_debug("%s: new stack height: %d", __func__, g_trash_stack_height(&doc_list[idx].undo_actions));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-06 16:09:08 +00:00
|
|
|
gboolean document_can_redo(gint idx)
|
|
|
|
{
|
2006-10-10 16:02:41 +00:00
|
|
|
if (! DOC_IDX_VALID(idx)) return FALSE;
|
2006-09-06 16:09:08 +00:00
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
if (g_trash_stack_height(&doc_list[idx].redo_actions) > 0 || sci_can_redo(doc_list[idx].sci))
|
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
2006-09-06 16:09:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
void document_redo(gint idx)
|
2006-09-06 16:09:08 +00:00
|
|
|
{
|
2006-09-08 10:20:15 +00:00
|
|
|
undo_action *action;
|
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
if (! DOC_IDX_VALID(idx)) return;
|
2006-09-06 16:09:08 +00:00
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
action = g_trash_stack_pop(&doc_list[idx].redo_actions);
|
2006-09-06 16:09:08 +00:00
|
|
|
|
|
|
|
if (action == NULL)
|
|
|
|
{
|
|
|
|
// fallback, should not be necessary
|
2006-10-10 16:02:41 +00:00
|
|
|
geany_debug("%s: fallback used", __func__);
|
|
|
|
sci_redo(doc_list[idx].sci);
|
2006-09-06 16:09:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (action->type)
|
|
|
|
{
|
|
|
|
case UNDO_SCINTILLA:
|
|
|
|
{
|
2006-10-10 16:02:41 +00:00
|
|
|
document_undo_add(idx, UNDO_SCINTILLA, NULL);
|
|
|
|
|
|
|
|
sci_redo(doc_list[idx].sci);
|
2006-09-06 16:09:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case UNDO_BOM:
|
|
|
|
{
|
2006-10-10 16:02:41 +00:00
|
|
|
document_undo_add(idx, UNDO_BOM, GINT_TO_POINTER(doc_list[idx].has_bom));
|
|
|
|
|
2006-09-06 16:09:08 +00:00
|
|
|
doc_list[idx].has_bom = GPOINTER_TO_INT(action->data);
|
|
|
|
ui_update_statusbar(idx, -1);
|
|
|
|
ui_document_show_hide(idx);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case UNDO_ENCODING:
|
|
|
|
{
|
2006-10-10 16:02:41 +00:00
|
|
|
document_undo_add(idx, UNDO_ENCODING, g_strdup(doc_list[idx].encoding));
|
|
|
|
|
|
|
|
document_set_encoding(idx, (const gchar*)action->data);
|
|
|
|
|
|
|
|
app->ignore_callback = TRUE;
|
|
|
|
encodings_select_radio_item((const gchar*)action->data);
|
|
|
|
app->ignore_callback = FALSE;
|
|
|
|
|
|
|
|
g_free(action->data);
|
2006-09-06 16:09:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
2006-10-10 16:02:41 +00:00
|
|
|
g_free(action); // free the action which was taken from the stack
|
2006-09-06 16:09:08 +00:00
|
|
|
|
2006-10-24 13:41:34 +00:00
|
|
|
update_changed_state(idx);
|
2006-09-06 16:09:08 +00:00
|
|
|
ui_update_popup_reundo_items(idx);
|
2006-10-10 16:02:41 +00:00
|
|
|
//geany_debug("%s: new stack height: %d", __func__, g_trash_stack_height(&doc_list[idx].redo_actions));
|
2006-09-06 16:09:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
static void document_redo_add(gint idx, guint type, gpointer data)
|
2006-09-06 16:09:08 +00:00
|
|
|
{
|
2006-10-10 16:02:41 +00:00
|
|
|
undo_action *action;
|
|
|
|
|
|
|
|
if (! DOC_IDX_VALID(idx)) return;
|
|
|
|
|
|
|
|
action = g_new0(undo_action, 1);
|
|
|
|
action->type = type;
|
|
|
|
action->data = data;
|
2006-09-06 16:09:08 +00:00
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
g_trash_stack_push(&doc_list[idx].redo_actions, action);
|
|
|
|
|
|
|
|
doc_list[idx].changed = TRUE;
|
|
|
|
document_set_text_changed(idx);
|
|
|
|
ui_update_popup_reundo_items(idx);
|
|
|
|
|
|
|
|
//geany_debug("%s: new stack height: %d, added type: %d", __func__,
|
|
|
|
//g_trash_stack_height(&doc_list[idx].redo_actions), action->type);
|
2006-09-06 16:09:08 +00:00
|
|
|
}
|
2006-07-17 10:42:26 +00:00
|
|
|
|
2006-10-10 16:02:41 +00:00
|
|
|
|
2006-12-05 10:37:36 +00:00
|
|
|
/* Gets the status colour of the document, or NULL if default widget
|
|
|
|
* colouring should be used. */
|
|
|
|
GdkColor *document_get_status(gint idx)
|
|
|
|
{
|
|
|
|
static GdkColor red = {0, 0xFFFF, 0, 0};
|
|
|
|
static GdkColor green = {0, 0, 0x7FFF, 0};
|
|
|
|
GdkColor *color = NULL;
|
|
|
|
|
|
|
|
if (doc_list[idx].changed)
|
|
|
|
color = &red;
|
|
|
|
else if (doc_list[idx].readonly)
|
|
|
|
color = &green;
|
|
|
|
|
|
|
|
return color; // return pointer to static GdkColor.
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-24 13:41:34 +00:00
|
|
|
// useful debugging function (usually debug macros aren't enabled)
|
2006-10-24 16:29:17 +00:00
|
|
|
#ifdef GEANY_DEBUG
|
2006-10-24 13:41:34 +00:00
|
|
|
document *doc(gint idx)
|
|
|
|
{
|
|
|
|
return DOC_IDX_VALID(idx) ? &doc_list[idx] : NULL;
|
|
|
|
}
|
2006-10-24 16:29:17 +00:00
|
|
|
#endif
|
2007-02-23 13:26:06 +00:00
|
|
|
|
|
|
|
|
2007-03-06 16:57:09 +00:00
|
|
|
static GArray *doc_indexes = NULL;
|
|
|
|
|
|
|
|
/* Cache the current document indexes and prevent any colourising until
|
|
|
|
* document_colourise_new() is called. */
|
2007-02-23 13:26:06 +00:00
|
|
|
void document_delay_colourise()
|
|
|
|
{
|
2007-03-06 16:57:09 +00:00
|
|
|
gint n;
|
|
|
|
|
2007-02-23 13:26:06 +00:00
|
|
|
g_return_if_fail(delay_colourise == FALSE);
|
2007-03-06 16:57:09 +00:00
|
|
|
g_return_if_fail(doc_indexes == NULL);
|
2007-02-23 13:26:06 +00:00
|
|
|
|
2007-03-06 16:57:09 +00:00
|
|
|
// make an array containing all the current document indexes
|
|
|
|
doc_indexes = g_array_new(FALSE, FALSE, sizeof(gint));
|
|
|
|
for (n = 0; n < (gint) doc_array->len; n++)
|
|
|
|
{
|
|
|
|
if (DOC_IDX_VALID(n))
|
|
|
|
g_array_append_val(doc_indexes, n);
|
|
|
|
}
|
2007-02-23 13:26:06 +00:00
|
|
|
delay_colourise = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-06 16:57:09 +00:00
|
|
|
/* Colourise only newly opened documents and existing documents whose project typenames
|
|
|
|
* keywords have changed.
|
|
|
|
* document_delay_colourise() should already have been called. */
|
|
|
|
void document_colourise_new()
|
2007-02-23 13:26:06 +00:00
|
|
|
{
|
2007-03-06 16:57:09 +00:00
|
|
|
guint n, i;
|
|
|
|
/* A bitset representing which docs need [re]colourising.
|
|
|
|
* (use gint8 to save memory because gboolean = gint) */
|
|
|
|
gint8 *doc_set = g_newa(gint8, doc_array->len);
|
|
|
|
gboolean recolour = FALSE; // whether to recolourise existing typenames
|
2007-02-23 13:26:06 +00:00
|
|
|
|
|
|
|
g_return_if_fail(delay_colourise == TRUE);
|
2007-03-06 16:57:09 +00:00
|
|
|
g_return_if_fail(doc_indexes != NULL);
|
2007-02-23 13:26:06 +00:00
|
|
|
|
2007-03-06 16:57:09 +00:00
|
|
|
// first assume recolourising all docs
|
|
|
|
memset(doc_set, TRUE, doc_array->len * sizeof(gint8));
|
2007-02-23 13:26:06 +00:00
|
|
|
|
2007-03-06 16:57:09 +00:00
|
|
|
// remove existing docs from the set if they don't use typenames or typenames haven't changed
|
|
|
|
recolour = update_type_keywords(NULL);
|
|
|
|
for (i = 0; i < doc_indexes->len; i++)
|
2007-02-23 13:26:06 +00:00
|
|
|
{
|
2007-03-06 16:57:09 +00:00
|
|
|
ScintillaObject *sci;
|
2007-02-23 13:26:06 +00:00
|
|
|
|
2007-03-06 16:57:09 +00:00
|
|
|
n = g_array_index(doc_indexes, gint, i);
|
|
|
|
sci = doc_list[n].sci;
|
2007-05-28 16:07:30 +00:00
|
|
|
if (! recolour || (sci && editor_lexer_get_type_keyword_idx(sci_get_lexer(sci)) == -1))
|
2007-03-06 16:57:09 +00:00
|
|
|
{
|
|
|
|
doc_set[n] = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// colourise all in the doc_set
|
|
|
|
for (n = 0; n < doc_array->len; n++)
|
|
|
|
{
|
|
|
|
if (doc_set[n] && doc_list[n].is_valid)
|
|
|
|
sci_colourise(doc_list[n].sci, 0, -1);
|
2007-02-23 13:26:06 +00:00
|
|
|
}
|
|
|
|
delay_colourise = FALSE;
|
2007-03-06 16:57:09 +00:00
|
|
|
g_array_free(doc_indexes, TRUE);
|
|
|
|
doc_indexes = NULL;
|
2007-03-12 16:24:52 +00:00
|
|
|
|
|
|
|
/* now that the current document is colourised, fold points are now accurate,
|
|
|
|
* so force an update of the current function/tag. */
|
|
|
|
utils_get_current_function(-1, NULL);
|
|
|
|
ui_update_statusbar(-1, -1);
|
2007-02-23 13:26:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-27 19:36:43 +00:00
|
|
|
/* Inserts the given colour (format should be #...), if there is a selection starting with 0x...
|
2007-07-25 08:23:17 +00:00
|
|
|
* the replacement will also start with 0x... */
|
2007-06-27 19:36:43 +00:00
|
|
|
void document_insert_colour(gint idx, const gchar *colour)
|
|
|
|
{
|
|
|
|
g_return_if_fail(DOC_IDX_VALID(idx));
|
|
|
|
|
|
|
|
if (sci_can_copy(doc_list[idx].sci))
|
|
|
|
{
|
|
|
|
gint start = sci_get_selection_start(doc_list[idx].sci);
|
|
|
|
const gchar *replacement = colour;
|
|
|
|
|
|
|
|
if (sci_get_char_at(doc_list[idx].sci, start) == '0' &&
|
|
|
|
sci_get_char_at(doc_list[idx].sci, start + 1) == 'x')
|
|
|
|
{
|
|
|
|
sci_set_selection_start(doc_list[idx].sci, start + 2);
|
2007-07-25 08:23:17 +00:00
|
|
|
sci_set_selection_end(doc_list[idx].sci, start + 8);
|
|
|
|
replacement++; // skip the leading "0x"
|
2007-06-27 19:36:43 +00:00
|
|
|
}
|
|
|
|
else if (sci_get_char_at(doc_list[idx].sci, start - 1) == '#')
|
|
|
|
{ // double clicking something like #00ffff may only select 00ffff because of wordchars
|
|
|
|
replacement++; // so skip the '#' to only replace the colour value
|
|
|
|
}
|
|
|
|
sci_replace_sel(doc_list[idx].sci, replacement);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
sci_add_text(doc_list[idx].sci, colour);
|
|
|
|
}
|
2007-07-17 14:52:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
gint document_clone(gint old_idx, const gchar *utf8_filename)
|
|
|
|
{
|
|
|
|
// create a new file and copy file content and properties
|
|
|
|
gint len, idx;
|
|
|
|
gchar *data;
|
|
|
|
|
|
|
|
// use old file type (or maybe NULL for auto detect would be better?)
|
|
|
|
idx = document_new_file(utf8_filename, doc_list[old_idx].file_type);
|
|
|
|
|
|
|
|
sci_set_undo_collection(doc_list[idx].sci, FALSE); // avoid creation of an undo action
|
|
|
|
sci_empty_undo_buffer(doc_list[idx].sci);
|
|
|
|
|
|
|
|
len = sci_get_length(doc_list[old_idx].sci) + 1;
|
|
|
|
data = (gchar*) g_malloc(len);
|
|
|
|
sci_get_text(doc_list[old_idx].sci, len, data);
|
|
|
|
|
|
|
|
sci_set_text(doc_list[idx].sci, data);
|
|
|
|
|
|
|
|
// copy file properties
|
|
|
|
doc_list[idx].line_breaking = doc_list[old_idx].line_breaking;
|
|
|
|
doc_list[idx].readonly = doc_list[old_idx].readonly;
|
|
|
|
doc_list[idx].has_bom = doc_list[old_idx].has_bom;
|
|
|
|
document_set_encoding(idx, doc_list[old_idx].encoding);
|
|
|
|
sci_set_lines_wrapped(doc_list[idx].sci, doc_list[idx].line_breaking);
|
|
|
|
sci_set_readonly(doc_list[idx].sci, doc_list[idx].readonly);
|
|
|
|
sci_set_undo_collection(doc_list[idx].sci, TRUE);
|
|
|
|
|
|
|
|
ui_document_show_hide(idx);
|
|
|
|
|
|
|
|
g_free(data);
|
|
|
|
return idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
|