1
1
mc/src/editor/editcmd.c
Andrew Borodin 8b382756bf Use g_strndup() instead of g_strdup()
...to ret rid of extra calculation of string length.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
2012-09-10 14:29:53 +03:00

3715 строки
106 KiB
C

/*
Editor high level editing commands
Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2004, 2005, 2006,
2007, 2011, 2012
The Free Software Foundation, Inc.
Written by:
Paul Sheer, 1996, 1997
Andrew Borodin <aborodin@vmail.ru> 2012
Ilia Maslakov <il.smind@gmail.com> 2012
This file is part of the Midnight Commander.
The Midnight Commander 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 3 of the License,
or (at your option) any later version.
The Midnight Commander 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, see <http://www.gnu.org/licenses/>.
*/
/** \file
* \brief Source: editor high level editing commands
* \author Paul Sheer
* \date 1996, 1997
*/
/* #define PIPE_BLOCKS_SO_READ_BYTE_BY_BYTE */
#include <config.h>
#ifdef HAVE_ASSERT_H
#include <assert.h>
#endif
#include <ctype.h>
#include <stdio.h>
#include <stdarg.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <fcntl.h>
#include "lib/global.h"
#include "lib/tty/tty.h"
#include "lib/tty/key.h" /* XCTRL */
#include "lib/mcconfig.h"
#include "lib/skin.h"
#include "lib/strutil.h" /* utf string functions */
#include "lib/lock.h"
#include "lib/util.h" /* tilde_expand() */
#include "lib/vfs/vfs.h"
#include "lib/widget.h"
#include "lib/event.h" /* mc_event_raise() */
#ifdef HAVE_CHARSET
#include "lib/charsets.h"
#endif
#include "src/history.h"
#include "src/setup.h" /* option_tab_spacing */
#include "src/main.h" /* mactos_t */
#ifdef HAVE_CHARSET
#include "src/selcodepage.h"
#endif
#include "src/keybind-defaults.h"
#include "src/util.h" /* check_for_default() */
#include "src/filemanager/layout.h" /* mc_refresh() */
#include "edit-impl.h"
#include "editwidget.h"
#include "editcmd_dialogs.h"
#ifdef HAVE_ASPELL
#include "spell.h"
#include "spell_dialogs.h"
#endif
#include "etags.h"
/*** global variables ****************************************************************************/
/* search and replace: */
int search_create_bookmark = FALSE;
/* queries on a save */
int edit_confirm_save = 1;
/*** file scope macro definitions ****************************************************************/
#define space_width 1
#define TEMP_BUF_LEN 1024
#define INPUT_INDEX 9
/* thanks to Liviu Daia <daia@stoilow.imar.ro> for getting this
(and the above) routines to work properly - paul */
#define is_digit(x) ((x) >= '0' && (x) <= '9')
#define MAIL_DLG_HEIGHT 12
#define MAX_WORD_COMPLETIONS 100 /* in listbox */
/*** file scope type declarations ****************************************************************/
/*** file scope variables ************************************************************************/
/*** file scope functions ************************************************************************/
/* --------------------------------------------------------------------------------------------- */
/* If 0 (quick save) then a) create/truncate <filename> file,
b) save to <filename>;
if 1 (safe save) then a) save to <tempnam>,
b) rename <tempnam> to <filename>;
if 2 (do backups) then a) save to <tempnam>,
b) rename <filename> to <filename.backup_ext>,
c) rename <tempnam> to <filename>. */
/* returns 0 on error, -1 on abort */
static int
edit_save_file (WEdit * edit, const vfs_path_t * filename_vpath)
{
char *p;
gchar *tmp;
off_t filelen = 0;
int this_save_mode, fd = -1;
vfs_path_t *real_filename_vpath;
vfs_path_t *savename_vpath = NULL;
const char *start_filename;
const vfs_path_element_t *vpath_element;
vpath_element = vfs_path_get_by_index (filename_vpath, 0);
if (vpath_element == NULL)
return 0;
start_filename = vpath_element->path;
if (*start_filename == '\0')
return 0;
if (*start_filename != PATH_SEP && edit->dir_vpath != NULL)
{
real_filename_vpath = vfs_path_append_vpath_new (edit->dir_vpath, filename_vpath, NULL);
}
else
{
real_filename_vpath = vfs_path_clone (filename_vpath);
}
this_save_mode = option_save_mode;
if (this_save_mode != EDIT_QUICK_SAVE)
{
if (!vfs_file_is_local (real_filename_vpath)
|| (fd = mc_open (real_filename_vpath, O_RDONLY | O_BINARY)) == -1)
{
/*
* The file does not exists yet, so no safe save or
* backup are necessary.
*/
this_save_mode = EDIT_QUICK_SAVE;
}
if (fd != -1)
mc_close (fd);
}
if (this_save_mode == EDIT_QUICK_SAVE && !edit->skip_detach_prompt)
{
int rv;
struct stat sb;
rv = mc_stat (real_filename_vpath, &sb);
if (rv == 0 && sb.st_nlink > 1)
{
rv = edit_query_dialog3 (_("Warning"),
_("File has hard-links. Detach before saving?"),
_("&Yes"), _("&No"), _("&Cancel"));
switch (rv)
{
case 0:
this_save_mode = EDIT_SAFE_SAVE;
/* fallthrough */
case 1:
edit->skip_detach_prompt = 1;
break;
default:
vfs_path_free (real_filename_vpath);
return -1;
}
}
/* Prevent overwriting changes from other editor sessions. */
if (rv == 0 && edit->stat1.st_mtime != 0 && edit->stat1.st_mtime != sb.st_mtime)
{
/* The default action is "Cancel". */
query_set_sel (1);
rv = edit_query_dialog2 (_("Warning"),
_("The file has been modified in the meantime. Save anyway?"),
_("&Yes"), _("&Cancel"));
if (rv != 0)
{
vfs_path_free (real_filename_vpath);
return -1;
}
}
}
if (this_save_mode != EDIT_QUICK_SAVE)
{
char *savedir, *saveprefix;
savedir = vfs_path_tokens_get (real_filename_vpath, 0, -1);
if (savedir == NULL)
savedir = g_strdup (".");
/* Token-related function never return leading slash, so we need add it manually */
saveprefix = mc_build_filename ("/", savedir, "cooledit", NULL);
g_free (savedir);
fd = mc_mkstemps (&savename_vpath, saveprefix, NULL);
g_free (saveprefix);
if (savename_vpath == NULL)
{
vfs_path_free (real_filename_vpath);
return 0;
}
/* FIXME:
* Close for now because mc_mkstemps use pure open system call
* to create temporary file and it needs to be reopened by
* VFS-aware mc_open().
*/
close (fd);
}
else
savename_vpath = vfs_path_clone (real_filename_vpath);
(void) mc_chown (savename_vpath, edit->stat1.st_uid, edit->stat1.st_gid);
(void) mc_chmod (savename_vpath, edit->stat1.st_mode);
fd = mc_open (savename_vpath, O_CREAT | O_WRONLY | O_TRUNC | O_BINARY, edit->stat1.st_mode);
if (fd == -1)
goto error_save;
/* pipe save */
p = edit_get_write_filter (savename_vpath, real_filename_vpath);
if (p != NULL)
{
FILE *file;
mc_close (fd);
file = (FILE *) popen (p, "w");
if (file)
{
filelen = edit_write_stream (edit, file);
#if 1
pclose (file);
#else
if (pclose (file) != 0)
{
tmp = g_strdup_printf (_("Error writing to pipe: %s"), p);
edit_error_dialog (_("Error"), tmp);
g_free (tmp);
g_free (p);
goto error_save;
}
#endif
}
else
{
tmp = g_strdup_printf (_("Cannot open pipe for writing: %s"), p);
edit_error_dialog (_("Error"), get_sys_error (tmp));
g_free (p);
g_free (tmp);
goto error_save;
}
g_free (p);
}
else if (edit->lb == LB_ASIS)
{ /* do not change line breaks */
off_t buf;
buf = 0;
filelen = edit->last_byte;
while (buf <= (edit->curs1 >> S_EDIT_BUF_SIZE) - 1)
{
if (mc_write (fd, (char *) edit->buffers1[buf], EDIT_BUF_SIZE) != EDIT_BUF_SIZE)
{
mc_close (fd);
goto error_save;
}
buf++;
}
if (mc_write
(fd, (char *) edit->buffers1[buf],
edit->curs1 & M_EDIT_BUF_SIZE) != (edit->curs1 & M_EDIT_BUF_SIZE))
{
filelen = -1;
}
else if (edit->curs2)
{
edit->curs2--;
buf = (edit->curs2 >> S_EDIT_BUF_SIZE);
if (mc_write
(fd,
(char *) edit->buffers2[buf] + EDIT_BUF_SIZE -
(edit->curs2 & M_EDIT_BUF_SIZE) - 1,
1 + (edit->curs2 & M_EDIT_BUF_SIZE)) != 1 + (edit->curs2 & M_EDIT_BUF_SIZE))
{
filelen = -1;
}
else
{
while (--buf >= 0)
{
if (mc_write (fd, (char *) edit->buffers2[buf], EDIT_BUF_SIZE) != EDIT_BUF_SIZE)
{
filelen = -1;
break;
}
}
}
edit->curs2++;
}
if (mc_close (fd))
goto error_save;
/* Update the file information, especially the mtime. */
if (mc_stat (savename_vpath, &edit->stat1) == -1)
goto error_save;
}
else
{ /* change line breaks */
FILE *file;
const vfs_path_element_t *path_element;
mc_close (fd);
path_element = vfs_path_get_by_index (savename_vpath, -1);
file = (FILE *) fopen (path_element->path, "w");
if (file != NULL)
{
filelen = edit_write_stream (edit, file);
fclose (file);
}
else
{
char *msg;
msg = g_strdup_printf (_("Cannot open file for writing: %s"), path_element->path);
edit_error_dialog (_("Error"), msg);
g_free (msg);
goto error_save;
}
}
if (filelen != edit->last_byte)
goto error_save;
if (this_save_mode == EDIT_DO_BACKUP)
{
char *tmp_store_filename;
vfs_path_element_t *last_vpath_element;
vfs_path_t *tmp_vpath;
gboolean ok;
#ifdef HAVE_ASSERT_H
assert (option_backup_ext != NULL);
#endif
/* add backup extention to the path */
tmp_vpath = vfs_path_clone (real_filename_vpath);
last_vpath_element = (vfs_path_element_t *) vfs_path_get_by_index (tmp_vpath, -1);
tmp_store_filename = last_vpath_element->path;
last_vpath_element->path = g_strdup_printf ("%s%s", tmp_store_filename, option_backup_ext);
g_free (tmp_store_filename);
ok = (mc_rename (real_filename_vpath, tmp_vpath) != -1);
vfs_path_free (tmp_vpath);
if (!ok)
goto error_save;
}
if (this_save_mode != EDIT_QUICK_SAVE)
if (mc_rename (savename_vpath, real_filename_vpath) == -1)
goto error_save;
vfs_path_free (real_filename_vpath);
vfs_path_free (savename_vpath);
return 1;
error_save:
/* FIXME: Is this safe ?
* if (this_save_mode != EDIT_QUICK_SAVE)
* mc_unlink (savename);
*/
vfs_path_free (real_filename_vpath);
vfs_path_free (savename_vpath);
return 0;
}
/* --------------------------------------------------------------------------------------------- */
static gboolean
edit_check_newline (WEdit * edit)
{
return !(option_check_nl_at_eof && edit->last_byte > 0
&& edit_get_byte (edit, edit->last_byte - 1) != '\n'
&& edit_query_dialog2 (_("Warning"),
_("The file you are saving is not finished with a newline"),
_("C&ontinue"), _("&Cancel")));
}
/* --------------------------------------------------------------------------------------------- */
static vfs_path_t *
edit_get_save_file_as (WEdit * edit)
{
#define DLG_WIDTH 64
#define DLG_HEIGHT 14
static LineBreaks cur_lb = LB_ASIS;
char *filename = vfs_path_to_str (edit->filename_vpath);
char *filename_res;
const char *lb_names[LB_NAMES] = {
N_("&Do not change"),
N_("&Unix format (LF)"),
N_("&Windows/DOS format (CR LF)"),
N_("&Macintosh format (CR)")
};
QuickWidget quick_widgets[] = {
QUICK_BUTTON (6, 10, DLG_HEIGHT - 3, DLG_HEIGHT, N_("&Cancel"), B_CANCEL, NULL),
QUICK_BUTTON (2, 10, DLG_HEIGHT - 3, DLG_HEIGHT, N_("&OK"), B_ENTER, NULL),
QUICK_RADIO (5, DLG_WIDTH, DLG_HEIGHT - 8, DLG_HEIGHT, LB_NAMES, lb_names, (int *) &cur_lb),
QUICK_LABEL (3, DLG_WIDTH, DLG_HEIGHT - 9, DLG_HEIGHT, N_("Change line breaks to:")),
QUICK_INPUT (3, DLG_WIDTH, DLG_HEIGHT - 11, DLG_HEIGHT, filename, DLG_WIDTH - 6, 0,
"save-as", &filename_res),
QUICK_LABEL (3, DLG_WIDTH, DLG_HEIGHT - 12, DLG_HEIGHT, N_("Enter file name:")),
QUICK_END
};
QuickDialog Quick_options = {
DLG_WIDTH, DLG_HEIGHT, -1, -1,
N_("Save As"), "[Save File As]",
quick_widgets, NULL, NULL, FALSE
};
if (quick_dialog (&Quick_options) != B_CANCEL)
{
char *fname;
vfs_path_t *ret_vpath;
edit->lb = cur_lb;
fname = tilde_expand (filename_res);
g_free (filename_res);
ret_vpath = vfs_path_from_str (fname);
g_free (fname);
return ret_vpath;
}
g_free (filename);
return NULL;
#undef DLG_WIDTH
#undef DLG_HEIGHT
}
/* --------------------------------------------------------------------------------------------- */
/** returns TRUE on success */
static gboolean
edit_save_cmd (WEdit * edit)
{
int res, save_lock = 0;
if (!edit->locked && !edit->delete_file)
save_lock = lock_file (edit->filename_vpath);
res = edit_save_file (edit, edit->filename_vpath);
/* Maintain modify (not save) lock on failure */
if ((res > 0 && edit->locked) || save_lock)
edit->locked = unlock_file (edit->filename_vpath);
/* On failure try 'save as', it does locking on its own */
if (res == 0)
return edit_save_as_cmd (edit);
edit->force |= REDRAW_COMPLETELY;
if (res > 0)
{
edit->delete_file = 0;
edit->modified = 0;
}
return TRUE;
}
/* --------------------------------------------------------------------------------------------- */
/**
* Load file content
*
* @param h screen the owner of editor window
* @param vpath vfs file path
* @return TRUE if file content was successfully loaded, FALSE otherwise
*/
static inline gboolean
edit_load_file_from_filename (Dlg_head * h, const vfs_path_t * vpath)
{
return edit_add_window (h, h->y + 1, h->x, h->lines - 2, h->cols, vpath, 0);
}
/* --------------------------------------------------------------------------------------------- */
static void
edit_delete_column_of_text (WEdit * edit)
{
off_t p, q, r;
off_t m1, m2;
off_t n;
long b, c, d;
eval_marks (edit, &m1, &m2);
n = edit_move_forward (edit, m1, 0, m2) + 1;
c = (long) edit_move_forward3 (edit, edit_bol (edit, m1), 0, m1);
d = (long) edit_move_forward3 (edit, edit_bol (edit, m2), 0, m2);
b = max (min (c, d), min (edit->column1, edit->column2));
c = max (c, max (edit->column1, edit->column2));
while (n--)
{
r = edit_bol (edit, edit->curs1);
p = edit_move_forward3 (edit, r, b, 0);
q = edit_move_forward3 (edit, r, c, 0);
if (p < m1)
p = m1;
if (q > m2)
q = m2;
edit_cursor_move (edit, p - edit->curs1);
while (q > p)
{
/* delete line between margins */
if (edit_get_byte (edit, edit->curs1) != '\n')
edit_delete (edit, 1);
q--;
}
if (n)
/* move to next line except on the last delete */
edit_cursor_move (edit, edit_move_forward (edit, edit->curs1, 1, 0) - edit->curs1);
}
}
/* --------------------------------------------------------------------------------------------- */
/** if success return 0 */
static int
edit_block_delete (WEdit * edit)
{
off_t count;
off_t start_mark, end_mark;
int curs_pos;
long curs_line, c1, c2;
if (eval_marks (edit, &start_mark, &end_mark))
return 0;
if (edit->column_highlight && edit->mark2 < 0)
edit_mark_cmd (edit, FALSE);
if ((end_mark - start_mark) > option_max_undo / 2)
{
/* Warning message with a query to continue or cancel the operation */
if (edit_query_dialog2
(_("Warning"),
_
("Block is large, you may not be able to undo this action"),
_("C&ontinue"), _("&Cancel")))
{
return 1;
}
}
c1 = min (edit->column1, edit->column2);
c2 = max (edit->column1, edit->column2);
edit->column1 = c1;
edit->column2 = c2;
edit_push_markers (edit);
curs_line = edit->curs_line;
curs_pos = edit->curs_col + edit->over_col;
/* move cursor to start of selection */
edit_cursor_move (edit, start_mark - edit->curs1);
edit_scroll_screen_over_cursor (edit);
count = start_mark;
if (start_mark < end_mark)
{
if (edit->column_highlight)
{
long line_width;
if (edit->mark2 < 0)
edit_mark_cmd (edit, FALSE);
edit_delete_column_of_text (edit);
/* move cursor to the saved position */
edit_move_to_line (edit, curs_line);
/* calculate line width and cursor position before cut */
line_width = (long) edit_move_forward3 (edit, edit_bol (edit, edit->curs1), 0,
edit_eol (edit, edit->curs1));
if (option_cursor_beyond_eol && curs_pos > line_width)
edit->over_col = curs_pos - line_width;
}
else
{
while (count < end_mark)
{
edit_delete (edit, 1);
count++;
}
}
}
edit_set_markers (edit, 0, 0, 0, 0);
edit->force |= REDRAW_PAGE;
return 0;
}
/* --------------------------------------------------------------------------------------------- */
/**
* Get EOL symbol for searching.
*
* @param edit editor object
* @return EOL symbol
*/
static inline char
edit_search_get_current_end_line_char (const WEdit * edit)
{
switch (edit->lb)
{
case LB_MAC:
return '\r';
default:
return '\n';
}
}
/* --------------------------------------------------------------------------------------------- */
/**
* Checking if search condition have BOL(^) or EOL ($) regexp special characters.
*
* @param search search object
* @return result of checks.
*/
static edit_search_line_t
edit_get_search_line_type (mc_search_t * search)
{
edit_search_line_t search_line_type = 0;
if (search->search_type != MC_SEARCH_T_REGEX)
return search_line_type;
if (*search->original == '^')
search_line_type |= AT_START_LINE;
if (search->original[search->original_len - 1] == '$')
search_line_type |= AT_END_LINE;
return search_line_type;
}
/* --------------------------------------------------------------------------------------------- */
/**
* Calculating the start position of next line.
*
* @param edit editor object
* @param current_pos current position
* @param max_pos max position
* @param end_string_symbol end of line symbol
* @return start position of next line
*/
static off_t
edit_calculate_start_of_next_line (WEdit * edit, off_t current_pos, off_t max_pos,
char end_string_symbol)
{
off_t i;
for (i = current_pos; i < max_pos; i++)
{
current_pos++;
if (edit_get_byte (edit, i) == end_string_symbol)
break;
}
return current_pos;
}
/* --------------------------------------------------------------------------------------------- */
/**
* Calculating the end position of previous line.
*
* @param edit editor object
* @param current_pos current position
* @param end_string_symbol end of line symbol
* @return end position of previous line
*/
static off_t
edit_calculate_end_of_previous_line (WEdit * edit, off_t current_pos, char end_string_symbol)
{
off_t i;
for (i = current_pos - 1; i >= 0; i--)
if (edit_get_byte (edit, i) == end_string_symbol)
break;
return i;
}
/* --------------------------------------------------------------------------------------------- */
/**
* Calculating the start position of previous line.
*
* @param edit editor object
* @param current_pos current position
* @param end_string_symbol end of line symbol
* @return start position of previous line
*/
static inline off_t
edit_calculate_start_of_previous_line (WEdit * edit, off_t current_pos, char end_string_symbol)
{
current_pos = edit_calculate_end_of_previous_line (edit, current_pos, end_string_symbol);
current_pos = edit_calculate_end_of_previous_line (edit, current_pos, end_string_symbol);
return (current_pos + 1);
}
/* --------------------------------------------------------------------------------------------- */
/**
* Calculating the start position of current line.
*
* @param edit editor object
* @param current_pos current position
* @param end_string_symbol end of line symbol
* @return start position of current line
*/
static inline off_t
edit_calculate_start_of_current_line (WEdit * edit, off_t current_pos, char end_string_symbol)
{
current_pos = edit_calculate_end_of_previous_line (edit, current_pos, end_string_symbol);
return (current_pos + 1);
}
/* --------------------------------------------------------------------------------------------- */
/**
* Fixing (if needed) search start position if 'only in selection' option present.
*
* @param edit editor object
*/
static void
edit_search_fix_search_start_if_selection (WEdit * edit)
{
off_t start_mark = 0;
off_t end_mark = 0;
if (!edit_search_options.only_in_selection)
return;
if (eval_marks (edit, &start_mark, &end_mark) != 0)
return;
if (edit_search_options.backwards)
{
if (edit->search_start > end_mark || edit->search_start <= start_mark)
edit->search_start = end_mark;
}
else
{
if (edit->search_start < start_mark || edit->search_start >= end_mark)
edit->search_start = start_mark;
}
}
/* --------------------------------------------------------------------------------------------- */
static gboolean
editcmd_find (WEdit * edit, gsize * len)
{
off_t search_start = edit->search_start;
off_t search_end;
off_t start_mark = 0;
off_t end_mark = edit->last_byte;
int mark_res = 0;
char end_string_symbol;
end_string_symbol = edit_search_get_current_end_line_char (edit);
/* prepare for search */
if (edit_search_options.only_in_selection)
{
mark_res = eval_marks (edit, &start_mark, &end_mark);
if (mark_res != 0)
{
edit->search->error = MC_SEARCH_E_NOTFOUND;
edit->search->error_str = g_strdup (_("Search string not found"));
return FALSE;
}
/* fix the start and the end of search block positions */
if ((edit->search_line_type & AT_START_LINE) != 0
&& (start_mark != 0 || edit_get_byte (edit, start_mark - 1) != end_string_symbol))
{
start_mark =
edit_calculate_start_of_next_line (edit, start_mark, edit->last_byte,
end_string_symbol);
}
if ((edit->search_line_type & AT_END_LINE) != 0
&& (end_mark - 1 != edit->last_byte
|| edit_get_byte (edit, end_mark) != end_string_symbol))
{
end_mark = edit_calculate_end_of_previous_line (edit, end_mark, end_string_symbol);
}
if (start_mark >= end_mark)
{
edit->search->error = MC_SEARCH_E_NOTFOUND;
edit->search->error_str = g_strdup (_("Search string not found"));
return FALSE;
}
}
else
{
if (edit_search_options.backwards)
end_mark = max (1, edit->curs1) - 1;
}
/* search */
if (edit_search_options.backwards)
{
/* backward search */
search_end = end_mark;
if ((edit->search_line_type & AT_START_LINE) != 0)
search_start =
edit_calculate_start_of_current_line (edit, search_start, end_string_symbol);
while ((int) search_start >= start_mark)
{
if (search_end > (off_t) (search_start + edit->search->original_len)
&& mc_search_is_fixed_search_str (edit->search))
{
search_end = search_start + edit->search->original_len;
}
if (mc_search_run (edit->search, (void *) edit, search_start, search_end, len)
&& edit->search->normal_offset == search_start)
{
return TRUE;
}
if ((edit->search_line_type & AT_START_LINE) != 0)
search_start =
edit_calculate_start_of_previous_line (edit, search_start, end_string_symbol);
else
search_start--;
}
edit->search->error_str = g_strdup (_("Search string not found"));
}
else
{
/* forward search */
if ((edit->search_line_type & AT_START_LINE) != 0 && search_start != start_mark)
search_start =
edit_calculate_start_of_next_line (edit, search_start, end_mark, end_string_symbol);
return mc_search_run (edit->search, (void *) edit, search_start, end_mark, len);
}
return FALSE;
}
/* --------------------------------------------------------------------------------------------- */
static char *
edit_replace_cmd__conv_to_display (char *str)
{
#ifdef HAVE_CHARSET
GString *tmp;
tmp = str_convert_to_display (str);
if (tmp != NULL)
{
if (tmp->len != 0)
return g_string_free (tmp, FALSE);
g_string_free (tmp, TRUE);
}
#endif
return g_strdup (str);
}
/* --------------------------------------------------------------------------------------------- */
static char *
edit_replace_cmd__conv_to_input (char *str)
{
#ifdef HAVE_CHARSET
GString *tmp;
tmp = str_convert_to_input (str);
if (tmp != NULL)
{
if (tmp->len != 0)
return g_string_free (tmp, FALSE);
g_string_free (tmp, TRUE);
}
#endif
return g_strdup (str);
}
/* --------------------------------------------------------------------------------------------- */
static void
edit_do_search (WEdit * edit)
{
gsize len = 0;
if (edit->search == NULL)
edit->search_start = edit->curs1;
edit_push_undo_action (edit, KEY_PRESS + edit->start_display);
if (search_create_bookmark)
{
int found = 0, books = 0;
long l = 0, l_last = -1;
long q = 0;
search_create_bookmark = FALSE;
book_mark_flush (edit, -1);
while (mc_search_run (edit->search, (void *) edit, q, edit->last_byte, &len))
{
if (found == 0)
edit->search_start = edit->search->normal_offset;
found++;
l += edit_count_lines (edit, q, edit->search->normal_offset);
if (l != l_last)
{
book_mark_insert (edit, l, BOOK_MARK_FOUND_COLOR);
books++;
}
l_last = l;
q = edit->search->normal_offset + 1;
}
if (found == 0)
edit_error_dialog (_("Search"), _("Search string not found"));
else
edit_cursor_move (edit, edit->search_start - edit->curs1);
}
else
{
if (edit->found_len != 0 && edit->search_start == edit->found_start + 1
&& edit_search_options.backwards)
edit->search_start--;
if (edit->found_len != 0 && edit->search_start == edit->found_start - 1
&& !edit_search_options.backwards)
edit->search_start++;
if (editcmd_find (edit, &len))
{
edit->found_start = edit->search_start = edit->search->normal_offset;
edit->found_len = len;
edit->over_col = 0;
edit_cursor_move (edit, edit->search_start - edit->curs1);
edit_scroll_screen_over_cursor (edit);
if (edit_search_options.backwards)
edit->search_start--;
else
edit->search_start++;
}
else
{
edit->search_start = edit->curs1;
if (edit->search->error_str != NULL)
edit_error_dialog (_("Search"), edit->search->error_str);
}
}
edit->force |= REDRAW_COMPLETELY;
edit_scroll_screen_over_cursor (edit);
}
/* --------------------------------------------------------------------------------------------- */
static void
edit_search (WEdit * edit)
{
if (editcmd_dialog_search_show (edit))
{
edit->search_line_type = edit_get_search_line_type (edit->search);
edit_search_fix_search_start_if_selection (edit);
edit_do_search (edit);
}
}
/* --------------------------------------------------------------------------------------------- */
/** Return a null terminated length of text. Result must be g_free'd */
static unsigned char *
edit_get_block (WEdit * edit, off_t start, off_t finish, int *l)
{
unsigned char *s, *r;
r = s = g_malloc0 (finish - start + 1);
if (edit->column_highlight)
{
*l = 0;
/* copy from buffer, excluding chars that are out of the column 'margins' */
while (start < finish)
{
int c;
off_t x;
x = edit_move_forward3 (edit, edit_bol (edit, start), 0, start);
c = edit_get_byte (edit, start);
if ((x >= edit->column1 && x < edit->column2)
|| (x >= edit->column2 && x < edit->column1) || c == '\n')
{
*s++ = c;
(*l)++;
}
start++;
}
}
else
{
*l = finish - start;
while (start < finish)
*s++ = edit_get_byte (edit, start++);
}
*s = 0;
return r;
}
/* --------------------------------------------------------------------------------------------- */
/** copies a block to clipboard file */
static gboolean
edit_save_block_to_clip_file (WEdit * edit, off_t start, off_t finish)
{
gboolean ret;
gchar *tmp;
tmp = mc_config_get_full_path (EDIT_CLIP_FILE);
ret = edit_save_block (edit, tmp, start, finish);
g_free (tmp);
return ret;
}
/* --------------------------------------------------------------------------------------------- */
static void
pipe_mail (WEdit * edit, char *to, char *subject, char *cc)
{
FILE *p = 0;
char *s;
to = name_quote (to, 0);
subject = name_quote (subject, 0);
cc = name_quote (cc, 0);
s = g_strconcat ("mail -s ", subject, *cc ? " -c " : "", cc, " ", to, (char *) NULL);
g_free (to);
g_free (subject);
g_free (cc);
if (s)
{
p = popen (s, "w");
g_free (s);
}
if (p)
{
off_t i;
for (i = 0; i < edit->last_byte; i++)
fputc (edit_get_byte (edit, i), p);
pclose (p);
}
}
/* --------------------------------------------------------------------------------------------- */
/** find first character of current word */
static gboolean
edit_find_word_start (WEdit * edit, off_t * word_start, gsize * word_len)
{
int c, last;
gsize i;
/* return if at begin of file */
if (edit->curs1 <= 0)
return FALSE;
c = edit_get_byte (edit, edit->curs1 - 1);
/* return if not at end or in word */
if (is_break_char (c))
return FALSE;
/* search start of word to be completed */
for (i = 2;; i++)
{
/* return if at begin of file */
if ((gsize) edit->curs1 < i)
return FALSE;
last = c;
c = edit_get_byte (edit, edit->curs1 - i);
if (is_break_char (c))
{
/* return if word starts with digit */
if (isdigit (last))
return FALSE;
*word_start = edit->curs1 - (i - 1); /* start found */
*word_len = i - 1;
break;
}
}
/* success */
return TRUE;
}
/* --------------------------------------------------------------------------------------------- */
/**
* Get current word under cursor
*
* @param edit editor object
* @param srch mc_search object
* @param word_start start word position
*
* @return newly allocated string or NULL if no any words under cursor
*/
static char *
edit_collect_completions_get_current_word (WEdit * edit, mc_search_t * srch, off_t word_start)
{
gsize len = 0;
off_t i;
GString *temp;
if (!mc_search_run (srch, (void *) edit, word_start, edit->last_byte, &len))
return NULL;
temp = g_string_sized_new (len);
for (i = 0; i < (off_t) len; i++)
{
int chr;
chr = edit_get_byte (edit, word_start + i);
if (!isspace (chr))
g_string_append_c (temp, chr);
}
return g_string_free (temp, temp->len == 0);
}
/* --------------------------------------------------------------------------------------------- */
/** collect the possible completions */
static gsize
edit_collect_completions (WEdit * edit, off_t word_start, gsize word_len,
char *match_expr, struct selection *compl, gsize * num)
{
gsize len = 0;
gsize max_len = 0;
gsize i;
int skip;
GString *temp;
mc_search_t *srch;
off_t last_byte, start = -1;
char *current_word;
srch = mc_search_new (match_expr, -1);
if (srch == NULL)
return 0;
if (mc_config_get_bool
(mc_main_config, CONFIG_APP_SECTION, "editor_wordcompletion_collect_entire_file", 0))
{
last_byte = edit->last_byte;
}
else
{
last_byte = word_start;
}
srch->search_type = MC_SEARCH_T_REGEX;
srch->is_case_sensitive = TRUE;
srch->search_fn = edit_search_cmd_callback;
current_word = edit_collect_completions_get_current_word (edit, srch, word_start);
temp = g_string_new ("");
/* collect max MAX_WORD_COMPLETIONS completions */
while (mc_search_run (srch, (void *) edit, start + 1, last_byte, &len))
{
g_string_set_size (temp, 0);
start = srch->normal_offset;
/* add matched completion if not yet added */
for (i = 0; i < len; i++)
{
skip = edit_get_byte (edit, start + i);
if (isspace (skip))
continue;
/* skip current word */
if (start + (off_t) i == word_start)
break;
g_string_append_c (temp, skip);
}
if (temp->len == 0)
continue;
if (current_word != NULL && strcmp (current_word, temp->str) == 0)
continue;
skip = 0;
for (i = 0; i < *num; i++)
{
if (strncmp
((char *) &compl[i].text[word_len],
(char *) &temp->str[word_len], max (len, compl[i].len) - word_len) == 0)
{
struct selection this = compl[i];
for (++i; i < *num; i++)
{
compl[i - 1] = compl[i];
}
compl[*num - 1] = this;
skip = 1;
break; /* skip it, already added */
}
}
if (skip != 0)
continue;
if (*num == MAX_WORD_COMPLETIONS)
{
g_free (compl[0].text);
for (i = 1; i < *num; i++)
{
compl[i - 1] = compl[i];
}
(*num)--;
}
#ifdef HAVE_CHARSET
{
GString *recoded;
recoded = str_convert_to_display (temp->str);
if (recoded && recoded->len)
g_string_assign (temp, recoded->str);
g_string_free (recoded, TRUE);
}
#endif
compl[*num].text = g_strndup (temp->str, temp->len);
compl[*num].len = temp->len;
(*num)++;
start += len;
/* note the maximal length needed for the completion dialog */
if (len > max_len)
max_len = len;
}
mc_search_free (srch);
g_string_free (temp, TRUE);
g_free (current_word);
return max_len;
}
/* --------------------------------------------------------------------------------------------- */
static void
edit_insert_column_of_text (WEdit * edit, unsigned char *data, int size, int width,
off_t * start_pos, off_t * end_pos, int *col1, int *col2)
{
off_t cursor;
long i, col;
cursor = edit->curs1;
col = edit_get_col (edit);
for (i = 0; i < size; i++)
{
if (data[i] != '\n')
edit_insert (edit, data[i]);
else
{ /* fill in and move to next line */
int l;
off_t p;
if (edit_get_byte (edit, edit->curs1) != '\n')
{
l = width - (edit_get_col (edit) - col);
while (l > 0)
{
edit_insert (edit, ' ');
l -= space_width;
}
}
for (p = edit->curs1;; p++)
{
if (p == edit->last_byte)
{
edit_cursor_move (edit, edit->last_byte - edit->curs1);
edit_insert_ahead (edit, '\n');
p++;
break;
}
if (edit_get_byte (edit, p) == '\n')
{
p++;
break;
}
}
edit_cursor_move (edit, edit_move_forward3 (edit, p, col, 0) - edit->curs1);
l = col - edit_get_col (edit);
while (l >= space_width)
{
edit_insert (edit, ' ');
l -= space_width;
}
}
}
*col1 = col;
*col2 = col + width;
*start_pos = cursor;
*end_pos = edit->curs1;
edit_cursor_move (edit, cursor - edit->curs1);
}
/* --------------------------------------------------------------------------------------------- */
static int
edit_macro_comparator (gconstpointer * macro1, gconstpointer * macro2)
{
const macros_t *m1 = (const macros_t *) macro1;
const macros_t *m2 = (const macros_t *) macro2;
return m1->hotkey - m2->hotkey;
}
/* --------------------------------------------------------------------------------------------- */
static void
edit_macro_sort_by_hotkey (void)
{
if (macros_list != NULL && macros_list->len != 0)
g_array_sort (macros_list, (GCompareFunc) edit_macro_comparator);
}
/* --------------------------------------------------------------------------------------------- */
static gboolean
edit_get_macro (WEdit * edit, int hotkey, const macros_t ** macros, guint * indx)
{
const macros_t *array_start = &g_array_index (macros_list, struct macros_t, 0);
macros_t *result;
macros_t search_macro;
(void) edit;
search_macro.hotkey = hotkey;
result = bsearch (&search_macro, macros_list->data, macros_list->len,
sizeof (macros_t), (GCompareFunc) edit_macro_comparator);
if (result != NULL && result->macro != NULL)
{
*indx = (result - array_start);
*macros = result;
return TRUE;
}
*indx = 0;
return FALSE;
}
/* --------------------------------------------------------------------------------------------- */
/** returns FALSE on error */
static gboolean
edit_delete_macro (WEdit * edit, int hotkey)
{
mc_config_t *macros_config = NULL;
const char *section_name = "editor";
gchar *macros_fname;
guint indx;
char *skeyname;
const macros_t *macros = NULL;
/* clear array of actions for current hotkey */
while (edit_get_macro (edit, hotkey, &macros, &indx))
{
if (macros->macro != NULL)
g_array_free (macros->macro, TRUE);
macros = NULL;
g_array_remove_index (macros_list, indx);
edit_macro_sort_by_hotkey ();
}
macros_fname = mc_config_get_full_path (MC_MACRO_FILE);
macros_config = mc_config_init (macros_fname, FALSE);
g_free (macros_fname);
if (macros_config == NULL)
return FALSE;
skeyname = lookup_key_by_code (hotkey);
while (mc_config_del_key (macros_config, section_name, skeyname))
;
g_free (skeyname);
mc_config_save_file (macros_config, NULL);
mc_config_deinit (macros_config);
return TRUE;
}
/* --------------------------------------------------------------------------------------------- */
/**
* Callback for the iteration of objects in the 'editors' array.
* Toggle syntax highlighting in editor object.
*
* @param data probably WEdit object
* @param user_data unused
*/
static void
edit_syntax_onoff_cb (void *data, void *user_data)
{
(void) user_data;
if (edit_widget_is_editor ((const Widget *) data))
{
WEdit *edit = (WEdit *) data;
if (option_syntax_highlighting)
edit_load_syntax (edit, NULL, edit->syntax_type);
edit->force |= REDRAW_PAGE;
}
}
/* --------------------------------------------------------------------------------------------- */
/**
* Callback for the iteration of objects in the 'editors' array.
* Redraw editor object.
*
* @param data probably WEdit object
* @param user_data unused
*/
static void
edit_redraw_page_cb (void *data, void *user_data)
{
(void) user_data;
if (edit_widget_is_editor ((const Widget *) data))
((WEdit *) data)->force |= REDRAW_PAGE;
}
/* --------------------------------------------------------------------------------------------- */
/*** public functions ****************************************************************************/
/* --------------------------------------------------------------------------------------------- */
void
edit_refresh_cmd (void)
{
clr_scr ();
repaint_screen ();
tty_keypad (TRUE);
}
/* --------------------------------------------------------------------------------------------- */
/**
* Toggle syntax highlighting in all editor windows.
*
* @param h root widget for all windows
*/
void
edit_syntax_onoff_cmd (Dlg_head * h)
{
option_syntax_highlighting = !option_syntax_highlighting;
g_list_foreach (h->widgets, edit_syntax_onoff_cb, NULL);
dlg_redraw (h);
}
/* --------------------------------------------------------------------------------------------- */
/**
* Toggle tabs showing in all editor windows.
*
* @param h root widget for all windows
*/
void
edit_show_tabs_tws_cmd (Dlg_head * h)
{
enable_show_tabs_tws = !enable_show_tabs_tws;
g_list_foreach (h->widgets, edit_redraw_page_cb, NULL);
dlg_redraw (h);
}
/* --------------------------------------------------------------------------------------------- */
/**
* Toggle right margin showing in all editor windows.
*
* @param h root widget for all windows
*/
void
edit_show_margin_cmd (Dlg_head * h)
{
show_right_margin = !show_right_margin;
g_list_foreach (h->widgets, edit_redraw_page_cb, NULL);
dlg_redraw (h);
}
/* --------------------------------------------------------------------------------------------- */
/**
* Toggle line numbers showing in all editor windows.
*
* @param h root widget for all windows
*/
void
edit_show_numbers_cmd (Dlg_head * h)
{
option_line_state = !option_line_state;
option_line_state_width = option_line_state ? LINE_STATE_WIDTH : 0;
g_list_foreach (h->widgets, edit_redraw_page_cb, NULL);
dlg_redraw (h);
}
/* --------------------------------------------------------------------------------------------- */
void
edit_save_mode_cmd (void)
{
/* diaog sizes */
const int DLG_X = 38;
const int DLG_Y = 13;
char *str_result;
const char *str[] = {
N_("&Quick save"),
N_("&Safe save"),
N_("&Do backups with following extension:")
};
QuickWidget widgets[] = {
/* 0 */
QUICK_BUTTON (18, DLG_X, DLG_Y - 3, DLG_Y, N_("&Cancel"), B_CANCEL, NULL),
/* 1 */
QUICK_BUTTON (6, DLG_X, DLG_Y - 3, DLG_Y, N_("&OK"), B_ENTER, NULL),
/* 2 */
QUICK_CHECKBOX (4, DLG_X, 8, DLG_Y, N_("Check &POSIX new line"), &option_check_nl_at_eof),
/* 3 */
QUICK_INPUT (8, DLG_X, 6, DLG_Y, option_backup_ext, 9, 0, "edit-backup-ext", &str_result),
/* 4 */
QUICK_RADIO (4, DLG_X, 3, DLG_Y, 3, str, &option_save_mode),
QUICK_END
};
QuickDialog dialog = {
DLG_X, DLG_Y, -1, -1, N_("Edit Save Mode"),
"[Edit Save Mode]", widgets, NULL, NULL, FALSE
};
size_t i;
size_t maxlen = 0;
size_t w0, w1, b_len, w3;
#ifdef HAVE_ASSERT_H
assert (option_backup_ext != NULL);
#endif
/* OK/Cancel buttons */
w0 = str_term_width1 (_(widgets[0].u.button.text)) + 3;
w1 = str_term_width1 (_(widgets[1].u.button.text)) + 5; /* default button */
b_len = w0 + w1 + 3;
maxlen = max (b_len, (size_t) str_term_width1 (_(dialog.title)) + 2);
w3 = 0;
for (i = 0; i < 3; i++)
{
#ifdef ENABLE_NLS
str[i] = _(str[i]);
#endif
w3 = max (w3, (size_t) str_term_width1 (str[i]));
}
maxlen = max (maxlen, w3 + 4);
dialog.xlen = min ((size_t) COLS, maxlen + 8);
widgets[3].u.input.len = w3;
widgets[1].relative_x = (dialog.xlen - b_len) / 2;
widgets[0].relative_x = widgets[1].relative_x + w0 + 2;
for (i = 0; i < sizeof (widgets) / sizeof (widgets[0]); i++)
widgets[i].x_divisions = dialog.xlen;
if (quick_dialog (&dialog) != B_CANCEL)
{
g_free (option_backup_ext);
option_backup_ext = str_result;
}
}
/* --------------------------------------------------------------------------------------------- */
void
edit_set_filename (WEdit * edit, const vfs_path_t * name_vpath)
{
vfs_path_free (edit->filename_vpath);
edit->filename_vpath = vfs_path_clone (name_vpath);
if (edit->dir_vpath == NULL)
edit->dir_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
}
/* --------------------------------------------------------------------------------------------- */
/* Here we want to warn the users of overwriting an existing file,
but only if they have made a change to the filename */
/* returns TRUE on success */
gboolean
edit_save_as_cmd (WEdit * edit)
{
/* This heads the 'Save As' dialog box */
vfs_path_t *exp_vpath;
int save_lock = 0;
int different_filename = 0;
if (!edit_check_newline (edit))
return FALSE;
exp_vpath = edit_get_save_file_as (edit);
edit_push_undo_action (edit, KEY_PRESS + edit->start_display);
if (exp_vpath != NULL)
{
if (vfs_path_len (exp_vpath) == 0)
goto ret;
else
{
int rv;
if (vfs_path_cmp (edit->filename_vpath, exp_vpath) != 0)
{
int file;
struct stat sb;
if (mc_stat (exp_vpath, &sb) == 0 && !S_ISREG (sb.st_mode))
{
edit_error_dialog (_("Save as"),
get_sys_error (_
("Cannot save: destination is not a regular file")));
goto ret;
}
different_filename = 1;
file = mc_open (exp_vpath, O_RDONLY | O_BINARY);
if (file != -1)
{
/* the file exists */
mc_close (file);
/* Overwrite the current file or cancel the operation */
if (edit_query_dialog2
(_("Warning"),
_("A file already exists with this name"), _("&Overwrite"), _("&Cancel")))
goto ret;
}
else
{
edit->stat1.st_mode |= S_IWUSR;
}
save_lock = lock_file (exp_vpath);
}
else
{
/* filenames equal, check if already locked */
if (!edit->locked && !edit->delete_file)
save_lock = lock_file (exp_vpath);
}
if (different_filename)
{
/*
* Allow user to write into saved (under another name) file
* even if original file had r/o user permissions.
*/
edit->stat1.st_mode |= S_IWRITE;
}
rv = edit_save_file (edit, exp_vpath);
switch (rv)
{
case 1:
/* Succesful, so unlock both files */
if (different_filename)
{
if (save_lock)
unlock_file (exp_vpath);
if (edit->locked)
edit->locked = unlock_file (edit->filename_vpath);
}
else
{
if (edit->locked || save_lock)
edit->locked = unlock_file (edit->filename_vpath);
}
edit_set_filename (edit, exp_vpath);
if (edit->lb != LB_ASIS)
edit_reload (edit, exp_vpath);
edit->modified = 0;
edit->delete_file = 0;
if (different_filename)
edit_load_syntax (edit, NULL, edit->syntax_type);
vfs_path_free (exp_vpath);
edit->force |= REDRAW_COMPLETELY;
return TRUE;
default:
edit_error_dialog (_("Save as"), get_sys_error (_("Cannot save file")));
/* fallthrough */
case -1:
/* Failed, so maintain modify (not save) lock */
if (save_lock)
unlock_file (exp_vpath);
break;
}
}
}
ret:
vfs_path_free (exp_vpath);
edit->force |= REDRAW_COMPLETELY;
return FALSE;
}
/* {{{ Macro stuff starts here */
/* --------------------------------------------------------------------------------------------- */
void
edit_delete_macro_cmd (WEdit * edit)
{
int hotkey;
hotkey = editcmd_dialog_raw_key_query (_("Delete macro"), _("Press macro hotkey:"), TRUE);
if (hotkey != 0 && !edit_delete_macro (edit, hotkey))
message (D_ERROR, _("Delete macro"), _("Macro not deleted"));
}
/* --------------------------------------------------------------------------------------------- */
/** returns FALSE on error */
gboolean
edit_execute_macro (WEdit * edit, int hotkey)
{
gboolean res = FALSE;
if (hotkey != 0)
{
const macros_t *macros;
guint indx;
if (edit_get_macro (edit, hotkey, &macros, &indx) &&
macros->macro != NULL && macros->macro->len != 0)
{
guint i;
edit->force |= REDRAW_PAGE;
for (i = 0; i < macros->macro->len; i++)
{
const macro_action_t *m_act;
m_act = &g_array_index (macros->macro, struct macro_action_t, i);
edit_execute_cmd (edit, m_act->action, m_act->ch);
res = TRUE;
}
}
}
return res;
}
/* --------------------------------------------------------------------------------------------- */
/** returns FALSE on error */
gboolean
edit_store_macro_cmd (WEdit * edit)
{
int i;
int hotkey;
GString *marcros_string;
mc_config_t *macros_config = NULL;
const char *section_name = "editor";
gchar *macros_fname;
GArray *macros; /* current macro */
int tmp_act;
gboolean have_macro = FALSE;
char *skeyname = NULL;
hotkey =
editcmd_dialog_raw_key_query (_("Save macro"), _("Press the macro's new hotkey:"), TRUE);
if (hotkey == ESC_CHAR)
return FALSE;
tmp_act = keybind_lookup_keymap_command (editor_map, hotkey);
/* return FALSE if try assign macro into restricted hotkeys */
if (tmp_act == CK_MacroStartRecord
|| tmp_act == CK_MacroStopRecord || tmp_act == CK_MacroStartStopRecord)
return FALSE;
edit_delete_macro (edit, hotkey);
macros_fname = mc_config_get_full_path (MC_MACRO_FILE);
macros_config = mc_config_init (macros_fname, FALSE);
g_free (macros_fname);
if (macros_config == NULL)
return FALSE;
edit_push_undo_action (edit, KEY_PRESS + edit->start_display);
marcros_string = g_string_sized_new (250);
macros = g_array_new (TRUE, FALSE, sizeof (macro_action_t));
skeyname = lookup_key_by_code (hotkey);
for (i = 0; i < macro_index; i++)
{
macro_action_t m_act;
const char *action_name;
action_name = keybind_lookup_actionname (record_macro_buf[i].action);
if (action_name == NULL)
break;
m_act.action = record_macro_buf[i].action;
m_act.ch = record_macro_buf[i].ch;
g_array_append_val (macros, m_act);
have_macro = TRUE;
g_string_append_printf (marcros_string, "%s:%i;", action_name,
(int) record_macro_buf[i].ch);
}
if (have_macro)
{
macros_t macro;
macro.hotkey = hotkey;
macro.macro = macros;
g_array_append_val (macros_list, macro);
mc_config_set_string (macros_config, section_name, skeyname, marcros_string->str);
}
else
mc_config_del_key (macros_config, section_name, skeyname);
g_free (skeyname);
edit_macro_sort_by_hotkey ();
g_string_free (marcros_string, TRUE);
mc_config_save_file (macros_config, NULL);
mc_config_deinit (macros_config);
return TRUE;
}
/* --------------------------------------------------------------------------------------------- */
gboolean
edit_repeat_macro_cmd (WEdit * edit)
{
int i, j;
char *f;
long count_repeat;
char *error = NULL;
f = input_dialog (_("Repeat last commands"), _("Repeat times:"), MC_HISTORY_EDIT_REPEAT, NULL);
if (f == NULL || *f == '\0')
{
g_free (f);
return FALSE;
}
count_repeat = strtol (f, &error, 0);
if (*error != '\0')
{
g_free (f);
return FALSE;
}
g_free (f);
edit_push_undo_action (edit, KEY_PRESS + edit->start_display);
edit->force |= REDRAW_PAGE;
for (j = 0; j < count_repeat; j++)
for (i = 0; i < macro_index; i++)
edit_execute_cmd (edit, record_macro_buf[i].action, record_macro_buf[i].ch);
edit_update_screen (edit);
return TRUE;
}
/* --------------------------------------------------------------------------------------------- */
/** return FALSE on error */
gboolean
edit_load_macro_cmd (WEdit * edit)
{
mc_config_t *macros_config = NULL;
gchar **profile_keys, **keys;
gchar **values, **curr_values;
gsize len, values_len;
const char *section_name = "editor";
gchar *macros_fname;
int hotkey;
(void) edit;
macros_fname = mc_config_get_full_path (MC_MACRO_FILE);
macros_config = mc_config_init (macros_fname, TRUE);
g_free (macros_fname);
if (macros_config == NULL)
return FALSE;
profile_keys = keys = mc_config_get_keys (macros_config, section_name, &len);
while (*profile_keys != NULL)
{
gboolean have_macro;
GArray *macros;
macros_t macro;
macros = g_array_new (TRUE, FALSE, sizeof (macro_action_t));
curr_values = values = mc_config_get_string_list (macros_config, section_name,
*profile_keys, &values_len);
hotkey = lookup_key (*profile_keys, NULL);
have_macro = FALSE;
while (*curr_values != NULL && *curr_values[0] != '\0')
{
char **macro_pair = NULL;
macro_pair = g_strsplit (*curr_values, ":", 2);
if (macro_pair != NULL)
{
macro_action_t m_act;
if (macro_pair[0] == NULL || macro_pair[0][0] == '\0')
m_act.action = 0;
else
{
m_act.action = keybind_lookup_action (macro_pair[0]);
g_free (macro_pair[0]);
macro_pair[0] = NULL;
}
if (macro_pair[1] == NULL || macro_pair[1][0] == '\0')
m_act.ch = -1;
else
{
m_act.ch = strtol (macro_pair[1], NULL, 0);
g_free (macro_pair[1]);
macro_pair[1] = NULL;
}
if (m_act.action != 0)
{
/* a shell command */
if ((m_act.action / CK_PipeBlock (0)) == 1)
{
m_act.action = CK_PipeBlock (0) + (m_act.ch > 0 ? m_act.ch : 0);
m_act.ch = -1;
}
g_array_append_val (macros, m_act);
have_macro = TRUE;
}
g_strfreev (macro_pair);
macro_pair = NULL;
}
curr_values++;
}
if (have_macro)
{
macro.hotkey = hotkey;
macro.macro = macros;
g_array_append_val (macros_list, macro);
}
profile_keys++;
g_strfreev (values);
}
g_strfreev (keys);
mc_config_deinit (macros_config);
edit_macro_sort_by_hotkey ();
return TRUE;
}
/* }}} Macro stuff end here */
/* --------------------------------------------------------------------------------------------- */
/** returns TRUE on success */
gboolean
edit_save_confirm_cmd (WEdit * edit)
{
char *f = NULL;
if (edit->filename_vpath == NULL)
return edit_save_as_cmd (edit);
if (!edit_check_newline (edit))
return FALSE;
if (edit_confirm_save)
{
char *filename;
gboolean ok;
filename = vfs_path_to_str (edit->filename_vpath);
f = g_strdup_printf (_("Confirm save file: \"%s\""), filename);
g_free (filename);
ok = (edit_query_dialog2 (_("Save file"), f, _("&Save"), _("&Cancel")) == 0);
g_free (f);
if (!ok)
return FALSE;
}
return edit_save_cmd (edit);
}
/* --------------------------------------------------------------------------------------------- */
/**
* Ask file to edit and load it.
*
* @returns TRUE on success or cancel of ask.
*/
gboolean
edit_load_cmd (Dlg_head * h)
{
char *exp;
gboolean ret = TRUE; /* possible cancel */
exp = input_expand_dialog (_("Load"), _("Enter file name:"),
MC_HISTORY_EDIT_LOAD, INPUT_LAST_TEXT);
if (exp != NULL && *exp != '\0')
{
vfs_path_t *exp_vpath;
exp_vpath = vfs_path_from_str (exp);
ret = edit_load_file_from_filename (h, exp_vpath);
vfs_path_free (exp_vpath);
}
g_free (exp);
return ret;
}
/* --------------------------------------------------------------------------------------------- */
/**
* Load syntax file to edit.
*
* @returns TRUE on success
*/
gboolean
edit_load_syntax_file (Dlg_head * h)
{
vfs_path_t *extdir_vpath;
int dir = 0;
gboolean ret = FALSE;
if (geteuid () == 0)
dir = query_dialog (_("Syntax file edit"),
_("Which syntax file you want to edit?"), D_NORMAL, 2,
_("&User"), _("&System wide"));
extdir_vpath =
vfs_path_build_filename (mc_global.sysconfig_dir, "syntax", "Syntax", (char *) NULL);
if (!exist_file (vfs_path_get_last_path_str (extdir_vpath)))
{
vfs_path_free (extdir_vpath);
extdir_vpath =
vfs_path_build_filename (mc_global.share_data_dir, "syntax", "Syntax", (char *) NULL);
}
if (dir == 0)
{
vfs_path_t *user_syntax_file_vpath;
user_syntax_file_vpath = mc_config_get_full_vpath (EDIT_SYNTAX_FILE);
check_for_default (extdir_vpath, user_syntax_file_vpath);
ret = edit_load_file_from_filename (h, user_syntax_file_vpath);
vfs_path_free (user_syntax_file_vpath);
}
else if (dir == 1)
ret = edit_load_file_from_filename (h, extdir_vpath);
vfs_path_free (extdir_vpath);
return ret;
}
/* --------------------------------------------------------------------------------------------- */
/**
* Load menu file to edit.
*
* @returns TRUE on success
*/
gboolean
edit_load_menu_file (Dlg_head * h)
{
vfs_path_t *buffer_vpath;
vfs_path_t *menufile_vpath;
int dir;
gboolean ret;
dir = query_dialog (_("Menu edit"),
_("Which menu file do you want to edit?"), D_NORMAL,
geteuid () != 0 ? 2 : 3, _("&Local"), _("&User"), _("&System wide"));
menufile_vpath = vfs_path_build_filename (mc_global.sysconfig_dir, EDIT_GLOBAL_MENU, NULL);
if (!exist_file (vfs_path_get_last_path_str (menufile_vpath)))
{
vfs_path_free (menufile_vpath);
menufile_vpath = vfs_path_build_filename (mc_global.share_data_dir, EDIT_GLOBAL_MENU, NULL);
}
switch (dir)
{
case 0:
buffer_vpath = vfs_path_from_str (EDIT_LOCAL_MENU);
check_for_default (menufile_vpath, buffer_vpath);
chmod (vfs_path_get_last_path_str (buffer_vpath), 0600);
break;
case 1:
buffer_vpath = mc_config_get_full_vpath (EDIT_HOME_MENU);
check_for_default (menufile_vpath, buffer_vpath);
break;
case 2:
buffer_vpath = vfs_path_build_filename (mc_global.sysconfig_dir, EDIT_GLOBAL_MENU, NULL);
if (!exist_file (vfs_path_get_last_path_str (buffer_vpath)))
{
vfs_path_free (buffer_vpath);
buffer_vpath =
vfs_path_build_filename (mc_global.share_data_dir, EDIT_GLOBAL_MENU, NULL);
}
break;
default:
vfs_path_free (menufile_vpath);
return FALSE;
}
ret = edit_load_file_from_filename (h, buffer_vpath);
vfs_path_free (buffer_vpath);
vfs_path_free (menufile_vpath);
return ret;
}
/* --------------------------------------------------------------------------------------------- */
/**
* Close window with opened file.
*
* @returns TRUE if file was closed.
*/
gboolean
edit_close_cmd (WEdit * edit)
{
gboolean ret;
ret = (edit != NULL) && edit_ok_to_exit (edit);
if (ret)
{
Dlg_head *h = ((Widget *) edit)->owner;
if (edit->locked != 0)
unlock_file (edit->filename_vpath);
del_widget (edit);
if (edit_widget_is_editor ((Widget *) h->current->data))
edit = (WEdit *) h->current->data;
else
{
edit = find_editor (h);
if (edit != NULL)
dlg_set_top_widget (edit);
}
}
if (edit != NULL)
edit->force |= REDRAW_COMPLETELY;
return ret;
}
/* --------------------------------------------------------------------------------------------- */
/**
if mark2 is -1 then marking is from mark1 to the cursor.
Otherwise its between the markers. This handles this.
Returns 1 if no text is marked.
*/
int
eval_marks (WEdit * edit, off_t * start_mark, off_t * end_mark)
{
if (edit->mark1 != edit->mark2)
{
off_t start_bol, start_eol;
off_t end_bol, end_eol;
off_t diff1, diff2;
long col1, col2;
long end_mark_curs;
if (edit->end_mark_curs < 0)
end_mark_curs = edit->curs1;
else
end_mark_curs = edit->end_mark_curs;
if (edit->mark2 >= 0)
{
*start_mark = min (edit->mark1, edit->mark2);
*end_mark = max (edit->mark1, edit->mark2);
}
else
{
*start_mark = min (edit->mark1, end_mark_curs);
*end_mark = max (edit->mark1, end_mark_curs);
edit->column2 = edit->curs_col + edit->over_col;
}
if (edit->column_highlight
&& (((edit->mark1 > end_mark_curs) && (edit->column1 < edit->column2))
|| ((edit->mark1 < end_mark_curs) && (edit->column1 > edit->column2))))
{
start_bol = edit_bol (edit, *start_mark);
start_eol = edit_eol (edit, start_bol - 1) + 1;
end_bol = edit_bol (edit, *end_mark);
end_eol = edit_eol (edit, *end_mark);
col1 = min (edit->column1, edit->column2);
col2 = max (edit->column1, edit->column2);
diff1 = edit_move_forward3 (edit, start_bol, col2, 0) -
edit_move_forward3 (edit, start_bol, col1, 0);
diff2 = edit_move_forward3 (edit, end_bol, col2, 0) -
edit_move_forward3 (edit, end_bol, col1, 0);
*start_mark -= diff1;
*end_mark += diff2;
*start_mark = max (*start_mark, start_eol);
*end_mark = min (*end_mark, end_eol);
}
return 0;
}
else
{
*start_mark = *end_mark = 0;
edit->column2 = edit->column1 = 0;
return 1;
}
}
/* --------------------------------------------------------------------------------------------- */
void
edit_insert_over (WEdit * edit)
{
int i;
for (i = 0; i < edit->over_col; i++)
{
edit_insert (edit, ' ');
}
edit->over_col = 0;
}
/* --------------------------------------------------------------------------------------------- */
off_t
edit_insert_column_of_text_from_file (WEdit * edit, int file,
off_t * start_pos, off_t * end_pos, long *col1, long *col2)
{
off_t cursor;
int col;
off_t blocklen = -1, width = 0;
unsigned char *data;
cursor = edit->curs1;
col = edit_get_col (edit);
data = g_malloc0 (TEMP_BUF_LEN);
while ((blocklen = mc_read (file, (char *) data, TEMP_BUF_LEN)) > 0)
{
off_t i;
for (width = 0; width < blocklen; width++)
{
if (data[width] == '\n')
break;
}
for (i = 0; i < blocklen; i++)
{
if (data[i] == '\n')
{ /* fill in and move to next line */
long l;
off_t p;
if (edit_get_byte (edit, edit->curs1) != '\n')
{
l = width - (edit_get_col (edit) - col);
while (l > 0)
{
edit_insert (edit, ' ');
l -= space_width;
}
}
for (p = edit->curs1;; p++)
{
if (p == edit->last_byte)
{
edit_cursor_move (edit, edit->last_byte - edit->curs1);
edit_insert_ahead (edit, '\n');
p++;
break;
}
if (edit_get_byte (edit, p) == '\n')
{
p++;
break;
}
}
edit_cursor_move (edit, edit_move_forward3 (edit, p, col, 0) - edit->curs1);
l = col - edit_get_col (edit);
while (l >= space_width)
{
edit_insert (edit, ' ');
l -= space_width;
}
continue;
}
edit_insert (edit, data[i]);
}
}
*col1 = col;
*col2 = col + width;
*start_pos = cursor;
*end_pos = edit->curs1;
edit_cursor_move (edit, cursor - edit->curs1);
g_free (data);
return blocklen;
}
/* --------------------------------------------------------------------------------------------- */
void
edit_block_copy_cmd (WEdit * edit)
{
off_t start_mark, end_mark, current = edit->curs1;
long col_delta = 0;
off_t mark1, mark2;
int c1, c2;
int size;
unsigned char *copy_buf;
edit_update_curs_col (edit);
if (eval_marks (edit, &start_mark, &end_mark))
return;
copy_buf = edit_get_block (edit, start_mark, end_mark, &size);
/* all that gets pushed are deletes hence little space is used on the stack */
edit_push_markers (edit);
if (edit->column_highlight)
{
col_delta = abs (edit->column2 - edit->column1);
edit_insert_column_of_text (edit, copy_buf, size, col_delta, &mark1, &mark2, &c1, &c2);
}
else
{
while (size--)
edit_insert_ahead (edit, copy_buf[size]);
}
g_free (copy_buf);
edit_scroll_screen_over_cursor (edit);
if (edit->column_highlight)
edit_set_markers (edit, edit->curs1, mark2, c1, c2);
else if (start_mark < current && end_mark > current)
edit_set_markers (edit, start_mark, end_mark + end_mark - start_mark, 0, 0);
edit->force |= REDRAW_PAGE;
}
/* --------------------------------------------------------------------------------------------- */
void
edit_block_move_cmd (WEdit * edit)
{
off_t current;
unsigned char *copy_buf = NULL;
off_t start_mark, end_mark;
long line;
if (eval_marks (edit, &start_mark, &end_mark))
return;
line = edit->curs_line;
if (edit->mark2 < 0)
edit_mark_cmd (edit, FALSE);
edit_push_markers (edit);
if (edit->column_highlight)
{
off_t mark1, mark2;
int size;
int b_width = 0;
int c1, c2;
int x, x2;
c1 = min (edit->column1, edit->column2);
c2 = max (edit->column1, edit->column2);
b_width = (c2 - c1);
edit_update_curs_col (edit);
x = edit->curs_col;
x2 = x + edit->over_col;
/* do nothing when cursor inside first line of selected area */
if ((edit_eol (edit, edit->curs1) == edit_eol (edit, start_mark)) && (x2 > c1 && x2 <= c2))
return;
if (edit->curs1 > start_mark && edit->curs1 < edit_eol (edit, end_mark))
{
if (x > c2)
x -= b_width;
else if (x > c1 && x <= c2)
x = c1;
}
/* save current selection into buffer */
copy_buf = edit_get_block (edit, start_mark, end_mark, &size);
/* remove current selection */
edit_block_delete_cmd (edit);
edit->over_col = max (0, edit->over_col - b_width);
/* calculate the cursor pos after delete block */
current = edit_move_forward3 (edit, edit_bol (edit, edit->curs1), x, 0);
edit_cursor_move (edit, current - edit->curs1);
edit_scroll_screen_over_cursor (edit);
/* add TWS if need before block insertion */
if (option_cursor_beyond_eol && edit->over_col > 0)
edit_insert_over (edit);
edit_insert_column_of_text (edit, copy_buf, size, b_width, &mark1, &mark2, &c1, &c2);
edit_set_markers (edit, mark1, mark2, c1, c2);
}
else
{
off_t count;
current = edit->curs1;
copy_buf = g_malloc0 (end_mark - start_mark);
edit_cursor_move (edit, start_mark - edit->curs1);
edit_scroll_screen_over_cursor (edit);
count = start_mark;
while (count < end_mark)
{
copy_buf[end_mark - count - 1] = edit_delete (edit, 1);
count++;
}
edit_scroll_screen_over_cursor (edit);
edit_cursor_move (edit,
current - edit->curs1 -
(((current - edit->curs1) > 0) ? end_mark - start_mark : 0));
edit_scroll_screen_over_cursor (edit);
while (count-- > start_mark)
edit_insert_ahead (edit, copy_buf[end_mark - count - 1]);
edit_set_markers (edit, edit->curs1, edit->curs1 + end_mark - start_mark, 0, 0);
}
edit_scroll_screen_over_cursor (edit);
g_free (copy_buf);
edit->force |= REDRAW_PAGE;
}
/* --------------------------------------------------------------------------------------------- */
/** returns 1 if canceelled by user */
int
edit_block_delete_cmd (WEdit * edit)
{
off_t start_mark, end_mark;
if (eval_marks (edit, &start_mark, &end_mark))
{
edit_delete_line (edit);
return 0;
}
return edit_block_delete (edit);
}
/* --------------------------------------------------------------------------------------------- */
/** call with edit = 0 before shutdown to close memory leaks */
void
edit_replace_cmd (WEdit * edit, int again)
{
/* 1 = search string, 2 = replace with */
static char *saved1 = NULL; /* saved default[123] */
static char *saved2 = NULL;
char *input1 = NULL; /* user input from the dialog */
char *input2 = NULL;
GString *input2_str = NULL;
char *disp1 = NULL;
char *disp2 = NULL;
long times_replaced = 0;
gboolean once_found = FALSE;
if (!edit)
{
g_free (saved1), saved1 = NULL;
g_free (saved2), saved2 = NULL;
return;
}
edit->force |= REDRAW_COMPLETELY;
if (again && !saved1 && !saved2)
again = 0;
if (again)
{
input1 = g_strdup (saved1 ? saved1 : "");
input2 = g_strdup (saved2 ? saved2 : "");
}
else
{
char *tmp_inp1, *tmp_inp2;
disp1 = edit_replace_cmd__conv_to_display (saved1 ? saved1 : (char *) "");
disp2 = edit_replace_cmd__conv_to_display (saved2 ? saved2 : (char *) "");
edit_push_undo_action (edit, KEY_PRESS + edit->start_display);
editcmd_dialog_replace_show (edit, disp1, disp2, &input1, &input2);
g_free (disp1);
g_free (disp2);
if (input1 == NULL || *input1 == '\0')
{
edit->force = REDRAW_COMPLETELY;
goto cleanup;
}
tmp_inp1 = input1;
tmp_inp2 = input2;
input1 = edit_replace_cmd__conv_to_input (input1);
input2 = edit_replace_cmd__conv_to_input (input2);
g_free (tmp_inp1);
g_free (tmp_inp2);
g_free (saved1), saved1 = g_strdup (input1);
g_free (saved2), saved2 = g_strdup (input2);
mc_search_free (edit->search);
edit->search = NULL;
}
input2_str = g_string_new (input2);
if (!edit->search)
{
edit->search = mc_search_new (input1, -1);
if (edit->search == NULL)
{
edit->search_start = edit->curs1;
goto cleanup;
}
edit->search->search_type = edit_search_options.type;
edit->search->is_all_charsets = edit_search_options.all_codepages;
edit->search->is_case_sensitive = edit_search_options.case_sens;
edit->search->whole_words = edit_search_options.whole_words;
edit->search->search_fn = edit_search_cmd_callback;
edit->search_line_type = edit_get_search_line_type (edit->search);
edit_search_fix_search_start_if_selection (edit);
}
if (edit->found_len && edit->search_start == edit->found_start + 1
&& edit_search_options.backwards)
edit->search_start--;
if (edit->found_len && edit->search_start == edit->found_start - 1
&& !edit_search_options.backwards)
edit->search_start++;
do
{
gsize len = 0;
if (!editcmd_find (edit, &len))
{
if (!(edit->search->error == MC_SEARCH_E_OK ||
(once_found && edit->search->error == MC_SEARCH_E_NOTFOUND)))
{
edit_error_dialog (_("Search"), edit->search->error_str);
}
break;
}
once_found = TRUE;
edit->search_start = edit->search->normal_offset;
/*returns negative on not found or error in pattern */
if ((edit->search_start >= 0) && (edit->search_start < edit->last_byte))
{
gsize i;
GString *repl_str;
edit->found_start = edit->search_start;
i = edit->found_len = len;
edit_cursor_move (edit, edit->search_start - edit->curs1);
edit_scroll_screen_over_cursor (edit);
if (edit->replace_mode == 0)
{
long l;
int prompt;
l = (long) (edit->curs_row - edit->widget.lines / 3);
if (l > 0)
edit_scroll_downward (edit, l);
if (l < 0)
edit_scroll_upward (edit, -l);
edit_scroll_screen_over_cursor (edit);
edit->force |= REDRAW_PAGE;
edit_render_keypress (edit);
/*so that undo stops at each query */
edit_push_key_press (edit);
/* and prompt 2/3 down */
disp1 = edit_replace_cmd__conv_to_display (saved1);
disp2 = edit_replace_cmd__conv_to_display (saved2);
prompt = editcmd_dialog_replace_prompt_show (edit, disp1, disp2, -1, -1);
g_free (disp1);
g_free (disp2);
if (prompt == B_REPLACE_ALL)
edit->replace_mode = 1;
else if (prompt == B_SKIP_REPLACE)
{
if (edit_search_options.backwards)
edit->search_start--;
else
edit->search_start++;
continue; /* loop */
}
else if (prompt == B_CANCEL)
{
edit->replace_mode = -1;
break; /* loop */
}
}
repl_str = mc_search_prepare_replace_str (edit->search, input2_str);
if (edit->search->error != MC_SEARCH_E_OK)
{
edit_error_dialog (_("Replace"), edit->search->error_str);
g_string_free (repl_str, TRUE);
break;
}
/* delete then insert new */
for (i = 0; i < len; i++)
edit_delete (edit, 1);
for (i = 0; i < repl_str->len; i++)
edit_insert (edit, repl_str->str[i]);
edit->found_len = repl_str->len;
g_string_free (repl_str, TRUE);
times_replaced++;
/* so that we don't find the same string again */
if (edit_search_options.backwards)
{
edit->search_start--;
}
else
{
edit->search_start += edit->found_len + (len == 0 ? 1 : 0);
if (edit->search_start >= edit->last_byte)
break;
}
edit_scroll_screen_over_cursor (edit);
}
else
{
/* try and find from right here for next search */
edit->search_start = edit->curs1;
edit_update_curs_col (edit);
edit->force |= REDRAW_PAGE;
edit_render_keypress (edit);
if (times_replaced == 0)
query_dialog (_("Replace"), _("Search string not found"), D_NORMAL, 1, _("&OK"));
break;
}
}
while (edit->replace_mode >= 0);
edit_scroll_screen_over_cursor (edit);
edit->force |= REDRAW_COMPLETELY;
edit_render_keypress (edit);
if ((edit->replace_mode == 1) && (times_replaced != 0))
message (D_NORMAL, _("Replace"), _("%ld replacements made"), times_replaced);
cleanup:
g_free (input1);
g_free (input2);
if (input2_str != NULL)
g_string_free (input2_str, TRUE);
}
/* --------------------------------------------------------------------------------------------- */
mc_search_cbret_t
edit_search_cmd_callback (const void *user_data, gsize char_offset, int *current_char)
{
*current_char = edit_get_byte ((WEdit *) user_data, (off_t) char_offset);
return MC_SEARCH_CB_OK;
}
/* --------------------------------------------------------------------------------------------- */
void
edit_search_cmd (WEdit * edit, gboolean again)
{
if (edit == NULL)
return;
if (!again)
edit_search (edit);
else if (edit->last_search_string != NULL)
edit_do_search (edit);
else
{
/* find last search string in history */
GList *history;
history = history_get (MC_HISTORY_SHARED_SEARCH);
if (history != NULL && history->data != NULL)
{
edit->last_search_string = (char *) history->data;
history->data = NULL;
history = g_list_first (history);
g_list_foreach (history, (GFunc) g_free, NULL);
g_list_free (history);
edit->search = mc_search_new (edit->last_search_string, -1);
if (edit->search == NULL)
{
/* if not... then ask for an expression */
g_free (edit->last_search_string);
edit->last_search_string = NULL;
edit_search (edit);
}
else
{
edit->search->search_type = edit_search_options.type;
edit->search->is_all_charsets = edit_search_options.all_codepages;
edit->search->is_case_sensitive = edit_search_options.case_sens;
edit->search->whole_words = edit_search_options.whole_words;
edit->search->search_fn = edit_search_cmd_callback;
edit->search_line_type = edit_get_search_line_type (edit->search);
edit_do_search (edit);
}
}
else
{
/* if not... then ask for an expression */
g_free (edit->last_search_string);
edit->last_search_string = NULL;
edit_search (edit);
}
}
}
/* --------------------------------------------------------------------------------------------- */
/**
* Check if it's OK to close the file. If there are unsaved changes, ask user.
*
* @returns TRUE if it's OK to exit, FALSE to continue editing.
*/
gboolean
edit_ok_to_exit (WEdit * edit)
{
char *fname = (char *) N_("[NoName]");
char *msg;
int act;
if (!edit->modified)
return TRUE;
if (edit->filename_vpath != NULL)
fname = vfs_path_to_str (edit->filename_vpath);
#ifdef ENABLE_NLS
else
fname = g_strdup (_(fname));
#else
else
fname = g_strdup (fname);
#endif
if (!mc_global.midnight_shutdown)
{
if (!edit_check_newline (edit))
{
g_free (fname);
return FALSE;
}
query_set_sel (2);
msg = g_strdup_printf (_("File %s was modified.\nSave before close?"), fname);
act = edit_query_dialog3 (_("Close file"), msg, _("&Yes"), _("&No"), _("&Cancel"));
}
else
{
msg = g_strdup_printf (_("Midnight Commander is being shut down.\nSave modified file %s?"),
fname);
act = edit_query_dialog2 (_("Quit"), msg, _("&Yes"), _("&No"));
/* Esc is No */
if (act == -1)
act = 1;
}
g_free (msg);
g_free (fname);
switch (act)
{
case 0: /* Yes */
edit_push_markers (edit);
edit_set_markers (edit, 0, 0, 0, 0);
if (!edit_save_cmd (edit) || mc_global.midnight_shutdown)
return mc_global.midnight_shutdown;
break;
case 1: /* No */
break;
case 2: /* Cancel quit */
case -1: /* Esc */
return FALSE;
}
return TRUE;
}
/* --------------------------------------------------------------------------------------------- */
/** save block, returns TRUE on success */
gboolean
edit_save_block (WEdit * edit, const char *filename, off_t start, off_t finish)
{
int len, file;
vfs_path_t *vpath;
vpath = vfs_path_from_str (filename);
file = mc_open (vpath, O_CREAT | O_WRONLY | O_TRUNC,
S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH | O_BINARY);
vfs_path_free (vpath);
if (file == -1)
return FALSE;
if (edit->column_highlight)
{
int r;
r = mc_write (file, VERTICAL_MAGIC, sizeof (VERTICAL_MAGIC));
if (r > 0)
{
unsigned char *block, *p;
p = block = edit_get_block (edit, start, finish, &len);
while (len)
{
r = mc_write (file, p, len);
if (r < 0)
break;
p += r;
len -= r;
}
g_free (block);
}
}
else
{
unsigned char *buf;
off_t i = start;
off_t end;
len = finish - start;
buf = g_malloc0 (TEMP_BUF_LEN);
while (start != finish)
{
end = min (finish, start + TEMP_BUF_LEN);
for (; i < end; i++)
buf[i - start] = edit_get_byte (edit, i);
len -= mc_write (file, (char *) buf, end - start);
start = end;
}
g_free (buf);
}
mc_close (file);
return (len == 0);
}
/* --------------------------------------------------------------------------------------------- */
void
edit_paste_from_history (WEdit * edit)
{
(void) edit;
edit_error_dialog (_("Error"), _("This function is not implemented"));
}
/* --------------------------------------------------------------------------------------------- */
gboolean
edit_copy_to_X_buf_cmd (WEdit * edit)
{
off_t start_mark, end_mark;
if (eval_marks (edit, &start_mark, &end_mark))
return TRUE;
if (!edit_save_block_to_clip_file (edit, start_mark, end_mark))
{
edit_error_dialog (_("Copy to clipboard"), get_sys_error (_("Unable to save to file")));
return FALSE;
}
/* try use external clipboard utility */
mc_event_raise (MCEVENT_GROUP_CORE, "clipboard_file_to_ext_clip", NULL);
return TRUE;
}
/* --------------------------------------------------------------------------------------------- */
gboolean
edit_cut_to_X_buf_cmd (WEdit * edit)
{
off_t start_mark, end_mark;
if (eval_marks (edit, &start_mark, &end_mark))
return TRUE;
if (!edit_save_block_to_clip_file (edit, start_mark, end_mark))
{
edit_error_dialog (_("Cut to clipboard"), _("Unable to save to file"));
return FALSE;
}
/* try use external clipboard utility */
mc_event_raise (MCEVENT_GROUP_CORE, "clipboard_file_to_ext_clip", NULL);
edit_block_delete_cmd (edit);
edit_mark_cmd (edit, TRUE);
return TRUE;
}
/* --------------------------------------------------------------------------------------------- */
gboolean
edit_paste_from_X_buf_cmd (WEdit * edit)
{
vfs_path_t *tmp;
gboolean ret;
/* try use external clipboard utility */
mc_event_raise (MCEVENT_GROUP_CORE, "clipboard_file_from_ext_clip", NULL);
tmp = mc_config_get_full_vpath (EDIT_CLIP_FILE);
ret = (edit_insert_file (edit, tmp) >= 0);
vfs_path_free (tmp);
return ret;
}
/* --------------------------------------------------------------------------------------------- */
/**
* Ask user for the line and go to that line.
* Negative numbers mean line from the end (i.e. -1 is the last line).
*/
void
edit_goto_cmd (WEdit * edit)
{
char *f;
static long line = 0; /* line as typed, saved as default */
long l;
char *error;
char s[32];
g_snprintf (s, sizeof (s), "%ld", line);
f = input_dialog (_("Goto line"), _("Enter line:"), MC_HISTORY_EDIT_GOTO_LINE, line ? s : "");
if (!f)
return;
if (!*f)
{
g_free (f);
return;
}
l = strtol (f, &error, 0);
if (*error)
{
g_free (f);
return;
}
line = l;
if (l < 0)
l = edit->total_lines + l + 2;
edit_move_display (edit, l - edit->widget.lines / 2 - 1);
edit_move_to_line (edit, l - 1);
edit->force |= REDRAW_COMPLETELY;
g_free (f);
}
/* --------------------------------------------------------------------------------------------- */
/** Return TRUE on success */
gboolean
edit_save_block_cmd (WEdit * edit)
{
off_t start_mark, end_mark;
char *exp, *tmp;
gboolean ret = FALSE;
if (eval_marks (edit, &start_mark, &end_mark))
return TRUE;
tmp = mc_config_get_full_path (EDIT_CLIP_FILE);
exp =
input_expand_dialog (_("Save block"), _("Enter file name:"),
MC_HISTORY_EDIT_SAVE_BLOCK, tmp);
g_free (tmp);
edit_push_undo_action (edit, KEY_PRESS + edit->start_display);
if (exp != NULL && *exp != '\0')
{
if (edit_save_block (edit, exp, start_mark, end_mark))
ret = TRUE;
else
edit_error_dialog (_("Save block"), get_sys_error (_("Cannot save file")));
edit->force |= REDRAW_COMPLETELY;
}
g_free (exp);
return ret;
}
/* --------------------------------------------------------------------------------------------- */
/** returns TRUE on success */
gboolean
edit_insert_file_cmd (WEdit * edit)
{
char *tmp;
char *exp;
gboolean ret = FALSE;
tmp = mc_config_get_full_path (EDIT_CLIP_FILE);
exp = input_expand_dialog (_("Insert file"), _("Enter file name:"),
MC_HISTORY_EDIT_INSERT_FILE, tmp);
g_free (tmp);
edit_push_undo_action (edit, KEY_PRESS + edit->start_display);
if (exp != NULL && *exp != '\0')
{
vfs_path_t *exp_vpath;
exp_vpath = vfs_path_from_str (exp);
ret = (edit_insert_file (edit, exp_vpath) >= 0);
vfs_path_free (exp_vpath);
if (!ret)
edit_error_dialog (_("Insert file"), get_sys_error (_("Cannot insert file")));
}
g_free (exp);
edit->force |= REDRAW_COMPLETELY;
return ret;
}
/* --------------------------------------------------------------------------------------------- */
/** sorts a block, returns -1 on system fail, 1 on cancel and 0 on success */
int
edit_sort_cmd (WEdit * edit)
{
static char *old = 0;
char *exp, *tmp, *tmp_edit_block_name, *tmp_edit_temp_name;
off_t start_mark, end_mark;
int e;
if (eval_marks (edit, &start_mark, &end_mark))
{
edit_error_dialog (_("Sort block"), _("You must first highlight a block of text"));
return 0;
}
tmp = mc_config_get_full_path (EDIT_BLOCK_FILE);
edit_save_block (edit, tmp, start_mark, end_mark);
g_free (tmp);
exp = input_dialog (_("Run sort"),
_("Enter sort options (see manpage) separated by whitespace:"),
MC_HISTORY_EDIT_SORT, (old != NULL) ? old : "");
if (!exp)
return 1;
g_free (old);
old = exp;
tmp_edit_block_name = mc_config_get_full_path (EDIT_BLOCK_FILE);
tmp_edit_temp_name = mc_config_get_full_path (EDIT_TEMP_FILE);
tmp =
g_strconcat (" sort ", exp, " ", tmp_edit_block_name,
" > ", tmp_edit_temp_name, (char *) NULL);
g_free (tmp_edit_temp_name);
g_free (tmp_edit_block_name);
e = system (tmp);
g_free (tmp);
if (e)
{
if (e == -1 || e == 127)
{
edit_error_dialog (_("Sort"), get_sys_error (_("Cannot execute sort command")));
}
else
{
char q[8];
sprintf (q, "%d ", e);
tmp = g_strdup_printf (_("Sort returned non-zero: %s"), q);
edit_error_dialog (_("Sort"), tmp);
g_free (tmp);
}
return -1;
}
edit->force |= REDRAW_COMPLETELY;
if (edit_block_delete_cmd (edit))
return 1;
{
vfs_path_t *tmp_vpath;
tmp_vpath = mc_config_get_full_vpath (EDIT_TEMP_FILE);
edit_insert_file (edit, tmp_vpath);
vfs_path_free (tmp_vpath);
}
return 0;
}
/* --------------------------------------------------------------------------------------------- */
/**
* Ask user for a command, execute it and paste its output back to the
* editor.
*/
int
edit_ext_cmd (WEdit * edit)
{
char *exp, *tmp, *tmp_edit_temp_file;
int e;
exp =
input_dialog (_("Paste output of external command"),
_("Enter shell command(s):"), MC_HISTORY_EDIT_PASTE_EXTCMD, NULL);
if (!exp)
return 1;
tmp_edit_temp_file = mc_config_get_full_path (EDIT_TEMP_FILE);
tmp = g_strconcat (exp, " > ", tmp_edit_temp_file, (char *) NULL);
g_free (tmp_edit_temp_file);
e = system (tmp);
g_free (tmp);
g_free (exp);
if (e)
{
edit_error_dialog (_("External command"), get_sys_error (_("Cannot execute command")));
return -1;
}
edit->force |= REDRAW_COMPLETELY;
{
vfs_path_t *tmp_vpath;
tmp_vpath = mc_config_get_full_vpath (EDIT_TEMP_FILE);
edit_insert_file (edit, tmp_vpath);
vfs_path_free (tmp_vpath);
}
return 0;
}
/* --------------------------------------------------------------------------------------------- */
/** if block is 1, a block must be highlighted and the shell command
processes it. If block is 0 the shell command is a straight system
command, that just produces some output which is to be inserted */
void
edit_block_process_cmd (WEdit * edit, int macro_number)
{
char *fname;
char *macros_fname = NULL;
fname = g_strdup_printf ("%s.%i.sh", MC_EXTMACRO_FILE, macro_number);
macros_fname = g_build_filename (mc_config_get_data_path (), fname, (char *) NULL);
user_menu (edit, macros_fname, 0);
g_free (fname);
g_free (macros_fname);
edit->force |= REDRAW_COMPLETELY;
}
/* --------------------------------------------------------------------------------------------- */
void
edit_mail_dialog (WEdit * edit)
{
char *tmail_to;
char *tmail_subject;
char *tmail_cc;
static char *mail_cc_last = 0;
static char *mail_subject_last = 0;
static char *mail_to_last = 0;
QuickWidget quick_widgets[] = {
/* 0 */ QUICK_BUTTON (6, 10, 9, MAIL_DLG_HEIGHT, N_("&Cancel"), B_CANCEL, NULL),
/* 1 */ QUICK_BUTTON (2, 10, 9, MAIL_DLG_HEIGHT, N_("&OK"), B_ENTER, NULL),
/* 2 */ QUICK_INPUT (3, 50, 8, MAIL_DLG_HEIGHT, "", 44, 0, "mail-dlg-input", &tmail_cc),
/* 3 */ QUICK_LABEL (3, 50, 7, MAIL_DLG_HEIGHT, N_("Copies to")),
/* 4 */ QUICK_INPUT (3, 50, 6, MAIL_DLG_HEIGHT, "", 44, 0, "mail-dlg-input-2",
&tmail_subject),
/* 5 */ QUICK_LABEL (3, 50, 5, MAIL_DLG_HEIGHT, N_("Subject")),
/* 6 */ QUICK_INPUT (3, 50, 4, MAIL_DLG_HEIGHT, "", 44, 0, "mail-dlg-input-3", &tmail_to),
/* 7 */ QUICK_LABEL (3, 50, 3, MAIL_DLG_HEIGHT, N_("To")),
/* 8 */ QUICK_LABEL (3, 50, 2, MAIL_DLG_HEIGHT, N_("mail -s <subject> -c <cc> <to>")),
QUICK_END
};
QuickDialog Quick_input = {
50, MAIL_DLG_HEIGHT, -1, -1, N_("Mail"),
"[Input Line Keys]", quick_widgets, NULL, NULL, FALSE
};
quick_widgets[2].u.input.text = mail_cc_last ? mail_cc_last : "";
quick_widgets[4].u.input.text = mail_subject_last ? mail_subject_last : "";
quick_widgets[6].u.input.text = mail_to_last ? mail_to_last : "";
if (quick_dialog (&Quick_input) != B_CANCEL)
{
g_free (mail_cc_last);
g_free (mail_subject_last);
g_free (mail_to_last);
mail_cc_last = tmail_cc;
mail_subject_last = tmail_subject;
mail_to_last = tmail_to;
pipe_mail (edit, mail_to_last, mail_subject_last, mail_cc_last);
}
}
/*******************/
/* Word Completion */
/*******************/
/* --------------------------------------------------------------------------------------------- */
/**
* Complete current word using regular expression search
* backwards beginning at the current cursor position.
*/
void
edit_complete_word_cmd (WEdit * edit)
{
gsize i, max_len, word_len = 0, num_compl = 0;
off_t word_start = 0;
unsigned char *bufpos;
char *match_expr;
struct selection compl[MAX_WORD_COMPLETIONS]; /* completions */
/* search start of word to be completed */
if (!edit_find_word_start (edit, &word_start, &word_len))
return;
/* prepare match expression */
bufpos = &edit->buffers1[word_start >> S_EDIT_BUF_SIZE][word_start & M_EDIT_BUF_SIZE];
/* match_expr = g_strdup_printf ("\\b%.*s[a-zA-Z_0-9]+", word_len, bufpos); */
match_expr =
g_strdup_printf
("(^|\\s+|\\b)%.*s[^\\s\\.=\\+\\[\\]\\(\\)\\,\\;\\:\\\"\\'\\-\\?\\/\\|\\\\\\{\\}\\*\\&\\^\\%%\\$#@\\!]+",
(int) word_len, bufpos);
/* collect the possible completions */
/* start search from begin to end of file */
max_len =
edit_collect_completions (edit, word_start, word_len, match_expr,
(struct selection *) &compl, &num_compl);
if (num_compl > 0)
{
/* insert completed word if there is only one match */
if (num_compl == 1)
{
for (i = word_len; i < compl[0].len; i++)
edit_insert (edit, *(compl[0].text + i));
}
/* more than one possible completion => ask the user */
else
{
/* !!! usually only a beep is expected and when <ALT-TAB> is !!! */
/* !!! pressed again the selection dialog pops up, but that !!! */
/* !!! seems to require a further internal state !!! */
/*tty_beep (); */
/* let the user select the preferred completion */
editcmd_dialog_completion_show (edit, max_len, word_len,
(struct selection *) &compl, num_compl);
}
}
g_free (match_expr);
/* release memory before return */
for (i = 0; i < num_compl; i++)
g_free (compl[i].text);
}
/* --------------------------------------------------------------------------------------------- */
#ifdef HAVE_CHARSET
void
edit_select_codepage_cmd (WEdit * edit)
{
if (do_select_codepage ())
edit_set_codeset (edit);
edit->force = REDRAW_PAGE;
send_message ((Widget *) edit, WIDGET_DRAW, 0);
}
#endif
/* --------------------------------------------------------------------------------------------- */
void
edit_insert_literal_cmd (WEdit * edit)
{
int char_for_insertion;
char_for_insertion = editcmd_dialog_raw_key_query (_("Insert literal"),
_("Press any key:"), FALSE);
edit_execute_key_command (edit, -1, ascii_alpha_to_cntrl (char_for_insertion));
}
/* --------------------------------------------------------------------------------------------- */
void
edit_begin_end_macro_cmd (WEdit * edit)
{
/* edit is a pointer to the widget */
if (edit != NULL)
{
unsigned long command = macro_index < 0 ? CK_MacroStartRecord : CK_MacroStopRecord;
edit_execute_key_command (edit, command, -1);
}
}
/* --------------------------------------------------------------------------------------------- */
void
edit_begin_end_repeat_cmd (WEdit * edit)
{
/* edit is a pointer to the widget */
if (edit != NULL)
{
unsigned long command = macro_index < 0 ? CK_RepeatStartRecord : CK_RepeatStopRecord;
edit_execute_key_command (edit, command, -1);
}
}
/* --------------------------------------------------------------------------------------------- */
gboolean
edit_load_forward_cmd (WEdit * edit)
{
if (edit->modified
&& edit_query_dialog2 (_("Warning"),
_("Current text was modified without a file save.\n"
"Continue discards these changes"), _("C&ontinue"),
_("&Cancel")) == 1)
{
edit->force |= REDRAW_COMPLETELY;
return TRUE;
}
if (edit_stack_iterator + 1 >= MAX_HISTORY_MOVETO)
return FALSE;
if (edit_history_moveto[edit_stack_iterator + 1].line < 1)
return FALSE;
edit_stack_iterator++;
if (edit_history_moveto[edit_stack_iterator].filename_vpath != NULL)
return edit_reload_line (edit, edit_history_moveto[edit_stack_iterator].filename_vpath,
edit_history_moveto[edit_stack_iterator].line);
return FALSE;
}
/* --------------------------------------------------------------------------------------------- */
gboolean
edit_load_back_cmd (WEdit * edit)
{
if (edit->modified
&& edit_query_dialog2 (_("Warning"),
_("Current text was modified without a file save.\n"
"Continue discards these changes"), _("C&ontinue"),
_("&Cancel")) == 1)
{
edit->force |= REDRAW_COMPLETELY;
return TRUE;
}
/* we are in the bottom of the stack, NO WAY! */
if (edit_stack_iterator == 0)
return FALSE;
edit_stack_iterator--;
if (edit_history_moveto[edit_stack_iterator].filename_vpath != NULL)
return edit_reload_line (edit, edit_history_moveto[edit_stack_iterator].filename_vpath,
edit_history_moveto[edit_stack_iterator].line);
return FALSE;
}
/* --------------------------------------------------------------------------------------------- */
void
edit_get_match_keyword_cmd (WEdit * edit)
{
gsize word_len = 0, max_len = 0;
int num_def = 0;
int i;
off_t word_start = 0;
unsigned char *bufpos;
char *match_expr;
char *path = NULL;
char *ptr = NULL;
char *tagfile = NULL;
etags_hash_t def_hash[MAX_DEFINITIONS];
for (i = 0; i < MAX_DEFINITIONS; i++)
{
def_hash[i].filename = NULL;
}
/* search start of word to be completed */
if (!edit_find_word_start (edit, &word_start, &word_len))
return;
/* prepare match expression */
bufpos = &edit->buffers1[word_start >> S_EDIT_BUF_SIZE][word_start & M_EDIT_BUF_SIZE];
match_expr = g_strdup_printf ("%.*s", (int) word_len, bufpos);
ptr = g_get_current_dir ();
path = g_strconcat (ptr, G_DIR_SEPARATOR_S, (char *) NULL);
g_free (ptr);
/* Recursive search file 'TAGS' in parent dirs */
do
{
ptr = g_path_get_dirname (path);
g_free (path);
path = ptr;
g_free (tagfile);
tagfile = mc_build_filename (path, TAGS_NAME, (char *) NULL);
if (exist_file (tagfile))
break;
}
while (strcmp (path, G_DIR_SEPARATOR_S) != 0);
if (tagfile)
{
num_def =
etags_set_definition_hash (tagfile, path, match_expr, (etags_hash_t *) & def_hash);
g_free (tagfile);
}
g_free (path);
max_len = MAX_WIDTH_DEF_DIALOG;
word_len = 0;
if (num_def > 0)
{
editcmd_dialog_select_definition_show (edit, match_expr, max_len, word_len,
(etags_hash_t *) & def_hash, num_def);
}
g_free (match_expr);
}
/* --------------------------------------------------------------------------------------------- */
#ifdef HAVE_ASPELL
int
edit_suggest_current_word (WEdit * edit)
{
gsize cut_len = 0;
gsize word_len = 0;
off_t word_start = 0;
int retval = B_SKIP_WORD;
char *match_word;
/* search start of word to spell check */
match_word = edit_get_word_from_pos (edit, edit->curs1, &word_start, &word_len, &cut_len);
#ifdef HAVE_CHARSET
if (mc_global.source_codepage >= 0 && (mc_global.source_codepage != mc_global.display_codepage))
{
GString *tmp_word;
tmp_word = str_convert_to_display (match_word);
g_free (match_word);
match_word = g_string_free (tmp_word, FALSE);
}
#endif
if (!aspell_check (match_word, (int) word_len))
{
GArray *suggest;
unsigned int res;
suggest = g_array_new (TRUE, FALSE, sizeof (char *));
res = aspell_suggest (suggest, match_word, (int) word_len);
if (res != 0)
{
char *new_word = NULL;
edit->found_start = word_start;
edit->found_len = word_len;
edit->force |= REDRAW_PAGE;
edit_scroll_screen_over_cursor (edit);
edit_render_keypress (edit);
retval = spell_dialog_spell_suggest_show (edit, match_word, &new_word, suggest);
edit_cursor_move (edit, word_len - cut_len);
if (retval == B_ENTER && new_word != NULL)
{
guint i;
char *cp_word;
#ifdef HAVE_CHARSET
if (mc_global.source_codepage >= 0 &&
(mc_global.source_codepage != mc_global.display_codepage))
{
GString *tmp_word;
tmp_word = str_convert_to_input (new_word);
g_free (new_word);
new_word = g_string_free (tmp_word, FALSE);
}
#endif
cp_word = new_word;
for (i = 0; i < word_len; i++)
edit_backspace (edit, 1);
for (; *new_word; new_word++)
edit_insert (edit, *new_word);
g_free (cp_word);
}
else if (retval == B_ADD_WORD && match_word != NULL)
aspell_add_to_dict (match_word, (int) word_len);
}
g_array_free (suggest, TRUE);
edit->found_start = 0;
edit->found_len = 0;
}
g_free (match_word);
return retval;
}
/* --------------------------------------------------------------------------------------------- */
void
edit_spellcheck_file (WEdit * edit)
{
if (edit->curs_line > 0)
{
edit_cursor_move (edit, -edit->curs1);
edit_move_to_prev_col (edit, 0);
edit_update_curs_row (edit);
}
do
{
int c1, c2;
c2 = edit_get_byte (edit, edit->curs1);
do
{
if (edit->curs1 >= edit->last_byte)
return;
c1 = c2;
edit_cursor_move (edit, 1);
c2 = edit_get_byte (edit, edit->curs1);
}
while (is_break_char (c1) || is_break_char (c2));
}
while (edit_suggest_current_word (edit) != B_CANCEL);
}
/* --------------------------------------------------------------------------------------------- */
void
edit_set_spell_lang (void)
{
GArray *lang_list;
lang_list = g_array_new (TRUE, FALSE, sizeof (char *));
if (aspell_get_lang_list (lang_list) != 0)
{
char *lang;
lang = spell_dialog_lang_list_show (lang_list);
if (lang != NULL)
(void) aspell_set_lang (lang);
}
aspell_array_clean (lang_list);
}
#endif /* HAVE_ASPELL */
/* --------------------------------------------------------------------------------------------- */