mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
cdc02d297e
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2151 a592a061-630c-0410-9148-cb99ea01b6c8
876 lines
22 KiB
C
876 lines
22 KiB
C
/*
|
|
*This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-1998 The LyX Team
|
|
*
|
|
* ======================================================
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <cstdlib>
|
|
#include <csignal>
|
|
#include <sys/wait.h>
|
|
#include <sys/types.h>
|
|
#include <cctype>
|
|
#include FORMS_H_LOCATION
|
|
|
|
#if TIME_WITH_SYS_TIME
|
|
# include <sys/time.h>
|
|
# include <ctime>
|
|
#else
|
|
# if HAVE_SYS_TIME_H
|
|
# include <sys/time.h>
|
|
# else
|
|
# include <ctime>
|
|
# endif
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
# ifdef HAVE_STRINGS_H
|
|
// <strings.h> is needed at least on AIX because FD_ZERO uses bzero().
|
|
// BUT we cannot include both string.h and strings.h on Irix 6.5 :(
|
|
# ifdef _AIX
|
|
# include <strings.h>
|
|
# endif
|
|
# endif
|
|
#include <sys/select.h>
|
|
#endif
|
|
|
|
#include <algorithm>
|
|
|
|
#include "LString.h"
|
|
#include "sp_form.h"
|
|
#include "spellchecker.h"
|
|
#include "lyx_main.h"
|
|
#include "buffer.h"
|
|
#include "lyxrc.h"
|
|
#include "BufferView.h"
|
|
#include "LyXView.h"
|
|
#include "frontends/Dialogs.h"
|
|
#include "gettext.h"
|
|
#include "lyx_gui_misc.h"
|
|
#include "debug.h"
|
|
#include "support/lstrings.h"
|
|
#include "language.h"
|
|
#include "encoding.h"
|
|
#include "support/lstrings.h"
|
|
|
|
#ifdef USE_PSPELL
|
|
#define USE_ORIGINAL_MANAGER_FUNCS 1
|
|
# include <pspell/pspell.h>
|
|
#endif
|
|
|
|
using std::reverse;
|
|
using std::endl;
|
|
|
|
namespace {
|
|
|
|
// Spellchecker status
|
|
enum {
|
|
ISP_OK = 1,
|
|
ISP_ROOT,
|
|
ISP_COMPOUNDWORD,
|
|
ISP_UNKNOWN,
|
|
ISP_MISSED,
|
|
ISP_IGNORE
|
|
};
|
|
|
|
bool RunSpellChecker(BufferView * bv);
|
|
|
|
#ifndef USE_PSPELL
|
|
|
|
FILE * in;
|
|
FILE * out; /* streams to communicate with ispell */
|
|
pid_t isp_pid = -1; // pid for the `ispell' process. Also used (RO) in
|
|
// lyx_cb.C
|
|
|
|
// the true spell checker program being used
|
|
enum ActualSpellChecker {ASC_ISPELL, ASC_ASPELL};
|
|
ActualSpellChecker actual_spell_checker;
|
|
|
|
int isp_fd;
|
|
|
|
#else
|
|
|
|
PspellManager * sc;
|
|
|
|
#endif
|
|
|
|
} // namespace anon
|
|
|
|
|
|
// Non-static so that it can be redrawn if the xforms colors are re-mapped
|
|
FD_form_spell_check *fd_form_spell_check = 0;
|
|
|
|
void sigchldhandler(pid_t pid, int *status);
|
|
|
|
extern void sigchldchecker(pid_t pid, int *status);
|
|
|
|
#ifndef USE_PSPELL
|
|
|
|
struct isp_result {
|
|
int flag;
|
|
char * str;
|
|
char * b;
|
|
char * e;
|
|
const char * next_miss();
|
|
isp_result() {
|
|
flag = ISP_UNKNOWN;
|
|
str = 0;
|
|
}
|
|
~isp_result() {
|
|
delete[] str;
|
|
}
|
|
};
|
|
|
|
const char * isp_result::next_miss() {
|
|
if (str == 0 || *(e+1) == '\0') return 0;
|
|
b = e + 2;
|
|
e = strpbrk(b, ",\n");
|
|
*e = '\0';
|
|
return b;
|
|
}
|
|
|
|
#else
|
|
|
|
struct isp_result {
|
|
int flag;
|
|
PspellStringEmulation * els;
|
|
|
|
const char * next_miss();
|
|
isp_result() {
|
|
flag = ISP_UNKNOWN;
|
|
els = 0;
|
|
}
|
|
~isp_result() {
|
|
delete_pspell_string_emulation(els);
|
|
}
|
|
};
|
|
|
|
const char * isp_result::next_miss()
|
|
{
|
|
return pspell_string_emulation_next(els);
|
|
}
|
|
|
|
#endif
|
|
|
|
namespace {
|
|
|
|
const char * spell_error;
|
|
|
|
#ifndef USE_PSPELL
|
|
|
|
/***** Spellchecker *****/
|
|
|
|
// Could also use a clean up. (Asger Alstrup)
|
|
|
|
void init_spell_checker(BufferParams const & params, string const & lang)
|
|
{
|
|
static char o_buf[BUFSIZ]; // jc: it could be smaller
|
|
int pipein[2], pipeout[2];
|
|
char * argv[14];
|
|
int argc;
|
|
|
|
isp_pid = -1;
|
|
|
|
if (pipe(pipein) == -1 || pipe(pipeout) == -1) {
|
|
lyxerr << "LyX: Can't create pipe for spellchecker!" << endl;
|
|
goto END;
|
|
}
|
|
|
|
if ((out = fdopen(pipein[1], "w")) == 0) {
|
|
lyxerr << "LyX: Can't create stream for pipe for spellchecker!"
|
|
<< endl;
|
|
goto END;
|
|
}
|
|
|
|
if ((in = fdopen(pipeout[0], "r")) == 0) {
|
|
lyxerr <<"LyX: Can't create stream for pipe for spellchecker!"
|
|
<< endl;
|
|
goto END;
|
|
}
|
|
|
|
setvbuf(out, o_buf, _IOLBF, BUFSIZ);
|
|
|
|
isp_fd = pipeout[0];
|
|
|
|
isp_pid = fork();
|
|
|
|
if (isp_pid == -1) {
|
|
lyxerr << "LyX: Can't create child process for spellchecker!"
|
|
<< endl;
|
|
goto END;
|
|
}
|
|
|
|
if (isp_pid == 0) {
|
|
/* child process */
|
|
dup2(pipein[0], STDIN_FILENO);
|
|
dup2(pipeout[1], STDOUT_FILENO);
|
|
close(pipein[0]);
|
|
close(pipein[1]);
|
|
close(pipeout[0]);
|
|
close(pipeout[1]);
|
|
|
|
argc = 0;
|
|
char * tmp = new char[lyxrc.isp_command.length() + 1];
|
|
lyxrc.isp_command.copy(tmp, lyxrc.isp_command.length());
|
|
tmp[lyxrc.isp_command.length()] = '\0';
|
|
argv[argc++] = tmp;
|
|
tmp = new char[3];
|
|
string("-a").copy(tmp, 2); tmp[2] = '\0'; // pipe mode
|
|
argv[argc++] = tmp;
|
|
|
|
if (lang != "default") {
|
|
tmp = new char[3];
|
|
string("-d").copy(tmp, 2); tmp[2] = '\0'; // Dictionary file
|
|
argv[argc++] = tmp;
|
|
tmp = new char[lang.length() + 1];
|
|
lang.copy(tmp, lang.length()); tmp[lang.length()] = '\0';
|
|
argv[argc++] = tmp;
|
|
}
|
|
|
|
if (lyxrc.isp_accept_compound) {
|
|
// Consider run-together words as legal compounds
|
|
tmp = new char[3];
|
|
string("-C").copy(tmp, 2); tmp[2] = '\0';
|
|
argv[argc++] = tmp;
|
|
} else {
|
|
// Report run-together words with
|
|
// missing blanks as errors
|
|
tmp = new char[3];
|
|
string("-B").copy(tmp, 2); tmp[2] = '\0';
|
|
argv[argc++] = tmp;
|
|
}
|
|
if (lyxrc.isp_use_esc_chars) {
|
|
// Specify additional characters that
|
|
// can be part of a word
|
|
tmp = new char[3];
|
|
string("-w").copy(tmp, 2); tmp[2] = '\0';
|
|
argv[argc++] = tmp;
|
|
// Put the escape chars in ""s
|
|
string tms = "\"" + lyxrc.isp_esc_chars + "\"";
|
|
tmp = new char[tms.length() + 1];
|
|
tms.copy(tmp, tms.length()); tmp[tms.length()] = '\0';
|
|
argv[argc++] = tmp;
|
|
}
|
|
if (lyxrc.isp_use_pers_dict) {
|
|
// Specify an alternate personal dictionary
|
|
tmp = new char[3];
|
|
string("-p").copy(tmp, 2);
|
|
tmp[2]= '\0';
|
|
argv[argc++] = tmp;
|
|
tmp = new char[lyxrc.isp_pers_dict.length() + 1];
|
|
lyxrc.isp_pers_dict.copy(tmp, lyxrc.isp_pers_dict.length());
|
|
tmp[lyxrc.isp_pers_dict.length()] = '\0';
|
|
argv[argc++] = tmp;
|
|
}
|
|
if (lyxrc.isp_use_input_encoding &&
|
|
params.inputenc != "default") {
|
|
string enc = (params.inputenc == "auto")
|
|
? params.language->encoding()->LatexName()
|
|
: params.inputenc;
|
|
string::size_type n = enc.length();
|
|
tmp = new char[3];
|
|
string("-T").copy(tmp, 2); tmp[2] = '\0';
|
|
argv[argc++] = tmp; // Input encoding
|
|
tmp = new char[n + 1];
|
|
enc.copy(tmp, n);
|
|
tmp[n] = '\0';
|
|
argv[argc++] = tmp;
|
|
}
|
|
|
|
argv[argc++] = 0;
|
|
|
|
execvp(argv[0], const_cast<char * const *>(argv));
|
|
|
|
// free the memory used by string::copy in the
|
|
// setup of argv
|
|
for (int i= 0; i < argc -1; ++i)
|
|
delete[] argv[i];
|
|
|
|
lyxerr << "LyX: Failed to start ispell!" << endl;
|
|
_exit(0);
|
|
}
|
|
{
|
|
/* Parent process: Read ispells identification message */
|
|
// Hmm...what are we using this id msg for? Nothing? (Lgb)
|
|
// Actually I used it to tell if it's truly Ispell or if it's
|
|
// aspell -- (kevinatk@home.com)
|
|
char buf[2048];
|
|
fd_set infds;
|
|
struct timeval tv;
|
|
int retval = 0;
|
|
FD_ZERO(&infds);
|
|
FD_SET(pipeout[0], &infds);
|
|
tv.tv_sec = 15; // fifteen second timeout. Probably too much,
|
|
// but it can't really hurt.
|
|
tv.tv_usec = 0;
|
|
|
|
// Configure provides us with macros which are supposed to do
|
|
// the right typecast.
|
|
retval = select(SELECT_TYPE_ARG1 (pipeout[0]+1),
|
|
SELECT_TYPE_ARG234 (&infds),
|
|
0,
|
|
0,
|
|
SELECT_TYPE_ARG5 (&tv));
|
|
|
|
if (retval > 0) {
|
|
// Ok, do the reading. We don't have to FD_ISSET since
|
|
// there is only one fd in infds.
|
|
fgets(buf, 2048, in);
|
|
|
|
// determine if the spell checker is really Aspell
|
|
if (strstr(buf, "Aspell"))
|
|
actual_spell_checker = ASC_ASPELL;
|
|
else
|
|
actual_spell_checker = ASC_ISPELL;
|
|
|
|
fputs("!\n", out); // Set terse mode (silently accept correct words)
|
|
|
|
|
|
} else if (retval == 0) {
|
|
// timeout. Give nice message to user.
|
|
lyxerr << "Ispell read timed out, what now?" << endl;
|
|
// This probably works but could need some thought
|
|
isp_pid = -1;
|
|
close(pipeout[0]); close(pipeout[1]);
|
|
close(pipein[0]); close(pipein[1]);
|
|
isp_fd = -1;
|
|
} else {
|
|
// Select returned error
|
|
lyxerr << "Select on ispell returned error, what now?" << endl;
|
|
}
|
|
}
|
|
END:
|
|
if (isp_pid == -1) {
|
|
spell_error =
|
|
"\n\n"
|
|
"The ispell-process has died for some reason. *One* possible reason\n"
|
|
"could be that you do not have a dictionary file\n"
|
|
"for the language of this document installed.\n"
|
|
"Check /usr/lib/ispell or set another\n"
|
|
"dictionary in the spellchecker preferences.";
|
|
} else {
|
|
spell_error = 0;
|
|
}
|
|
}
|
|
|
|
|
|
bool sc_still_alive() {
|
|
return isp_pid != -1;
|
|
}
|
|
|
|
|
|
void sc_clean_up_after_error()
|
|
{
|
|
::fclose(out);
|
|
}
|
|
|
|
|
|
// Send word to ispell and get reply
|
|
isp_result * sc_check_word(string const & word)
|
|
{
|
|
//Please rewrite to use string.
|
|
|
|
::fputs(word.c_str(), out);
|
|
::fputc('\n', out);
|
|
|
|
char buf[1024];
|
|
::fgets(buf, 1024, in);
|
|
|
|
/* I think we have to check if ispell is still alive here because
|
|
the signal-handler could have disabled blocking on the fd */
|
|
if (!sc_still_alive()) return 0;
|
|
|
|
isp_result * result = new isp_result;
|
|
|
|
switch (*buf) {
|
|
case '*': // Word found
|
|
result->flag = ISP_OK;
|
|
break;
|
|
case '+': // Word found through affix removal
|
|
result->flag = ISP_ROOT;
|
|
break;
|
|
case '-': // Word found through compound formation
|
|
result->flag = ISP_COMPOUNDWORD;
|
|
break;
|
|
case '\n': // Number or when in terse mode: no problems
|
|
result->flag = ISP_IGNORE;
|
|
break;
|
|
case '#': // Not found, no near misses and guesses
|
|
result->flag = ISP_UNKNOWN;
|
|
break;
|
|
case '?': // Not found, and no near misses, but guesses (guesses are ignored)
|
|
case '&': // Not found, but we have near misses
|
|
{
|
|
result->flag = ISP_MISSED;
|
|
char * p = strpbrk(buf, ":");
|
|
result->str = new char[strlen(p) + 1];
|
|
result->e = result->str;
|
|
strcpy(result->str, p);
|
|
break;
|
|
}
|
|
default: // This shouldn't happend, but you know Murphy
|
|
result->flag = ISP_UNKNOWN;
|
|
}
|
|
|
|
*buf = 0;
|
|
if (result->flag!= ISP_IGNORE) {
|
|
while (*buf!= '\n') fgets(buf, 255, in); /* wait for ispell to finish */
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
inline
|
|
void close_spell_checker()
|
|
{
|
|
// Note: If you decide to optimize this out when it is not
|
|
// needed please note that when Aspell is used this command
|
|
// is also needed to save the replacement dictionary.
|
|
// -- Kevin Atkinson (kevinatk@home.com)
|
|
|
|
fputs("#\n", out); // Save personal dictionary
|
|
|
|
fflush(out);
|
|
fclose(out);
|
|
}
|
|
|
|
|
|
inline
|
|
void sc_insert_word(string const & word)
|
|
{
|
|
::fputc('*', out); // Insert word in personal dictionary
|
|
::fputs(word.c_str(), out);
|
|
::fputc('\n', out);
|
|
}
|
|
|
|
|
|
inline
|
|
void sc_accept_word(string const & word)
|
|
{
|
|
::fputc('@', out); // Accept in this session
|
|
::fputs(word.c_str(), out);
|
|
::fputc('\n', out);
|
|
}
|
|
|
|
|
|
inline
|
|
void sc_store_replacement(string const & mis, string const & cor) {
|
|
if (actual_spell_checker == ASC_ASPELL) {
|
|
::fputs("$$ra ", out);
|
|
::fputs(mis.c_str(), out);
|
|
::fputc(',', out);
|
|
::fputs(cor.c_str(), out);
|
|
::fputc('\n', out);
|
|
}
|
|
}
|
|
|
|
#else
|
|
|
|
PspellCanHaveError * spell_error_object;
|
|
|
|
void init_spell_checker(BufferParams const &, string const & lang)
|
|
{
|
|
PspellConfig * config = new_pspell_config();
|
|
string code;
|
|
split(lang, code, '_');
|
|
config->replace("language-tag", code.c_str());
|
|
spell_error_object = new_pspell_manager(config);
|
|
if (pspell_error_number(spell_error_object) != 0) {
|
|
spell_error = pspell_error_message(spell_error_object);
|
|
} else {
|
|
spell_error = 0;
|
|
sc = to_pspell_manager(spell_error_object);
|
|
spell_error_object = 0;
|
|
}
|
|
}
|
|
|
|
|
|
bool sc_still_alive() {
|
|
return true;
|
|
}
|
|
|
|
|
|
void sc_clean_up_after_error()
|
|
{
|
|
delete_pspell_can_have_error(spell_error_object);
|
|
}
|
|
|
|
|
|
|
|
// Send word to pspell and get reply
|
|
isp_result * sc_check_word(string const & word)
|
|
{
|
|
isp_result * result = new isp_result;
|
|
#ifdef WITH_WARNINGS
|
|
#warning Why isnt word_ok a bool? (Lgb)
|
|
#endif
|
|
int word_ok = pspell_manager_check(sc, word.c_str());
|
|
lyx::Assert(word_ok != -1);
|
|
|
|
if (word_ok) {
|
|
result->flag = ISP_OK;
|
|
} else {
|
|
PspellWordList const * sugs =
|
|
pspell_manager_suggest(sc, word.c_str());
|
|
lyx::Assert(sugs != 0);
|
|
result->els = pspell_word_list_elements(sugs);
|
|
if (pspell_word_list_empty(sugs))
|
|
result->flag = ISP_UNKNOWN;
|
|
else
|
|
result->flag = ISP_MISSED;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
inline
|
|
void close_spell_checker()
|
|
{
|
|
pspell_manager_save_all_word_lists(sc);
|
|
}
|
|
|
|
|
|
inline
|
|
void sc_insert_word(string const & word)
|
|
{
|
|
pspell_manager_add_to_personal(sc, word.c_str());
|
|
}
|
|
|
|
|
|
inline
|
|
void sc_accept_word(string const & word)
|
|
{
|
|
pspell_manager_add_to_session(sc, word.c_str());
|
|
}
|
|
|
|
|
|
inline
|
|
void sc_store_replacement(string const & mis, string const & cor)
|
|
{
|
|
pspell_manager_store_replacement(sc, mis.c_str(), cor.c_str());
|
|
}
|
|
|
|
#endif
|
|
|
|
} // namespace anon
|
|
|
|
|
|
void ShowSpellChecker(BufferView * bv)
|
|
{
|
|
FL_OBJECT * obj;
|
|
int ret;
|
|
|
|
// Exit if we don't have a document open
|
|
if (!bv->available())
|
|
return;
|
|
|
|
if (fd_form_spell_check == 0) {
|
|
fd_form_spell_check = create_form_form_spell_check();
|
|
// Make sure pressing the close box does not kill LyX. (RvdK)
|
|
fl_set_form_atclose(fd_form_spell_check->form_spell_check,
|
|
CancelCloseBoxCB, 0);
|
|
}
|
|
|
|
// Clear form
|
|
fl_set_slider_value(fd_form_spell_check->slider, 0);
|
|
fl_set_slider_bounds(fd_form_spell_check->slider, 0, 100);
|
|
fl_set_object_label(fd_form_spell_check->text, "");
|
|
fl_set_input(fd_form_spell_check->input, "");
|
|
fl_clear_browser(fd_form_spell_check->browser);
|
|
|
|
// Show form
|
|
if (fd_form_spell_check->form_spell_check->visible) {
|
|
fl_raise_form(fd_form_spell_check->form_spell_check);
|
|
} else {
|
|
fl_show_form(fd_form_spell_check->form_spell_check,
|
|
FL_PLACE_MOUSE | FL_FREE_SIZE, FL_TRANSIENT,
|
|
_("Spellchecker"));
|
|
}
|
|
fl_deactivate_object(fd_form_spell_check->slider);
|
|
|
|
// deactivate insert, accept, replace, and stop
|
|
fl_deactivate_object(fd_form_spell_check->insert);
|
|
fl_deactivate_object(fd_form_spell_check->accept);
|
|
fl_deactivate_object(fd_form_spell_check->ignore);
|
|
fl_deactivate_object(fd_form_spell_check->replace);
|
|
fl_deactivate_object(fd_form_spell_check->stop);
|
|
fl_deactivate_object(fd_form_spell_check->input);
|
|
fl_deactivate_object(fd_form_spell_check->browser);
|
|
fl_set_object_lcol(fd_form_spell_check->insert, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->accept, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->ignore, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->replace, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->stop, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->input, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->browser, FL_INACTIVE);
|
|
|
|
while (true) {
|
|
obj = fl_do_forms();
|
|
if (obj == fd_form_spell_check->options) {
|
|
bv->owner()->getDialogs()->showSpellcheckerPreferences();
|
|
}
|
|
if (obj == fd_form_spell_check->start) {
|
|
// activate insert, accept, and stop
|
|
fl_activate_object(fd_form_spell_check->insert);
|
|
fl_activate_object(fd_form_spell_check->accept);
|
|
fl_activate_object(fd_form_spell_check->ignore);
|
|
fl_activate_object(fd_form_spell_check->stop);
|
|
fl_activate_object(fd_form_spell_check->input);
|
|
fl_activate_object(fd_form_spell_check->browser);
|
|
fl_set_object_lcol(fd_form_spell_check->insert, FL_BLACK);
|
|
fl_set_object_lcol(fd_form_spell_check->accept, FL_BLACK);
|
|
fl_set_object_lcol(fd_form_spell_check->ignore, FL_BLACK);
|
|
fl_set_object_lcol(fd_form_spell_check->stop, FL_BLACK);
|
|
fl_set_object_lcol(fd_form_spell_check->input, FL_BLACK);
|
|
fl_set_object_lcol(fd_form_spell_check->browser, FL_BLACK);
|
|
// activate replace only if the file is not read-only
|
|
if (!bv->buffer()->isReadonly()) {
|
|
fl_activate_object(fd_form_spell_check->replace);
|
|
fl_set_object_lcol(fd_form_spell_check->replace, FL_BLACK);
|
|
}
|
|
|
|
// deactivate options and start
|
|
fl_deactivate_object(fd_form_spell_check->options);
|
|
fl_deactivate_object(fd_form_spell_check->start);
|
|
fl_set_object_lcol(fd_form_spell_check->options, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->start, FL_INACTIVE);
|
|
|
|
ret = RunSpellChecker(bv);
|
|
|
|
// deactivate insert, accept, replace, and stop
|
|
fl_deactivate_object(fd_form_spell_check->insert);
|
|
fl_deactivate_object(fd_form_spell_check->accept);
|
|
fl_deactivate_object(fd_form_spell_check->ignore);
|
|
fl_deactivate_object(fd_form_spell_check->replace);
|
|
fl_deactivate_object(fd_form_spell_check->stop);
|
|
fl_deactivate_object(fd_form_spell_check->input);
|
|
fl_deactivate_object(fd_form_spell_check->browser);
|
|
fl_set_object_lcol(fd_form_spell_check->insert, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->accept, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->ignore, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->replace, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->stop, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->input, FL_INACTIVE);
|
|
fl_set_object_lcol(fd_form_spell_check->browser, FL_INACTIVE);
|
|
|
|
// activate options and start
|
|
fl_activate_object(fd_form_spell_check->options);
|
|
fl_activate_object(fd_form_spell_check->start);
|
|
fl_set_object_lcol(fd_form_spell_check->options, FL_BLACK);
|
|
fl_set_object_lcol(fd_form_spell_check->start, FL_BLACK);
|
|
|
|
// if RunSpellChecker returns false quit spellchecker
|
|
if (!ret) break;
|
|
}
|
|
if (obj == fd_form_spell_check->done) break;
|
|
}
|
|
fl_hide_form(fd_form_spell_check->form_spell_check);
|
|
bv->endOfSpellCheck();
|
|
return;
|
|
}
|
|
|
|
|
|
// Perform a spell session
|
|
namespace {
|
|
|
|
bool RunSpellChecker(BufferView * bv)
|
|
{
|
|
isp_result * result;
|
|
int newvalue;
|
|
FL_OBJECT * obj;
|
|
|
|
#ifdef USE_PSPELL
|
|
string tmp = (lyxrc.isp_use_alt_lang) ?
|
|
lyxrc.isp_alt_lang : bv->buffer()->params.language->code();
|
|
#else
|
|
string tmp = (lyxrc.isp_use_alt_lang) ?
|
|
lyxrc.isp_alt_lang : bv->buffer()->params.language->lang();
|
|
#endif
|
|
bool rtl = false;
|
|
if (lyxrc.isp_use_alt_lang) {
|
|
Language const * lang = languages.getLanguage(tmp);
|
|
if (lang)
|
|
rtl = lang->RightToLeft();
|
|
} else
|
|
rtl = bv->buffer()->params.language->RightToLeft();
|
|
|
|
int oldval = 0; /* used for updating slider only when needed */
|
|
float newval = 0.0;
|
|
|
|
/* create ispell process */
|
|
init_spell_checker(bv->buffer()->params, tmp);
|
|
|
|
if (spell_error != 0) {
|
|
fl_show_message(_(spell_error), "", "");
|
|
sc_clean_up_after_error();
|
|
return false;
|
|
}
|
|
|
|
unsigned int word_count = 0;
|
|
|
|
while (true) {
|
|
string const word = bv->nextWord(newval);
|
|
if (word.empty()) break;
|
|
++word_count;
|
|
|
|
// Update slider if and only if value has changed
|
|
newvalue = int(100.0*newval);
|
|
if (newvalue!= oldval) {
|
|
oldval = newvalue;
|
|
fl_set_slider_value(fd_form_spell_check->slider, oldval);
|
|
}
|
|
|
|
if (word_count%1000 == 0) {
|
|
obj = fl_check_forms();
|
|
if (obj == fd_form_spell_check->stop) {
|
|
close_spell_checker();
|
|
return true;
|
|
}
|
|
if (obj == fd_form_spell_check->done) {
|
|
close_spell_checker();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
result = sc_check_word(word);
|
|
if (!sc_still_alive()) {
|
|
delete result;
|
|
break;
|
|
}
|
|
|
|
switch (result->flag) {
|
|
case ISP_UNKNOWN:
|
|
case ISP_MISSED:
|
|
{
|
|
bv->selectLastWord();
|
|
if (rtl) {
|
|
string tmp = word;
|
|
reverse(tmp.begin(),tmp.end());
|
|
fl_set_object_label(fd_form_spell_check->text, tmp.c_str());
|
|
} else
|
|
fl_set_object_label(fd_form_spell_check->text, word.c_str());
|
|
fl_set_input(fd_form_spell_check->input, word.c_str());
|
|
fl_clear_browser(fd_form_spell_check->browser);
|
|
const char * w;
|
|
while ((w = result->next_miss()) != 0) {
|
|
if (rtl) {
|
|
string tmp = w;
|
|
reverse(tmp.begin(),tmp.end());
|
|
fl_add_browser_line(fd_form_spell_check->browser, tmp.c_str());
|
|
} else
|
|
fl_add_browser_line(fd_form_spell_check->browser, w);
|
|
}
|
|
|
|
int clickline = -1;
|
|
while (true) {
|
|
obj = fl_do_forms();
|
|
if (obj == fd_form_spell_check->insert) {
|
|
sc_insert_word(word);
|
|
break;
|
|
}
|
|
if (obj == fd_form_spell_check->accept) {
|
|
sc_accept_word(word);
|
|
break;
|
|
}
|
|
if (obj == fd_form_spell_check->ignore) {
|
|
break;
|
|
}
|
|
if (obj == fd_form_spell_check->replace ||
|
|
obj == fd_form_spell_check->input) {
|
|
sc_store_replacement(word, fl_get_input(fd_form_spell_check->input));
|
|
bv->replaceWord(fl_get_input(fd_form_spell_check->input));
|
|
break;
|
|
}
|
|
if (obj == fd_form_spell_check->browser) {
|
|
// implements double click in the browser window.
|
|
// sent to lyx@via by Mark Burton <mark@cbl.leeds.ac.uk>
|
|
if (clickline ==
|
|
fl_get_browser(fd_form_spell_check->browser)) {
|
|
sc_store_replacement(word, fl_get_input(fd_form_spell_check->input));
|
|
bv->replaceWord(fl_get_input(fd_form_spell_check->input));
|
|
break;
|
|
}
|
|
clickline = fl_get_browser(fd_form_spell_check->browser);
|
|
/// Why not use
|
|
/// fl_set_input(fd_form_spell_check->input, result->misses[clickline-1]); ?
|
|
if (rtl) {
|
|
string tmp = fl_get_browser_line(fd_form_spell_check->browser,
|
|
clickline);
|
|
reverse(tmp.begin(),tmp.end());
|
|
fl_set_input(fd_form_spell_check->input, tmp.c_str());
|
|
} else
|
|
fl_set_input(fd_form_spell_check->input,
|
|
fl_get_browser_line(fd_form_spell_check->browser,
|
|
clickline));
|
|
}
|
|
if (obj == fd_form_spell_check->stop) {
|
|
delete result;
|
|
close_spell_checker();
|
|
return true;
|
|
}
|
|
|
|
if (obj == fd_form_spell_check->done) {
|
|
delete result;
|
|
close_spell_checker();
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
default:
|
|
delete result;
|
|
}
|
|
}
|
|
|
|
if (sc_still_alive()) {
|
|
close_spell_checker();
|
|
string word_msg(tostr(word_count));
|
|
if (word_count != 1) {
|
|
word_msg += _(" words checked.");
|
|
} else {
|
|
word_msg += _(" word checked.");
|
|
}
|
|
fl_show_message("", _("Spellchecking completed!"),
|
|
word_msg.c_str());
|
|
return false;
|
|
} else {
|
|
fl_show_message(_("The spell checker has died for some reason.\n"
|
|
"Maybe it has been killed."), "", "");
|
|
sc_clean_up_after_error();
|
|
return true;
|
|
}
|
|
}
|
|
|
|
} // namespace anon
|
|
|
|
#ifdef WITH_WARNINGS
|
|
#warning should go somewhere more sensible
|
|
#endif
|
|
void sigchldhandler(pid_t pid, int * status)
|
|
{
|
|
#ifndef USE_PSPELL
|
|
if (isp_pid > 0)
|
|
if (pid == isp_pid) {
|
|
isp_pid= -1;
|
|
fcntl(isp_fd, F_SETFL, O_NONBLOCK); /* set the file descriptor
|
|
to nonblocking so we can
|
|
continue */
|
|
}
|
|
#endif
|
|
sigchldchecker(pid, status);
|
|
}
|
|
|
|
|