1999-09-27 18:44:28 +00:00
|
|
|
/* This file is part of
|
1999-11-15 12:01:38 +00:00
|
|
|
* ======================================================
|
1999-10-02 16:21:10 +00:00
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
* Copyright 1995-1999 The LyX Team.
|
|
|
|
*
|
1999-11-15 12:01:38 +00:00
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cctype>
|
|
|
|
#include <cstring>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "lyxlookup.h"
|
|
|
|
#include "kbmap.h"
|
|
|
|
#include "lyxfunc.h"
|
|
|
|
#include "bufferlist.h"
|
|
|
|
#include "lyxserver.h"
|
|
|
|
#include "lyx.h"
|
|
|
|
#include "intl.h"
|
|
|
|
#include "lyx_main.h"
|
|
|
|
#include "lyx_cb.h"
|
1999-11-15 12:01:38 +00:00
|
|
|
#if 0
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "insets/insetlatex.h"
|
1999-11-15 12:01:38 +00:00
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "insets/inseturl.h"
|
|
|
|
#include "insets/insetlatexaccent.h"
|
|
|
|
#include "insets/insettoc.h"
|
|
|
|
#include "insets/insetlof.h"
|
|
|
|
#include "insets/insetloa.h"
|
|
|
|
#include "insets/insetlot.h"
|
|
|
|
#include "insets/insetref.h"
|
|
|
|
#include "insets/insetparent.h"
|
1999-11-15 12:01:38 +00:00
|
|
|
#include "insets/insetindex.h"
|
|
|
|
#include "insets/insetinclude.h"
|
|
|
|
#include "insets/insetbib.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "mathed/formulamacro.h"
|
|
|
|
#include "toolbar.h"
|
|
|
|
#include "spellchecker.h" // RVDK_PATCH_5
|
|
|
|
#include "minibuffer.h"
|
|
|
|
#include "vspace.h"
|
|
|
|
#include "LyXView.h"
|
|
|
|
#include "filedlg.h"
|
|
|
|
#include "lyx_gui_misc.h"
|
1999-10-02 16:21:10 +00:00
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/FileInfo.h"
|
1999-11-04 01:40:20 +00:00
|
|
|
#include "support/LAssert.h"
|
1999-11-15 12:01:38 +00:00
|
|
|
#include "support/syscall.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "support/path.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "lyxscreen.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
#include "debug.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "lyxtext.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
#include "trans_mgr.h"
|
|
|
|
#include "ImportLaTeX.h"
|
|
|
|
#include "ImportNoweb.h"
|
1999-11-04 01:40:20 +00:00
|
|
|
#include "layout.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
extern bool cursor_follows_scrollbar;
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
extern void InsertAsciiFile(string const &, bool);
|
1999-09-27 18:44:28 +00:00
|
|
|
extern void math_insert_symbol(char const*);
|
|
|
|
extern Bool math_insert_greek(char const); // why "Bool"?
|
|
|
|
extern BufferList bufferlist;
|
1999-11-04 01:40:20 +00:00
|
|
|
extern LyXServer * lyxserver;
|
1999-09-27 18:44:28 +00:00
|
|
|
extern short greek_kb_flag;
|
1999-11-04 01:40:20 +00:00
|
|
|
extern FD_form_toc * fd_form_toc;
|
1999-09-27 18:44:28 +00:00
|
|
|
extern bool selection_possible;
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
extern kb_keymap * toplevel_keymap;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
extern void BeforeChange();
|
|
|
|
extern void MenuWrite(Buffer*);
|
|
|
|
extern void MenuWriteAs(Buffer*);
|
|
|
|
extern int MenuRunLaTeX(Buffer*);
|
|
|
|
extern int MenuBuildProg(Buffer*);
|
|
|
|
extern int MenuRunChktex(Buffer*);
|
1999-11-15 12:01:38 +00:00
|
|
|
extern bool MenuRunDvips(Buffer *, bool);
|
1999-09-27 18:44:28 +00:00
|
|
|
extern void MenuPrint(Buffer*);
|
|
|
|
extern void MenuSendto();
|
|
|
|
extern void QuitLyX();
|
|
|
|
extern void MenuFax(Buffer *);
|
|
|
|
extern void MenuMakeLaTeX(Buffer *);
|
|
|
|
extern void MenuMakeLinuxDoc(Buffer *);
|
|
|
|
extern void MenuMakeDocBook(Buffer *);
|
|
|
|
extern void MenuMakeAscii(Buffer *);
|
|
|
|
extern void MenuPasteSelection(char at);
|
|
|
|
extern LyXAction lyxaction;
|
|
|
|
// (alkis)
|
|
|
|
extern tex_accent_struct get_accent(kb_action action);
|
|
|
|
|
|
|
|
extern void AutoSave();
|
|
|
|
extern void MenuSearch();
|
|
|
|
extern void CopyCB();
|
|
|
|
extern void CopyEnvironmentCB();
|
|
|
|
extern void PasteEnvironmentCB();
|
|
|
|
extern void GotoNote();
|
|
|
|
extern void NoteCB();
|
|
|
|
extern void OpenStuff();
|
|
|
|
extern void HyphenationPoint();
|
|
|
|
extern void Ldots();
|
|
|
|
extern void EndOfSentenceDot();
|
|
|
|
extern void MenuSeparator();
|
|
|
|
extern void HFill();
|
|
|
|
extern void MenuUndo();
|
|
|
|
extern void MenuRedo();
|
|
|
|
extern void SmallUpdate(signed char);
|
|
|
|
extern void SetUpdateTimer(float timer= 0.3);
|
|
|
|
extern void FreeUpdateTimer();
|
|
|
|
extern bool MenuPreview(Buffer*);
|
|
|
|
extern bool MenuPreviewPS(Buffer*);
|
1999-11-15 12:01:38 +00:00
|
|
|
extern void MenuInsertLabel(char const *);
|
1999-09-27 18:44:28 +00:00
|
|
|
extern void MenuInsertRef();
|
|
|
|
extern void MenuLayoutCharacter();
|
|
|
|
extern void MenuLayoutParagraph();
|
|
|
|
extern void MenuLayoutDocument();
|
|
|
|
extern void MenuLayoutPaper();
|
|
|
|
extern void MenuLayoutTable(int flag);
|
|
|
|
extern void MenuLayoutQuotes();
|
|
|
|
extern void MenuLayoutPreamble();
|
|
|
|
extern void MenuLayoutSave();
|
|
|
|
extern void bulletForm();
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
extern Buffer * NewLyxFile(string const &);
|
|
|
|
extern void LoadLyXFile(string const &);
|
1999-09-27 18:44:28 +00:00
|
|
|
extern void Reconfigure();
|
|
|
|
|
|
|
|
extern int current_layout;
|
|
|
|
extern int getISOCodeFromLaTeX(char *);
|
|
|
|
|
|
|
|
extern int UnlockInset(UpdatableInset*);
|
|
|
|
|
|
|
|
extern void ShowLatexLog();
|
|
|
|
|
|
|
|
extern void UpdateInset(Inset* inset, bool mark_dirty = true);
|
|
|
|
|
|
|
|
/* === globals =========================================================== */
|
|
|
|
|
|
|
|
bool LyXFunc::show_sc = true;
|
|
|
|
|
|
|
|
|
|
|
|
LyXFunc::LyXFunc(LyXView *o)
|
|
|
|
:owner(o)
|
|
|
|
{
|
|
|
|
meta_fake_bit = 0;
|
|
|
|
lyx_dead_action = LFUN_NOACTION;
|
|
|
|
lyx_calling_dead_action = LFUN_NOACTION;
|
|
|
|
setupLocalKeymap();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LyXFunc::~LyXFunc()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// I changed this func slightly. I commented out the ...FinishUndo(),
|
|
|
|
// this means that all places that used to have a moveCursorUpdate, now
|
|
|
|
// have a ...FinishUndo() as the preceeding statement. I have also added
|
|
|
|
// a moveCursorUpdate to some of the functions that updated the cursor, but
|
|
|
|
// that did not show its new position.
|
|
|
|
inline
|
|
|
|
void LyXFunc::moveCursorUpdate(bool selecting)
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
if (selecting || owner->buffer()->text->mark_set) {
|
|
|
|
owner->buffer()->text->SetSelection();
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->getScreen()->ToggleToggle();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(0);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2); // this IS necessary
|
1999-09-27 18:44:28 +00:00
|
|
|
// (Matthias)
|
|
|
|
}
|
|
|
|
owner->currentView()->getScreen()->ShowCursor();
|
|
|
|
|
|
|
|
/* ---> Everytime the cursor is moved, show the current font state. */
|
|
|
|
// should this too me moved out of this func?
|
|
|
|
//owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int LyXFunc::processKeyEvent(XEvent *ev)
|
|
|
|
{
|
|
|
|
char s_r[10];
|
|
|
|
s_r[9] = '\0';
|
|
|
|
int num_bytes;
|
|
|
|
int action;
|
1999-10-20 14:35:05 +00:00
|
|
|
string argument;
|
1999-09-27 18:44:28 +00:00
|
|
|
XKeyEvent *keyevent = &ev->xkey;
|
|
|
|
KeySym keysym_return;
|
|
|
|
|
|
|
|
num_bytes = LyXLookupString(ev, s_r, 10, &keysym_return);
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
if (lyxerr.debugging(Debug::KEY)) {
|
|
|
|
lyxerr << "KeySym is "
|
|
|
|
<< XKeysymToString(keysym_return)
|
|
|
|
<< "["
|
|
|
|
<< keysym_return << "]"
|
|
|
|
<< " and num_bytes is "
|
|
|
|
<< num_bytes
|
|
|
|
<< " the string returned is \""
|
|
|
|
<< s_r << '\"' << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
// Do nothing if we have nothing (JMarc)
|
|
|
|
if (num_bytes == 0 && keysym_return == NoSymbol) {
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr[Debug::KEY] << "Empty kbd action (probably composing)"
|
|
|
|
<< endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this function should be used always [asierra060396]
|
|
|
|
if (owner->currentView()->available() &&
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->the_locking_inset &&
|
1999-09-27 18:44:28 +00:00
|
|
|
keysym_return == XK_Escape) {
|
1999-11-09 23:52:04 +00:00
|
|
|
UnlockInset(owner->buffer()->the_locking_inset);
|
|
|
|
owner->buffer()->text->CursorRight();
|
1999-09-27 18:44:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Can we be sure that this will work for all X-Windows
|
|
|
|
// implementations? (Lgb)
|
|
|
|
// This code snippet makes lyx ignore some keys. Perhaps
|
|
|
|
// all of them should be explictly mentioned?
|
|
|
|
if((keysym_return >= XK_Shift_L && keysym_return <= XK_Hyper_R)
|
|
|
|
|| keysym_return == XK_Mode_switch || keysym_return == 0x0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Do a one-deep top-level lookup for
|
|
|
|
// cancel and meta-fake keys. RVDK_PATCH_5
|
|
|
|
cancel_meta_seq.reset();
|
|
|
|
|
|
|
|
action = cancel_meta_seq.addkey(keysym_return, keyevent->state
|
|
|
|
&(ShiftMask|ControlMask
|
|
|
|
|Mod1Mask));
|
|
|
|
|
|
|
|
// When not cancel or meta-fake, do the normal lookup.
|
|
|
|
// Note how the meta_fake Mod1 bit is OR-ed in and reset afterwards.
|
|
|
|
// Mostly, meta_fake_bit = 0. RVDK_PATCH_5.
|
|
|
|
if ( (action != LFUN_CANCEL) && (action != LFUN_META_FAKE) ) {
|
|
|
|
|
|
|
|
// remove Caps Lock and Mod2 as a modifiers
|
|
|
|
action = keyseq.addkey(keysym_return,
|
|
|
|
(keyevent->state | meta_fake_bit)
|
|
|
|
&(ShiftMask|ControlMask
|
|
|
|
|Mod1Mask));
|
|
|
|
}
|
|
|
|
// Dont remove this unless you know what you are doing.
|
|
|
|
meta_fake_bit = 0;
|
|
|
|
|
|
|
|
if (action == 0) action = LFUN_PREFIX;
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
if (lyxerr.debugging(Debug::KEY)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
char buf[100];
|
1999-11-15 12:01:38 +00:00
|
|
|
keyseq.print(buf, 100);
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr << "Key ["
|
|
|
|
<< action << "]["
|
|
|
|
<< buf << "]["
|
|
|
|
<< num_bytes << "]" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// already here we know if it any point in going further
|
|
|
|
// why not return already here if action == -1 and
|
|
|
|
// num_bytes == 0? (Lgb)
|
|
|
|
|
|
|
|
if(keyseq.length>1 || keyseq.length<-1){
|
|
|
|
char buf[100];
|
1999-11-15 12:01:38 +00:00
|
|
|
keyseq.print(buf, 100);
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->getMiniBuffer()->Set(buf);
|
|
|
|
}
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
if (action == -1) {
|
1999-09-27 18:44:28 +00:00
|
|
|
if (keyseq.length<-1) { // unknown key sequence...
|
|
|
|
char buf[100];
|
|
|
|
LyXBell();
|
1999-11-15 12:01:38 +00:00
|
|
|
keyseq.print(buf, 100);
|
|
|
|
owner->getMiniBuffer()->Set(_("Unknown sequence:"), buf);
|
1999-09-27 18:44:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
char isochar = keyseq.getiso();
|
|
|
|
if (!(keyevent->state&ControlMask) &&
|
|
|
|
!(keyevent->state&Mod1Mask) &&
|
|
|
|
(isochar && keysym_return < 0xF000)) {
|
1999-10-20 14:35:05 +00:00
|
|
|
argument += isochar;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
1999-10-20 14:35:05 +00:00
|
|
|
if (argument.empty()) {
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr.debug() << "Empty argument!" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
// This can`t possibly be of any use
|
|
|
|
// so we`ll skip the dispatch.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else
|
1999-11-15 12:01:38 +00:00
|
|
|
if (action == LFUN_SELFINSERT) {
|
1999-10-20 14:35:05 +00:00
|
|
|
argument = s_r[0];
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool tmp_sc = show_sc;
|
|
|
|
show_sc = false;
|
1999-10-20 14:35:05 +00:00
|
|
|
Dispatch(action, argument.c_str());
|
1999-09-27 18:44:28 +00:00
|
|
|
show_sc = tmp_sc;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-18 14:12:19 +00:00
|
|
|
string LyXFunc::Dispatch(string const& s)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-11-18 14:12:19 +00:00
|
|
|
// Split command string into command and argument
|
|
|
|
string cmd, line = frontStrip(s);
|
|
|
|
string arg = strip(frontStrip(split(line, cmd, ' ')));
|
|
|
|
|
|
|
|
return Dispatch(lyxaction.LookupFunc(cmd.c_str()), arg.c_str());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
string LyXFunc::Dispatch(int ac,
|
1999-09-27 18:44:28 +00:00
|
|
|
char const *do_not_use_this_arg)
|
|
|
|
{
|
1999-10-20 14:35:05 +00:00
|
|
|
string argument;
|
1999-09-27 18:44:28 +00:00
|
|
|
kb_action action;
|
|
|
|
|
|
|
|
|
|
|
|
FL_OBJECT *ob = 0; // This will disapear soon
|
|
|
|
|
|
|
|
// we have not done anything wrong yet.
|
|
|
|
errorstat = false;
|
1999-10-02 16:21:10 +00:00
|
|
|
dispatch_buffer = string();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// if action is a pseudo-action, we need the real action
|
|
|
|
if (lyxaction.isPseudoAction(ac)) {
|
|
|
|
char const *tmparg = 0;
|
|
|
|
action = (kb_action)lyxaction.retrieveActionArg(ac, &tmparg);
|
|
|
|
if (tmparg)
|
|
|
|
argument = tmparg;
|
|
|
|
} else {
|
|
|
|
action = (kb_action)ac;
|
1999-10-20 14:35:05 +00:00
|
|
|
if (do_not_use_this_arg)
|
|
|
|
argument = do_not_use_this_arg; // except here
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
|
|
|
if (owner->currentView()->available()
|
|
|
|
&& owner->currentView()->getScreen())
|
|
|
|
owner->currentView()->getScreen()->HideCursor();
|
|
|
|
|
|
|
|
if(!owner->currentView()->available()) {
|
|
|
|
// This lists the allowed funcs when we have no
|
|
|
|
// buffer loaded
|
|
|
|
switch(action){
|
|
|
|
case LFUN_MENU_OPEN_BY_NAME:
|
|
|
|
case LFUN_PREFIX:
|
|
|
|
case LFUN_MENUNEW:
|
|
|
|
case LFUN_MENUNEWTMPLT:
|
|
|
|
case LFUN_MENUOPEN:
|
|
|
|
case LFUN_QUIT:
|
|
|
|
case LFUN_PUSH_TOOLBAR:
|
|
|
|
case LFUN_ADD_TO_TOOLBAR:
|
|
|
|
case LFUN_EXEC_COMMAND:
|
|
|
|
case LFUN_DROP_LAYOUTS_CHOICE:
|
|
|
|
case LFUN_FILE_NEW:
|
|
|
|
case LFUN_FILE_OPEN:
|
|
|
|
case LFUN_IMPORT:
|
|
|
|
case LFUN_RECONFIGURE:
|
|
|
|
case LFUN_CANCEL:
|
|
|
|
case LFUN_APROPOS:
|
|
|
|
case LFUN_META_FAKE:
|
|
|
|
|
|
|
|
break;
|
|
|
|
case LFUN_UNKNOWN_ACTION:
|
|
|
|
setErrorMessage(N_("Unknown action"));
|
|
|
|
goto exit_with_message;
|
|
|
|
default:
|
|
|
|
setErrorMessage(N_("Command not allowed with"
|
|
|
|
"out any document open"));
|
|
|
|
goto exit_with_message; // action not allowed
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
commandshortcut = string();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
if (lyxrc->display_shortcuts && show_sc) {
|
|
|
|
if (action != LFUN_SELFINSERT) {
|
|
|
|
// Put name of command and list of shortcuts
|
|
|
|
// for it in minibuffer
|
1999-10-02 16:21:10 +00:00
|
|
|
string comname = lyxaction.getActionName(action);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
int pseudoaction = action;
|
|
|
|
bool argsadded = false;
|
|
|
|
|
1999-10-20 14:35:05 +00:00
|
|
|
if (!argument.empty()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
// If we have the command with argument,
|
|
|
|
// this is better
|
|
|
|
pseudoaction =
|
|
|
|
lyxaction.searchActionArg(action,
|
1999-10-20 14:35:05 +00:00
|
|
|
argument.c_str());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
if (pseudoaction == -1) {
|
|
|
|
pseudoaction = action;
|
|
|
|
} else {
|
1999-10-20 14:35:05 +00:00
|
|
|
comname += " " + argument;
|
1999-09-27 18:44:28 +00:00
|
|
|
argsadded = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
string shortcuts = toplevel_keymap->findbinding(pseudoaction);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
if (!shortcuts.empty()) {
|
|
|
|
comname += ": " + shortcuts;
|
|
|
|
} else if (!argsadded) {
|
1999-10-20 14:35:05 +00:00
|
|
|
comname += " " + argument;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!comname.empty()) {
|
1999-10-02 16:21:10 +00:00
|
|
|
comname = strip(comname);
|
1999-09-27 18:44:28 +00:00
|
|
|
commandshortcut = "(" + comname + ')';
|
|
|
|
owner->getMiniBuffer()->Set(commandshortcut);
|
|
|
|
// Here we could even add a small pause,
|
|
|
|
// to annoy the user and make him learn
|
|
|
|
// the shortcuts.
|
|
|
|
// No! That will just annoy, not teach
|
|
|
|
// anything. The user will read the messages
|
|
|
|
// if they are interested. (Asger)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now that we know which action, if the buffer is RO let's check
|
|
|
|
// whether the action is legal. Alejandro 970603
|
|
|
|
if (owner->currentView()->available() &&
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->isReadonly() &&
|
1999-09-27 18:44:28 +00:00
|
|
|
lyxaction.isFuncRO(action)) {
|
|
|
|
setErrorMessage(N_("Document is read-only"));
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr.debug() << "Error: Document is read-only." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
goto exit_with_message;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If in math mode pass the control to
|
|
|
|
// the math inset [asierra060396]
|
|
|
|
if (owner->currentView()->available() &&
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->the_locking_inset) {
|
1999-11-15 12:01:38 +00:00
|
|
|
if (action>1 || (action == LFUN_UNKNOWN_ACTION && keyseq.length>= -1)) {
|
|
|
|
if (action == LFUN_UNKNOWN_ACTION && argument.empty()) {
|
1999-10-20 14:35:05 +00:00
|
|
|
argument = keyseq.getiso();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
// Undo/Redo pre 0.13 is a bit tricky for insets.
|
1999-11-15 12:01:38 +00:00
|
|
|
if (action == LFUN_UNDO) {
|
1999-09-27 18:44:28 +00:00
|
|
|
int slx, sly;
|
1999-11-15 12:01:38 +00:00
|
|
|
UpdatableInset* inset =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->the_locking_inset;
|
1999-09-27 18:44:28 +00:00
|
|
|
inset->GetCursorPos(slx, sly);
|
|
|
|
UnlockInset(inset);
|
|
|
|
MenuUndo();
|
1999-11-09 23:52:04 +00:00
|
|
|
inset = (UpdatableInset*)owner->buffer()->text->cursor.par->GetInset(owner->buffer()->text->cursor.pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (inset)
|
|
|
|
inset->Edit(slx, sly);
|
1999-10-02 16:21:10 +00:00
|
|
|
return string();
|
1999-09-27 18:44:28 +00:00
|
|
|
} else
|
1999-11-15 12:01:38 +00:00
|
|
|
if (action == LFUN_REDO) {
|
1999-09-27 18:44:28 +00:00
|
|
|
int slx, sly;
|
1999-11-09 23:52:04 +00:00
|
|
|
UpdatableInset* inset = owner->buffer()->the_locking_inset;
|
1999-09-27 18:44:28 +00:00
|
|
|
inset->GetCursorPos(slx, sly);
|
|
|
|
UnlockInset(inset);
|
|
|
|
MenuRedo();
|
1999-11-09 23:52:04 +00:00
|
|
|
inset = (UpdatableInset*)owner->buffer()->text->cursor.par->GetInset(owner->buffer()->text->cursor.pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (inset)
|
|
|
|
inset->Edit(slx, sly);
|
1999-10-02 16:21:10 +00:00
|
|
|
return string();
|
1999-09-27 18:44:28 +00:00
|
|
|
} else
|
1999-11-09 23:52:04 +00:00
|
|
|
if (owner->buffer()->the_locking_inset->LocalDispatch(action, argument.c_str()))
|
1999-10-02 16:21:10 +00:00
|
|
|
return string();
|
1999-09-27 18:44:28 +00:00
|
|
|
else {
|
|
|
|
setMessage(N_("Text mode"));
|
1999-11-15 12:01:38 +00:00
|
|
|
if (action == LFUN_RIGHT || action == -1)
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->CursorRight();
|
1999-11-15 12:01:38 +00:00
|
|
|
if (action == LFUN_LEFT || action == LFUN_RIGHT)
|
1999-10-02 16:21:10 +00:00
|
|
|
return string();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(action) {
|
|
|
|
// --- Misc -------------------------------------------
|
|
|
|
case LFUN_WORDFINDFORWARD :
|
1999-11-09 23:52:04 +00:00
|
|
|
case LFUN_WORDFINDBACKWARD : {
|
1999-10-02 16:21:10 +00:00
|
|
|
static string last_search;
|
|
|
|
string searched_string;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-10-20 14:35:05 +00:00
|
|
|
if (!argument.empty()) {
|
|
|
|
last_search = argument;
|
|
|
|
searched_string = argument;
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
|
|
|
searched_string = last_search;
|
|
|
|
}
|
|
|
|
|
1999-11-09 23:52:04 +00:00
|
|
|
LyXText * ltCur = owner->currentView()->buffer()->text ;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
if (!searched_string.empty() &&
|
|
|
|
( (action == LFUN_WORDFINDBACKWARD) ?
|
|
|
|
ltCur->SearchBackward( searched_string.c_str() ) :
|
|
|
|
ltCur->SearchForward( searched_string.c_str() )
|
|
|
|
)){
|
|
|
|
|
|
|
|
// ??? What is that ???
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer()->update(-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// ??? Needed ???
|
|
|
|
// clear the selection (if there is any)
|
|
|
|
owner->currentView()->getScreen()->ToggleSelection();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer()->text->ClearSelection();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Move cursor so that successive C-s 's will not stand in place.
|
|
|
|
if( action == LFUN_WORDFINDFORWARD )
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->CursorRightOneWord();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
|
|
|
|
// ??? Needed ???
|
|
|
|
// set the new selection
|
|
|
|
// SetSelectionOverLenChars(owner->currentView()->currentBuffer()->text, iLenSelected);
|
|
|
|
owner->currentView()->getScreen()->ToggleSelection(false);
|
|
|
|
} else
|
|
|
|
LyXBell();
|
|
|
|
|
|
|
|
// REMOVED : if (owner->currentView()->getWorkArea()->focus)
|
|
|
|
owner->currentView()->getScreen()->ShowCursor();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_PREFIX:
|
|
|
|
{
|
|
|
|
if (owner->currentView()->available()
|
|
|
|
&& owner->currentView()->getScreen()) {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
char buf[100];
|
1999-11-15 12:01:38 +00:00
|
|
|
keyseq.print(buf, 100, true);
|
1999-10-02 16:21:10 +00:00
|
|
|
owner->getMiniBuffer()->Set(buf, string(), string(), 1);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// --- Misc -------------------------------------------
|
|
|
|
case LFUN_EXEC_COMMAND:
|
|
|
|
owner->getMiniBuffer()->ExecCommand();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_CANCEL: // RVDK_PATCH_5
|
|
|
|
keyseq.reset();
|
|
|
|
meta_fake_bit = 0;
|
|
|
|
if(owner->currentView()->available())
|
|
|
|
// cancel any selection
|
1999-10-02 16:21:10 +00:00
|
|
|
Dispatch(int(LFUN_MARK_OFF), 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
setMessage(N_("Cancel"));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_META_FAKE: // RVDK_PATCH_5
|
|
|
|
{
|
|
|
|
meta_fake_bit = Mod1Mask;
|
|
|
|
char buf[100];
|
|
|
|
keyseq.print(buf, 98, true);
|
1999-10-02 16:21:10 +00:00
|
|
|
string res = string("M-") + buf;
|
1999-09-27 18:44:28 +00:00
|
|
|
setMessage(buf); // RVDK_PATCH_5
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_READ_ONLY_TOGGLE:
|
1999-11-09 23:52:04 +00:00
|
|
|
if (owner->buffer()->lyxvc.inUse()) {
|
|
|
|
owner->buffer()->lyxvc.toggleReadOnly();
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->setReadonly(
|
|
|
|
!owner->buffer()->isReadonly());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_CENTER: // this is center and redraw.
|
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
if (owner->buffer()->text->cursor.y >
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->getWorkArea()->h / 2) {
|
|
|
|
owner->currentView()->getScreen()->
|
1999-11-09 23:52:04 +00:00
|
|
|
Draw(owner->buffer()->text->cursor.y -
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->getWorkArea()->h/2);
|
1999-11-15 12:01:38 +00:00
|
|
|
} else { // <=
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->getScreen()->
|
|
|
|
Draw(0);
|
|
|
|
}
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(0);
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->redraw();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_APPENDIX:
|
|
|
|
if (owner->currentView()->available()) {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->toggleAppendix();
|
|
|
|
owner->buffer()->update(1);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// --- Menus -----------------------------------------------
|
|
|
|
case LFUN_MENUNEW:
|
|
|
|
MenuNew(false);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MENUNEWTMPLT:
|
|
|
|
MenuNew(true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MENUOPEN:
|
|
|
|
MenuOpen();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_CLOSEBUFFER:
|
|
|
|
CloseBuffer();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MENUWRITE:
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuWrite(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MENUWRITEAS:
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuWriteAs(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MENURELOAD:
|
|
|
|
reloadBuffer();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_PREVIEW:
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuPreview(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_PREVIEWPS:
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuPreviewPS(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_RUNLATEX:
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuRunLaTeX(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BUILDPROG:
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuBuildProg(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_RUNCHKTEX:
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuRunChktex(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_RUNDVIPS:
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuRunDvips(owner->buffer(), false);
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MENUPRINT:
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuPrint(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FAX:
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuFax(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_EXPORT:
|
|
|
|
{
|
|
|
|
//needs argument as string
|
1999-11-15 12:01:38 +00:00
|
|
|
string extyp= argument;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// latex
|
|
|
|
if (extyp == "latex") {
|
|
|
|
// make sure that this buffer is not linuxdoc
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuMakeLaTeX(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
// linuxdoc
|
|
|
|
else if (extyp == "linuxdoc") {
|
|
|
|
// make sure that this buffer is not latex
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuMakeLinuxDoc(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
// docbook
|
|
|
|
else if (extyp == "docbook") {
|
|
|
|
// make sure that this buffer is not latex or linuxdoc
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuMakeDocBook(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
// dvi
|
|
|
|
else if (extyp == "dvi") {
|
|
|
|
// Run LaTeX as "Update dvi..." Bernhard.
|
|
|
|
// We want the dvi in the current directory. This
|
|
|
|
// is achieved by temporarily disabling use of
|
|
|
|
// temp directory. As a side-effect, we get
|
|
|
|
// *.log and *.aux files also. (Asger)
|
|
|
|
bool flag = lyxrc->use_tempdir;
|
|
|
|
lyxrc->use_tempdir = false;
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuRunLaTeX(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
lyxrc->use_tempdir = flag;
|
|
|
|
}
|
|
|
|
// postscript
|
|
|
|
else if (extyp == "postscript") {
|
|
|
|
// Start Print-dialog. Not as good as dvi... Bernhard.
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuPrint(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
// Since the MenuPrint is a pop-up, we can't use
|
|
|
|
// the same trick as above. (Asger)
|
|
|
|
// MISSING: Move of ps-file :-(
|
|
|
|
}
|
|
|
|
// ascii
|
|
|
|
else if (extyp == "ascii") {
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuMakeAscii(owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
else if (extyp == "custom") {
|
|
|
|
MenuSendto();
|
|
|
|
break;
|
|
|
|
}
|
1999-10-12 21:37:10 +00:00
|
|
|
// HTML
|
1999-11-02 16:41:28 +00:00
|
|
|
else if (extyp == "html" && lyxrc->html_command != "none") {
|
1999-10-12 21:37:10 +00:00
|
|
|
// First, create LaTeX file
|
1999-11-09 23:52:04 +00:00
|
|
|
MenuMakeLaTeX(owner->buffer());
|
1999-10-12 21:37:10 +00:00
|
|
|
|
1999-11-02 16:41:28 +00:00
|
|
|
// And now, run the converter
|
1999-11-09 23:52:04 +00:00
|
|
|
string file = owner->buffer()->getFileName();
|
1999-11-02 16:41:28 +00:00
|
|
|
Path path(OnlyPath(file));
|
|
|
|
// the tex file name has to be correct for
|
|
|
|
// latex, but the html file name can be
|
|
|
|
// anything.
|
1999-10-12 21:37:10 +00:00
|
|
|
string result = ChangeExtension(file, ".html", false);
|
1999-11-02 16:41:28 +00:00
|
|
|
file = ChangeExtension(SpaceLess(file), ".tex", false);
|
|
|
|
string tmp = lyxrc->html_command;
|
|
|
|
tmp = subst(tmp, "$$FName", file);
|
|
|
|
tmp = subst(tmp, "$$OutName", result);
|
1999-10-12 21:37:10 +00:00
|
|
|
Systemcalls one;
|
|
|
|
int res = one.startscript(Systemcalls::System, tmp);
|
|
|
|
if (res == 0) {
|
1999-11-02 16:41:28 +00:00
|
|
|
setMessage(_("Document exported as HTML to file `")
|
|
|
|
+ MakeDisplayPath(result) +'\'');
|
1999-10-12 21:37:10 +00:00
|
|
|
} else {
|
1999-11-02 16:41:28 +00:00
|
|
|
setErrorMessage(_("Unable to convert to HTML the file `")
|
|
|
|
+ MakeDisplayPath(file)
|
|
|
|
+ '\'');
|
1999-10-12 21:37:10 +00:00
|
|
|
}
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
else {
|
1999-11-02 16:41:28 +00:00
|
|
|
setErrorMessage(_("Unknown export type: ")
|
1999-09-27 18:44:28 +00:00
|
|
|
+ extyp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_IMPORT:
|
|
|
|
{
|
|
|
|
//needs argument as string
|
1999-11-15 12:01:38 +00:00
|
|
|
string imtyp= argument;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// latex
|
|
|
|
if (imtyp == "latex") {
|
|
|
|
doImportLaTeX(false);
|
|
|
|
}
|
|
|
|
// ascii
|
|
|
|
else if (imtyp == "ascii") {
|
|
|
|
doImportASCII(false);
|
|
|
|
} else if (imtyp == "asciiparagraph") {
|
|
|
|
doImportASCII(true);
|
|
|
|
// noweb
|
|
|
|
} else if (imtyp == "noweb") {
|
|
|
|
doImportLaTeX(true);
|
|
|
|
} else {
|
1999-10-02 16:21:10 +00:00
|
|
|
setErrorMessage(string(N_("Unknown import type: "))
|
1999-09-27 18:44:28 +00:00
|
|
|
+ imtyp);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_QUIT:
|
|
|
|
QuitLyX();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_TOCVIEW:
|
|
|
|
TocUpdateCB(ob, 0);
|
|
|
|
if (fd_form_toc->form_toc->visible) {
|
|
|
|
fl_raise_form(fd_form_toc->form_toc);
|
|
|
|
} else {
|
1999-10-25 14:50:26 +00:00
|
|
|
static int ow = -1, oh;
|
1999-09-27 18:44:28 +00:00
|
|
|
fl_show_form(fd_form_toc->form_toc,
|
|
|
|
FL_PLACE_MOUSE |
|
|
|
|
FL_FREE_SIZE, FL_FULLBORDER,
|
|
|
|
_("Table of Contents"));
|
1999-10-25 14:50:26 +00:00
|
|
|
if (ow < 0) {
|
|
|
|
ow = fd_form_toc->form_toc->w;
|
|
|
|
oh = fd_form_toc->form_toc->h;
|
|
|
|
}
|
|
|
|
fl_set_form_minsize(fd_form_toc->form_toc, ow, oh);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_TOC_INSERT:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
Inset *new_inset =
|
1999-11-09 23:52:04 +00:00
|
|
|
new InsetTOC(owner->buffer());
|
|
|
|
owner->buffer()->insertInset(new_inset,
|
1999-09-27 18:44:28 +00:00
|
|
|
"Standard", true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_LOF_INSERT:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
Inset *new_inset =
|
1999-11-09 23:52:04 +00:00
|
|
|
new InsetLOF(owner->buffer());
|
|
|
|
owner->buffer()->insertInset(new_inset,
|
1999-09-27 18:44:28 +00:00
|
|
|
"Standard", true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_LOA_INSERT:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
Inset *new_inset =
|
1999-11-09 23:52:04 +00:00
|
|
|
new InsetLOA(owner->buffer());
|
|
|
|
owner->buffer()->insertInset(new_inset,
|
1999-09-27 18:44:28 +00:00
|
|
|
"Standard", true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_LOT_INSERT:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
Inset *new_inset =
|
1999-11-09 23:52:04 +00:00
|
|
|
new InsetLOT(owner->buffer());
|
|
|
|
owner->buffer()->insertInset(new_inset,
|
1999-09-27 18:44:28 +00:00
|
|
|
"Standard", true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_TABLE:
|
|
|
|
TableCB(ob, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FIGURE:
|
|
|
|
FigureCB(ob, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_AUTOSAVE:
|
|
|
|
AutoSave();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_UNDO:
|
|
|
|
MenuUndo();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_REDO:
|
|
|
|
MenuRedo();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MENUSEARCH:
|
|
|
|
MenuSearch();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_PASTE:
|
|
|
|
PasteCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_PASTESELECTION:
|
|
|
|
{
|
|
|
|
bool asPara = false;
|
1999-10-02 16:21:10 +00:00
|
|
|
if (string(argument) == "paragraph") asPara = true;
|
1999-09-27 18:44:28 +00:00
|
|
|
MenuPasteSelection(asPara);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_CUT:
|
|
|
|
CutCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_COPY:
|
|
|
|
CopyCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUT_COPY:
|
|
|
|
CopyEnvironmentCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUT_PASTE:
|
|
|
|
PasteEnvironmentCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GOTOERROR:
|
|
|
|
owner->currentView()->gotoError();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_REMOVEERRORS:
|
1999-11-09 23:52:04 +00:00
|
|
|
if (owner->buffer()->removeAutoInsets()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->redraw();
|
|
|
|
owner->currentView()->fitCursor();
|
|
|
|
owner->currentView()->updateScrollbar();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GOTONOTE:
|
|
|
|
GotoNote();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_OPENSTUFF:
|
|
|
|
OpenStuff();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_HYPHENATION:
|
|
|
|
HyphenationPoint();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LDOTS:
|
|
|
|
Ldots();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_END_OF_SENTENCE:
|
|
|
|
EndOfSentenceDot();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MENU_SEPARATOR:
|
|
|
|
MenuSeparator();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_HFILL:
|
|
|
|
HFill();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DEPTH:
|
|
|
|
DepthCB(ob, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DEPTH_MIN:
|
|
|
|
DepthCB(ob, -1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DEPTH_PLUS:
|
|
|
|
DepthCB(ob, 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FREE:
|
|
|
|
FreeCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_TEX:
|
|
|
|
TexCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MELT:
|
|
|
|
MeltCB(ob, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_RECONFIGURE:
|
|
|
|
Reconfigure();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FOOTMELT:
|
|
|
|
if (owner->currentView()->available()
|
1999-11-09 23:52:04 +00:00
|
|
|
&& !owner->buffer()->text->selection
|
|
|
|
&& owner->buffer()->text->cursor.par->footnoteflag
|
1999-09-27 18:44:28 +00:00
|
|
|
!= LyXParagraph::NO_FOOTNOTE)
|
|
|
|
{ // only melt footnotes with FOOTMELT, not margins etc
|
1999-11-09 23:52:04 +00:00
|
|
|
if(owner->buffer()->text->cursor.par->footnotekind == LyXParagraph::FOOTNOTE)
|
1999-11-15 12:01:38 +00:00
|
|
|
MeltCB(ob, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
FootCB(ob, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MARGINMELT:
|
|
|
|
if (owner->currentView()->available()
|
1999-11-09 23:52:04 +00:00
|
|
|
&& !owner->buffer()->text->selection
|
|
|
|
&& owner->buffer()->text->cursor.par->footnoteflag
|
1999-09-27 18:44:28 +00:00
|
|
|
!= LyXParagraph::NO_FOOTNOTE)
|
|
|
|
{ // only melt margins
|
1999-11-09 23:52:04 +00:00
|
|
|
if(owner->buffer()->text->cursor.par->footnotekind == LyXParagraph::MARGIN)
|
1999-11-15 12:01:38 +00:00
|
|
|
MeltCB(ob, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
MarginCB(ob, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
// --- version control -------------------------------
|
|
|
|
case LFUN_VC_REGISTER:
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
if (!owner->buffer()->lyxvc.inUse())
|
|
|
|
owner->buffer()->lyxvc.registrer();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_VC_CHECKIN:
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
if (owner->buffer()->lyxvc.inUse()
|
|
|
|
&& !owner->buffer()->isReadonly())
|
|
|
|
owner->buffer()->lyxvc.checkIn();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_VC_CHECKOUT:
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
if (owner->buffer()->lyxvc.inUse()
|
|
|
|
&& owner->buffer()->isReadonly())
|
|
|
|
owner->buffer()->lyxvc.checkOut();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_VC_REVERT:
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->lyxvc.revert();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_VC_UNDO:
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->lyxvc.undoLast();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_VC_HISTORY:
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->lyxvc.showLog();
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- buffers ----------------------------------------
|
|
|
|
case LFUN_PREVBUFFER:
|
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
#warning fix this please
|
|
|
|
#endif
|
|
|
|
// it is the LyXView or the BufferView that should
|
|
|
|
// remember the previous buffer, not bufferlist.
|
|
|
|
// if (owner->currentView()->available()){
|
|
|
|
// BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
// owner->buffer()->update(-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
// }
|
|
|
|
// owner->currentView()->setBuffer(bufferlist.prev());
|
|
|
|
|
|
|
|
// owner->currentView()->
|
|
|
|
// resizeCurrentBufferPseudoExpose();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FILE_INSERT:
|
|
|
|
{
|
1999-10-20 14:35:05 +00:00
|
|
|
MenuInsertLyXFile(argument);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FILE_INSERT_ASCII:
|
|
|
|
{
|
|
|
|
bool asPara = false;
|
1999-10-02 16:21:10 +00:00
|
|
|
asPara = (string(argument) == "paragraph");
|
|
|
|
InsertAsciiFile(string(), asPara);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FILE_NEW:
|
|
|
|
{
|
|
|
|
// servercmd: argument must be <file>:<template>
|
|
|
|
Buffer * tmpbuf = 0;
|
|
|
|
tmpbuf = NewLyxFile(argument);
|
|
|
|
if (tmpbuf)
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(tmpbuf);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FILE_OPEN:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(
|
1999-09-27 18:44:28 +00:00
|
|
|
bufferlist.loadLyXFile(argument));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LATEX_LOG:
|
|
|
|
ShowLatexLog();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUTNO:
|
|
|
|
{
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr.debug() << "LFUN_LAYOUTNO: (arg) " << argument << endl;
|
1999-10-20 14:35:05 +00:00
|
|
|
int sel = strToInt(argument);
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr.debug() << "LFUN_LAYOUTNO: (sel) "<< sel << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Should this give a setMessage instead?
|
|
|
|
if (sel == 0)
|
1999-10-02 16:21:10 +00:00
|
|
|
return string(); // illegal argument
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
sel--; // sel 1..., but layout 0...
|
|
|
|
|
|
|
|
// Pretend we got the name instead.
|
|
|
|
Dispatch(int(LFUN_LAYOUT),
|
1999-11-09 23:52:04 +00:00
|
|
|
textclasslist.NameOfLayout(owner->buffer()->
|
1999-09-27 18:44:28 +00:00
|
|
|
text->parameters->
|
|
|
|
textclass,
|
|
|
|
sel).c_str());
|
1999-10-02 16:21:10 +00:00
|
|
|
return string();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_LAYOUT:
|
|
|
|
{
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr.debug() << "LFUN_LAYOUT: (arg) "
|
|
|
|
<< argument << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Derive layout number from given argument (string)
|
|
|
|
// and current buffer's textclass (number). */
|
|
|
|
int layoutno = -1;
|
1999-11-15 12:01:38 +00:00
|
|
|
layoutno =
|
1999-11-04 01:40:20 +00:00
|
|
|
textclasslist.NumberOfLayout(owner->
|
1999-11-09 23:52:04 +00:00
|
|
|
buffer()->
|
1999-09-27 18:44:28 +00:00
|
|
|
text->parameters->
|
|
|
|
textclass,
|
1999-11-04 01:40:20 +00:00
|
|
|
argument).second;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// see if we found the layout number:
|
|
|
|
if (layoutno == -1) {
|
1999-10-02 16:21:10 +00:00
|
|
|
setErrorMessage(string(N_("Layout ")) + argument +
|
1999-09-27 18:44:28 +00:00
|
|
|
N_(" not known"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (current_layout != layoutno) {
|
|
|
|
owner->currentView()->getScreen()->HideCursor();
|
|
|
|
current_layout = layoutno;
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->
|
1999-09-27 18:44:28 +00:00
|
|
|
SetLayout(layoutno);
|
|
|
|
owner->getToolbar()->combox->
|
1999-11-09 23:52:04 +00:00
|
|
|
select(owner->buffer()->
|
1999-09-27 18:44:28 +00:00
|
|
|
text->cursor.par->
|
|
|
|
GetLayout() + 1);
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(1);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUT_DOCUMENT:
|
|
|
|
MenuLayoutDocument();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUT_PARAGRAPH:
|
|
|
|
MenuLayoutParagraph();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUT_CHARACTER:
|
|
|
|
MenuLayoutCharacter();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUT_TABLE:
|
|
|
|
{
|
|
|
|
int flag = 0;
|
1999-10-02 16:21:10 +00:00
|
|
|
if (string(argument) == "true") flag = 1;
|
1999-09-27 18:44:28 +00:00
|
|
|
MenuLayoutTable(flag);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUT_PAPER:
|
|
|
|
MenuLayoutPaper();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUT_QUOTES:
|
|
|
|
MenuLayoutQuotes();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUT_PREAMBLE:
|
|
|
|
MenuLayoutPreamble();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUT_SAVE_DEFAULT:
|
|
|
|
MenuLayoutSave();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DROP_LAYOUTS_CHOICE:
|
|
|
|
owner->getToolbar()->combox->Show();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_EMPH:
|
|
|
|
EmphCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BOLD:
|
|
|
|
BoldCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_NOUN:
|
|
|
|
NounCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_CODE:
|
|
|
|
CodeCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_SANS:
|
|
|
|
SansCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_ROMAN:
|
|
|
|
RomanCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DEFAULT:
|
|
|
|
StyleResetCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_UNDERLINE:
|
|
|
|
UnderlineCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FONT_SIZE:
|
|
|
|
FontSizeCB(argument);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FONT_STATE:
|
|
|
|
setMessage(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_UPCASE_WORD:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
FreeUpdateTimer();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->ChangeWordCase(LyXText::text_uppercase);
|
|
|
|
owner->buffer()->update(1);
|
1999-09-27 18:44:28 +00:00
|
|
|
SetUpdateTimer();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LOWCASE_WORD:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
FreeUpdateTimer();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->ChangeWordCase(LyXText::text_lowercase);
|
|
|
|
owner->buffer()->update(1);
|
1999-09-27 18:44:28 +00:00
|
|
|
SetUpdateTimer();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_CAPITALIZE_WORD:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
FreeUpdateTimer();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->ChangeWordCase(LyXText::text_capitalization);
|
|
|
|
owner->buffer()->update(1);
|
1999-09-27 18:44:28 +00:00
|
|
|
SetUpdateTimer();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSERT_LABEL:
|
1999-10-20 14:35:05 +00:00
|
|
|
MenuInsertLabel(argument.c_str());
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSERT_REF:
|
|
|
|
MenuInsertRef();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_REFTOGGLE:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
InsetRef *inset =
|
1999-09-27 18:44:28 +00:00
|
|
|
(InsetRef*)getInsetByCode(Inset::REF_CODE);
|
|
|
|
if (inset) {
|
1999-11-15 12:01:38 +00:00
|
|
|
if (inset->getFlag() == InsetRef::REF)
|
1999-09-27 18:44:28 +00:00
|
|
|
inset->setFlag(InsetRef::PAGE_REF);
|
|
|
|
else
|
|
|
|
inset->setFlag(InsetRef::REF);
|
|
|
|
UpdateInset(inset);
|
|
|
|
} else {
|
|
|
|
setErrorMessage(N_("No cross-reference to toggle"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_REFBACK:
|
|
|
|
{
|
|
|
|
owner->currentView()->restorePosition();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_REFGOTO:
|
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
string label(argument);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (label.empty()) {
|
1999-11-15 12:01:38 +00:00
|
|
|
InsetRef *inset =
|
1999-09-27 18:44:28 +00:00
|
|
|
(InsetRef*)getInsetByCode(Inset::REF_CODE);
|
|
|
|
if (inset)
|
|
|
|
label = inset->getContents();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!label.empty()) {
|
|
|
|
owner->currentView()->savePosition();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->gotoLabel(label.c_str());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MENU_OPEN_BY_NAME:
|
|
|
|
owner->getMenus()->openByName(argument);
|
|
|
|
break; // RVDK_PATCH_5
|
|
|
|
|
|
|
|
case LFUN_SPELLCHECK:
|
|
|
|
if (lyxrc->isp_command != "none")
|
|
|
|
ShowSpellChecker();
|
|
|
|
break; // RVDK_PATCH_5
|
|
|
|
|
|
|
|
// --- Cursor Movements -----------------------------
|
|
|
|
case LFUN_RIGHT:
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
Buffer *tmpbuffer = owner->buffer();
|
|
|
|
LyXText *tmptext = owner->buffer()->text;
|
1999-09-27 18:44:28 +00:00
|
|
|
if(!tmptext->mark_set)
|
|
|
|
BeforeChange();
|
|
|
|
tmpbuffer->update(-2);
|
|
|
|
if (tmptext->cursor.pos < tmptext->cursor.par->Last()
|
|
|
|
&& tmptext->cursor.par->GetChar(tmptext->cursor.pos)
|
1999-11-15 12:01:38 +00:00
|
|
|
== LyXParagraph::META_INSET
|
1999-09-27 18:44:28 +00:00
|
|
|
&& tmptext->cursor.par->GetInset(tmptext->cursor.pos)
|
1999-11-15 12:01:38 +00:00
|
|
|
&& tmptext->cursor.par->GetInset(tmptext->cursor.pos)->Editable() == 2){
|
1999-09-27 18:44:28 +00:00
|
|
|
Inset* tmpinset = tmptext->cursor.par->GetInset(tmptext->cursor.pos);
|
|
|
|
setMessage(tmpinset->EditMessage());
|
1999-11-15 12:01:38 +00:00
|
|
|
tmpinset->Edit(0, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
tmptext->CursorRight();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LEFT:
|
|
|
|
{
|
|
|
|
// This is soooo ugly. Isn`t it possible to make
|
|
|
|
// it simpler? (Lgb)
|
1999-11-09 23:52:04 +00:00
|
|
|
LyXText *txt= owner->buffer()->text;
|
1999-09-27 18:44:28 +00:00
|
|
|
if(!txt->mark_set) BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
txt->CursorLeft();
|
|
|
|
if (txt->cursor.pos < txt->cursor.par->Last()
|
|
|
|
&& txt->cursor.par->GetChar(txt->cursor.pos)
|
1999-11-15 12:01:38 +00:00
|
|
|
== LyXParagraph::META_INSET
|
1999-09-27 18:44:28 +00:00
|
|
|
&& txt->cursor.par->GetInset(txt->cursor.pos)
|
1999-11-15 12:01:38 +00:00
|
|
|
&& txt->cursor.par->GetInset(txt->cursor.pos)->Editable() == 2) {
|
1999-09-27 18:44:28 +00:00
|
|
|
Inset* tmpinset = txt->cursor.par->GetInset(txt->cursor.pos);
|
|
|
|
setMessage(tmpinset->EditMessage());
|
|
|
|
tmpinset->Edit(tmpinset->Width(txt->GetFont(txt->cursor.par,
|
1999-11-15 12:01:38 +00:00
|
|
|
txt->cursor.pos)), 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
// tmpinset->Edit(-1, 0); // -1 means go rightmost
|
|
|
|
break;
|
|
|
|
}
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_UP:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set) BeforeChange();
|
|
|
|
owner->buffer()->update(-3);
|
|
|
|
owner->buffer()->text->CursorUp();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DOWN:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set)
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-3);
|
|
|
|
owner->buffer()->text->CursorDown();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_UP_PARAGRAPH:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set)
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-3);
|
|
|
|
owner->buffer()->text->CursorUpParagraph();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DOWN_PARAGRAPH:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set)
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-3);
|
|
|
|
owner->buffer()->text->CursorDownParagraph();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_PRIOR:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set)
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-3);
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->cursorPrevious();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_NEXT:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set)
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-3);
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->cursorNext();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_HOME:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set)
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorHome();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_END:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set)
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorEnd();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_TAB:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set)
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorTab();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_WORDRIGHT:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set)
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorRightOneWord();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_WORDLEFT:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set)
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorLeftOneWord();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BEGINNINGBUF:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set)
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorTop();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_ENDBUF:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(!owner->buffer()->text->mark_set)
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorBottom();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
/* cursor selection ---------------------------- */
|
|
|
|
case LFUN_RIGHTSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorRight();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LEFTSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorLeft();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_UPSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorUp();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DOWNSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorDown();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_UP_PARAGRAPHSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorUpParagraph();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DOWN_PARAGRAPHSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorDownParagraph();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_PRIORSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->cursorPrevious();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_NEXTSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->cursorNext();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_HOMESEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorHome();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_ENDSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorEnd();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_WORDRIGHTSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorRightOneWord();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_WORDLEFTSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorLeftOneWord();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BEGINNINGBUFSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorTop();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_ENDBUFSEL:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->CursorBottom();
|
|
|
|
owner->buffer()->text->FinishUndo();
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner->getMiniBuffer()->Set(CurrentState());
|
|
|
|
break;
|
|
|
|
|
|
|
|
// --- text changing commands ------------------------
|
|
|
|
case LFUN_BREAKLINE:
|
|
|
|
BeforeChange();
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->InsertChar(LyXParagraph::META_NEWLINE);
|
1999-09-27 18:44:28 +00:00
|
|
|
SmallUpdate(1);
|
|
|
|
SetUpdateTimer(0.01);
|
|
|
|
moveCursorUpdate(false);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_PROTECTEDSPACE:
|
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->
|
1999-11-15 12:01:38 +00:00
|
|
|
InsertChar(LyXParagraph::META_PROTECTED_SEPARATOR);
|
1999-09-27 18:44:28 +00:00
|
|
|
SmallUpdate(1);
|
|
|
|
SetUpdateTimer();
|
|
|
|
moveCursorUpdate(false);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_SETMARK:
|
1999-11-09 23:52:04 +00:00
|
|
|
if(owner->buffer()->text->mark_set) {
|
1999-09-27 18:44:28 +00:00
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(0);
|
1999-09-27 18:44:28 +00:00
|
|
|
setMessage(N_("Mark removed"));
|
|
|
|
} else {
|
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->mark_set = 1;
|
|
|
|
owner->buffer()->update(0);
|
1999-09-27 18:44:28 +00:00
|
|
|
setMessage(N_("Mark set"));
|
|
|
|
}
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->sel_cursor =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DELETE:
|
|
|
|
FreeUpdateTimer();
|
1999-11-09 23:52:04 +00:00
|
|
|
if (!owner->buffer()->text->selection) {
|
|
|
|
owner->buffer()->text->Delete();
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->sel_cursor =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
SmallUpdate(1);
|
|
|
|
// It is possible to make it a lot faster still
|
|
|
|
// just comment out the lone below...
|
|
|
|
owner->currentView()->getScreen()->ShowCursor();
|
|
|
|
} else {
|
|
|
|
CutCB();
|
|
|
|
}
|
|
|
|
SetUpdateTimer();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DELETE_SKIP:
|
|
|
|
{
|
|
|
|
// Reverse the effect of LFUN_BREAKPARAGRAPH_SKIP.
|
|
|
|
|
1999-11-09 23:52:04 +00:00
|
|
|
LyXCursor cursor = owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
FreeUpdateTimer();
|
1999-11-09 23:52:04 +00:00
|
|
|
if (!owner->buffer()->text->selection) {
|
1999-09-27 18:44:28 +00:00
|
|
|
if (cursor.pos == cursor.par->Last()) {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->CursorRight();
|
|
|
|
cursor = owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
if (cursor.pos == 0
|
|
|
|
&& !(cursor.par->added_space_top
|
|
|
|
== VSpace (VSpace::NONE))) {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->SetParagraph
|
1999-09-27 18:44:28 +00:00
|
|
|
(cursor.par->line_top,
|
|
|
|
cursor.par->line_bottom,
|
|
|
|
cursor.par->pagebreak_top,
|
|
|
|
cursor.par->pagebreak_bottom,
|
|
|
|
VSpace(VSpace::NONE),
|
|
|
|
cursor.par->added_space_bottom,
|
|
|
|
cursor.par->align,
|
|
|
|
cursor.par->labelwidthstring, 0);
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->CursorLeft();
|
|
|
|
owner->buffer()->update (1);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->CursorLeft();
|
|
|
|
owner->buffer()->text->Delete();
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->sel_cursor =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
SmallUpdate(1);
|
|
|
|
}
|
|
|
|
} else {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->Delete();
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->sel_cursor =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
SmallUpdate(1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
CutCB();
|
|
|
|
}
|
|
|
|
SetUpdateTimer();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* -------> Delete word forward. */
|
|
|
|
case LFUN_DELETE_WORD_FORWARD:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
FreeUpdateTimer();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->DeleteWordForward();
|
|
|
|
owner->buffer()->update( 1 );
|
1999-09-27 18:44:28 +00:00
|
|
|
SetUpdateTimer();
|
|
|
|
moveCursorUpdate(false);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* -------> Delete word backward. */
|
|
|
|
case LFUN_DELETE_WORD_BACKWARD:
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
FreeUpdateTimer();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->DeleteWordBackward();
|
|
|
|
owner->buffer()->update( 1 );
|
1999-09-27 18:44:28 +00:00
|
|
|
SetUpdateTimer();
|
|
|
|
moveCursorUpdate(false);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* -------> Kill to end of line. */
|
|
|
|
case LFUN_DELETE_LINE_FORWARD:
|
|
|
|
FreeUpdateTimer();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(-2);
|
|
|
|
owner->buffer()->text->DeleteLineForward();
|
|
|
|
owner->buffer()->update( 1 );
|
1999-09-27 18:44:28 +00:00
|
|
|
SetUpdateTimer();
|
|
|
|
moveCursorUpdate(false);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* -------> Set mark off. */
|
|
|
|
case LFUN_MARK_OFF:
|
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(0);
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->sel_cursor =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
setMessage(N_("Mark off"));
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* -------> Set mark on. */
|
|
|
|
case LFUN_MARK_ON:
|
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->mark_set = 1;
|
|
|
|
owner->buffer()->update( 0 );
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->sel_cursor =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
setMessage(N_("Mark on"));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BACKSPACE:
|
|
|
|
{
|
|
|
|
FreeUpdateTimer();
|
1999-11-09 23:52:04 +00:00
|
|
|
if (!owner->buffer()->text->selection) {
|
1999-09-27 18:44:28 +00:00
|
|
|
if (owner->getIntl()->getTrans()->backspace()) {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->Backspace();
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->sel_cursor =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
SmallUpdate(1);
|
|
|
|
// It is possible to make it a lot faster still
|
|
|
|
// just comment out the lone below...
|
|
|
|
owner->currentView()->getScreen()->ShowCursor();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
CutCB();
|
|
|
|
}
|
|
|
|
SetUpdateTimer();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BACKSPACE_SKIP:
|
|
|
|
{
|
|
|
|
// Reverse the effect of LFUN_BREAKPARAGRAPH_SKIP.
|
|
|
|
|
1999-11-09 23:52:04 +00:00
|
|
|
LyXCursor cursor = owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
FreeUpdateTimer();
|
1999-11-09 23:52:04 +00:00
|
|
|
if (!owner->buffer()->text->selection) {
|
1999-09-27 18:44:28 +00:00
|
|
|
if (cursor.pos == 0
|
|
|
|
&& !(cursor.par->added_space_top
|
|
|
|
== VSpace (VSpace::NONE))) {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->SetParagraph
|
1999-09-27 18:44:28 +00:00
|
|
|
(cursor.par->line_top,
|
|
|
|
cursor.par->line_bottom,
|
|
|
|
cursor.par->pagebreak_top,
|
|
|
|
cursor.par->pagebreak_bottom,
|
|
|
|
VSpace(VSpace::NONE), cursor.par->added_space_bottom,
|
|
|
|
cursor.par->align,
|
|
|
|
cursor.par->labelwidthstring, 0);
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update (1);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->Backspace();
|
|
|
|
owner->buffer()->text->sel_cursor
|
1999-09-27 18:44:28 +00:00
|
|
|
= cursor;
|
|
|
|
SmallUpdate (1);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
CutCB();
|
|
|
|
SetUpdateTimer();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BREAKPARAGRAPH:
|
|
|
|
{
|
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->BreakParagraph(0);
|
1999-09-27 18:44:28 +00:00
|
|
|
SmallUpdate(1);
|
|
|
|
SetUpdateTimer(0.01);
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->sel_cursor =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
|
|
|
|
{
|
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->BreakParagraph(1);
|
1999-09-27 18:44:28 +00:00
|
|
|
SmallUpdate(1);
|
|
|
|
SetUpdateTimer(0.01);
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->sel_cursor =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_BREAKPARAGRAPH_SKIP:
|
|
|
|
{
|
|
|
|
// When at the beginning of a paragraph, remove
|
|
|
|
// indentation and add a "defskip" at the top.
|
|
|
|
// Otherwise, do the same as LFUN_BREAKPARAGRAPH.
|
|
|
|
|
1999-11-09 23:52:04 +00:00
|
|
|
LyXCursor cursor = owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
BeforeChange();
|
|
|
|
if (cursor.pos == 0) {
|
|
|
|
if (cursor.par->added_space_top == VSpace(VSpace::NONE)) {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->SetParagraph
|
1999-09-27 18:44:28 +00:00
|
|
|
(cursor.par->line_top,
|
|
|
|
cursor.par->line_bottom,
|
|
|
|
cursor.par->pagebreak_top,
|
|
|
|
cursor.par->pagebreak_bottom,
|
|
|
|
VSpace(VSpace::DEFSKIP), cursor.par->added_space_bottom,
|
|
|
|
cursor.par->align,
|
|
|
|
cursor.par->labelwidthstring, 1);
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(1);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->BreakParagraph(0);
|
1999-09-27 18:44:28 +00:00
|
|
|
SmallUpdate(1);
|
|
|
|
}
|
|
|
|
SetUpdateTimer(0.01);
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->sel_cursor = cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_QUOTE:
|
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->InsertChar('\"'); // This " matches the single quote in the code
|
1999-09-27 18:44:28 +00:00
|
|
|
SmallUpdate(1);
|
|
|
|
SetUpdateTimer();
|
|
|
|
moveCursorUpdate(false);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_HTMLURL:
|
|
|
|
case LFUN_URL:
|
|
|
|
{
|
|
|
|
InsetCommand *new_inset;
|
|
|
|
if (action == LFUN_HTMLURL)
|
|
|
|
new_inset = new InsetUrl("htmlurl", "", "");
|
|
|
|
else
|
|
|
|
new_inset = new InsetUrl("url", "", "");
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->insertInset(new_inset);
|
1999-09-27 18:44:28 +00:00
|
|
|
new_inset->Edit(0, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// --- lyxserver commands ----------------------------
|
|
|
|
|
|
|
|
case LFUN_CHARATCURSOR:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
LyXParagraph::size_type pos =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor.pos;
|
|
|
|
if(pos < owner->buffer()->text->cursor.par->size())
|
|
|
|
dispatch_buffer = owner->buffer()->text->
|
1999-09-27 18:44:28 +00:00
|
|
|
cursor.par->text[pos];
|
|
|
|
else
|
|
|
|
dispatch_buffer = "EOF";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GETXY:
|
1999-10-02 16:21:10 +00:00
|
|
|
dispatch_buffer =
|
1999-11-09 23:52:04 +00:00
|
|
|
tostr(owner->buffer()->text->cursor.x) + ' '
|
|
|
|
+ tostr(owner->buffer()->text->cursor.y);
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_SETXY:
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
long y;
|
1999-10-20 14:35:05 +00:00
|
|
|
sscanf(argument.c_str(), " %d %ld", &x, &y);
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->SetCursorFromCoordinates(x, y);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GETLAYOUT:
|
1999-10-02 16:21:10 +00:00
|
|
|
dispatch_buffer =
|
1999-11-09 23:52:04 +00:00
|
|
|
tostr(owner->buffer()->text->cursor.par->layout);
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GETFONT:
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
LyXFont *font = &(owner->buffer()->text->current_font);
|
1999-09-27 18:44:28 +00:00
|
|
|
if(font->shape() == LyXFont::ITALIC_SHAPE)
|
|
|
|
dispatch_buffer = 'E';
|
|
|
|
else if(font->shape() == LyXFont::SMALLCAPS_SHAPE)
|
|
|
|
dispatch_buffer = 'N';
|
|
|
|
else
|
|
|
|
dispatch_buffer = '0';
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GETLATEX:
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
LyXFont *font = &(owner->buffer()->text->current_font);
|
1999-09-27 18:44:28 +00:00
|
|
|
if(font->latex() == LyXFont::ON)
|
|
|
|
dispatch_buffer = 'L';
|
|
|
|
else
|
|
|
|
dispatch_buffer = '0';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GETNAME:
|
1999-11-09 23:52:04 +00:00
|
|
|
setMessage(owner->buffer()->getFileName());
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr.debug() << "FNAME["
|
1999-11-09 23:52:04 +00:00
|
|
|
<< owner->buffer()->getFileName()
|
1999-10-07 18:44:17 +00:00
|
|
|
<< "] " << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_NOTIFY:
|
|
|
|
{
|
|
|
|
char buf[100];
|
1999-11-15 12:01:38 +00:00
|
|
|
keyseq.print(buf, 100);
|
1999-09-27 18:44:28 +00:00
|
|
|
dispatch_buffer = buf;
|
|
|
|
lyxserver->notifyClient(dispatch_buffer);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GOTOFILEROW:
|
|
|
|
{
|
|
|
|
char file_name[100];
|
|
|
|
int row;
|
1999-10-20 14:35:05 +00:00
|
|
|
sscanf(argument.c_str(), " %s %d", file_name, &row);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Must replace extension of the file to be .lyx and get full path
|
1999-10-02 16:21:10 +00:00
|
|
|
string s = ChangeExtension(string(file_name), ".lyx", false);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Either change buffer or load the file
|
|
|
|
if (bufferlist.exists(s))
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(bufferlist.getBuffer(s));
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(bufferlist.loadLyXFile(s));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Set the cursor
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->setCursorFromRow(row);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Recenter screen
|
|
|
|
BeforeChange();
|
1999-11-09 23:52:04 +00:00
|
|
|
if (owner->buffer()->text->cursor.y >
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->getWorkArea()->h / 2) {
|
|
|
|
owner->currentView()->getScreen()->
|
1999-11-09 23:52:04 +00:00
|
|
|
Draw(owner->buffer()->text->cursor.y -
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->getWorkArea()->h/2);
|
1999-11-15 12:01:38 +00:00
|
|
|
} else { // <=
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->getScreen()->
|
|
|
|
Draw(0);
|
|
|
|
}
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->update(0);
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->currentView()->redraw();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_APROPOS:
|
|
|
|
case LFUN_GETTIP:
|
|
|
|
{
|
1999-10-20 14:35:05 +00:00
|
|
|
int qa = lyxaction.LookupFunc(argument.c_str());
|
1999-09-27 18:44:28 +00:00
|
|
|
setMessage(lyxaction.helpText((kb_action)qa));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// --- accented characters ---------------------------
|
|
|
|
|
|
|
|
case LFUN_UMLAUT:
|
|
|
|
case LFUN_CIRCUMFLEX:
|
|
|
|
case LFUN_GRAVE:
|
|
|
|
case LFUN_ACUTE:
|
|
|
|
case LFUN_TILDE:
|
|
|
|
case LFUN_CEDILLA:
|
|
|
|
case LFUN_MACRON:
|
|
|
|
case LFUN_DOT:
|
|
|
|
case LFUN_UNDERDOT:
|
|
|
|
case LFUN_UNDERBAR:
|
|
|
|
case LFUN_CARON:
|
|
|
|
case LFUN_SPECIAL_CARON:
|
|
|
|
case LFUN_BREVE:
|
|
|
|
case LFUN_TIE:
|
|
|
|
case LFUN_HUNG_UMLAUT:
|
|
|
|
case LFUN_CIRCLE:
|
|
|
|
case LFUN_OGONEK:
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
if (keyseq.length == -1 && keyseq.getiso()!= 0)
|
|
|
|
c= keyseq.getiso();
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
1999-11-15 12:01:38 +00:00
|
|
|
c= 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
owner->getIntl()->getTrans()->
|
|
|
|
deadkey(c, get_accent(action).accent,
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Need to reset, in case the minibuffer calls these
|
|
|
|
// actions
|
|
|
|
keyseq.reset();
|
1999-11-15 12:01:38 +00:00
|
|
|
keyseq.length= 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// copied verbatim from do_accent_char
|
|
|
|
SmallUpdate(1);
|
|
|
|
SetUpdateTimer();
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->sel_cursor =
|
|
|
|
owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// --- toolbar ----------------------------------
|
|
|
|
case LFUN_PUSH_TOOLBAR:
|
|
|
|
{
|
1999-10-20 14:35:05 +00:00
|
|
|
int nth = strToInt(argument);
|
1999-10-07 18:44:17 +00:00
|
|
|
if (lyxerr.debugging(Debug::TOOLBAR)) {
|
|
|
|
lyxerr << "LFUN_PUSH_TOOLBAR: argument = `"
|
|
|
|
<< argument << "'\n"
|
|
|
|
<< "LFUN_PUSH_TOOLBAR: nth = `"
|
|
|
|
<< nth << "'" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (nth <= 0) {
|
|
|
|
LyXBell();
|
|
|
|
setErrorMessage(N_("Push-toolbar needs argument > 0"));
|
|
|
|
} else {
|
|
|
|
owner->getToolbar()->push(nth);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_ADD_TO_TOOLBAR:
|
|
|
|
{
|
1999-10-07 18:44:17 +00:00
|
|
|
if (lyxerr.debugging(Debug::TOOLBAR)) {
|
|
|
|
lyxerr << "LFUN_ADD_TO_TOOLBAR:"
|
|
|
|
"argument = `" << argument << '\'' << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
1999-10-02 16:21:10 +00:00
|
|
|
string tmp(argument);
|
1999-10-07 18:44:17 +00:00
|
|
|
//lyxerr <<string("Argument: ") + argument);
|
|
|
|
//lyxerr <<string("Tmp : ") + tmp);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (tmp.empty()) {
|
|
|
|
LyXBell();
|
|
|
|
setErrorMessage(N_("Usage: toolbar-add-to <LyX command>"));
|
|
|
|
} else {
|
|
|
|
owner->getToolbar()->add(argument, false);
|
|
|
|
owner->getToolbar()->set();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// --- insert characters ----------------------------------------
|
1999-11-15 12:01:38 +00:00
|
|
|
#if 0
|
1999-09-27 18:44:28 +00:00
|
|
|
case LFUN_INSERT_INSET_LATEX:
|
|
|
|
{
|
|
|
|
Inset *new_inset = new InsetLatex(argument);
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->insertInset(new_inset);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
1999-11-15 12:01:38 +00:00
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
// --- Mathed stuff. If we are here, there is no locked inset yet.
|
|
|
|
|
|
|
|
// Greek mode
|
|
|
|
case LFUN_GREEK:
|
|
|
|
{
|
|
|
|
if (!greek_kb_flag) {
|
|
|
|
greek_kb_flag = 1;
|
|
|
|
setMessage(N_("Math greek mode on"));
|
|
|
|
} else
|
|
|
|
greek_kb_flag = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Greek keyboard
|
|
|
|
case LFUN_GREEK_TOGGLE:
|
|
|
|
{
|
|
|
|
greek_kb_flag = (greek_kb_flag) ? 0: 2;
|
|
|
|
if (greek_kb_flag) {
|
|
|
|
setMessage(N_("Math greek keyboard on"));
|
|
|
|
} else {
|
|
|
|
setMessage(N_("Math greek keyboard off"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_DELIM:
|
|
|
|
case LFUN_INSERT_MATRIX:
|
|
|
|
{
|
|
|
|
if (owner->currentView()->available()) {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->
|
1999-09-27 18:44:28 +00:00
|
|
|
open_new_inset(new InsetFormula(false));
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->
|
1999-10-20 14:35:05 +00:00
|
|
|
the_locking_inset->LocalDispatch(action, argument.c_str());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSERT_MATH:
|
|
|
|
{
|
1999-10-20 14:35:05 +00:00
|
|
|
math_insert_symbol(argument.c_str());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_DISPLAY:
|
|
|
|
{
|
|
|
|
if (owner->currentView()->available())
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->open_new_inset(new InsetFormula(true));
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_MATH_MACRO:
|
|
|
|
{
|
|
|
|
if (owner->currentView()->available()) {
|
1999-10-02 16:21:10 +00:00
|
|
|
string s(argument);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (s.empty())
|
|
|
|
setErrorMessage(N_("Missing argument"));
|
|
|
|
else {
|
1999-10-02 16:21:10 +00:00
|
|
|
string s1 = token(s, ' ', 1);
|
1999-09-27 18:44:28 +00:00
|
|
|
int na = s1.empty() ? 0: atoi(s1.c_str());
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->
|
1999-10-02 16:21:10 +00:00
|
|
|
open_new_inset(new InsetFormulaMacro(token(s, ' ', 0), na));
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MODE: // Open or create a math inset
|
|
|
|
{
|
|
|
|
|
|
|
|
if (owner->currentView()->available())
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->open_new_inset(new InsetFormula);
|
1999-09-27 18:44:28 +00:00
|
|
|
setMessage(N_("Math editor mode"));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_NUMBER:
|
|
|
|
case LFUN_MATH_LIMITS:
|
|
|
|
{
|
|
|
|
setErrorMessage(N_("This is only allowed in math mode!"));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSERT_CITATION:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
InsetCitation * new_inset = new InsetCitation();
|
1999-09-27 18:44:28 +00:00
|
|
|
// ale970405
|
|
|
|
// The note, if any, must be after the key, delimited
|
|
|
|
// by a | so both key and remark can have spaces.
|
1999-10-20 14:35:05 +00:00
|
|
|
if (!argument.empty()) {
|
1999-10-02 16:21:10 +00:00
|
|
|
string lsarg(argument);
|
|
|
|
if (contains(lsarg, "|")) {
|
|
|
|
new_inset->setContents(token(lsarg, '|', 0));
|
|
|
|
new_inset->setOptions(token(lsarg, '|', 1));
|
1999-09-27 18:44:28 +00:00
|
|
|
} else
|
|
|
|
new_inset->setContents(lsarg);
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->insertInset(new_inset);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->insertInset(new_inset);
|
1999-11-15 12:01:38 +00:00
|
|
|
new_inset->Edit(0, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSERT_BIBTEX:
|
|
|
|
{
|
|
|
|
// ale970405+lasgoutt970425
|
|
|
|
// The argument can be up to two tokens separated
|
|
|
|
// by a space. The first one is the bibstyle.
|
1999-10-02 16:21:10 +00:00
|
|
|
string lsarg(argument);
|
|
|
|
string bibstyle = token(lsarg, ' ', 1);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (bibstyle.empty())
|
|
|
|
bibstyle = "plain";
|
1999-11-15 12:01:38 +00:00
|
|
|
InsetBibtex * new_inset
|
1999-10-02 16:21:10 +00:00
|
|
|
= new InsetBibtex(token(lsarg, ' ', 0),
|
1999-09-27 18:44:28 +00:00
|
|
|
bibstyle,
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->insertInset(new_inset);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (lsarg.empty()) {
|
1999-11-15 12:01:38 +00:00
|
|
|
new_inset->Edit(0, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// BibTeX data bases
|
|
|
|
case LFUN_BIBDB_ADD:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
InsetBibtex * inset =
|
|
|
|
static_cast<InsetBibtex*>(getInsetByCode(Inset::BIBTEX_CODE));
|
1999-09-27 18:44:28 +00:00
|
|
|
if (inset) {
|
|
|
|
inset->addDatabase(argument);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BIBDB_DEL:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
InsetBibtex * inset =
|
|
|
|
static_cast<InsetBibtex*>(getInsetByCode(Inset::BIBTEX_CODE));
|
1999-09-27 18:44:28 +00:00
|
|
|
if (inset) {
|
|
|
|
inset->delDatabase(argument);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BIBTEX_STYLE:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
InsetBibtex * inset =
|
|
|
|
static_cast<InsetBibtex*>(getInsetByCode(Inset::BIBTEX_CODE));
|
1999-09-27 18:44:28 +00:00
|
|
|
if (inset) {
|
|
|
|
inset->setOptions(argument);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INDEX_INSERT:
|
|
|
|
case LFUN_INDEX_INSERT_LAST:
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
InsetIndex * new_inset = new InsetIndex();
|
1999-10-20 14:35:05 +00:00
|
|
|
if (!argument.empty()) {
|
1999-10-02 16:21:10 +00:00
|
|
|
string lsarg(argument);
|
1999-09-27 18:44:28 +00:00
|
|
|
new_inset->setContents(lsarg);
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->insertInset(new_inset);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
|
|
|
//reh 98/09/21
|
|
|
|
//get the current word for an argument
|
|
|
|
|
|
|
|
|
|
|
|
// grab a word
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
LyXParagraph::size_type lastpos =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor.pos - 1;
|
1999-11-04 01:40:20 +00:00
|
|
|
// If this can't happen, let's make sure that it really don't
|
1999-11-09 23:52:04 +00:00
|
|
|
Assert(owner->buffer()->text->cursor.pos - 1 >= 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
// get the current word
|
|
|
|
// note that this must be done before
|
|
|
|
// inserting the inset, or the inset will break
|
|
|
|
// the word
|
1999-11-09 23:52:04 +00:00
|
|
|
string curstring(owner->buffer()
|
1999-11-04 01:40:20 +00:00
|
|
|
->text->cursor.par->GetWord(lastpos));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
//make the new inset and write the current word into it
|
1999-11-04 01:40:20 +00:00
|
|
|
InsetIndex * new_inset = new InsetIndex();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
new_inset->setContents(curstring);
|
|
|
|
|
|
|
|
//don't edit it if the call was to INSERT_LAST
|
1999-11-15 12:01:38 +00:00
|
|
|
if(action!= LFUN_INDEX_INSERT_LAST) {
|
|
|
|
new_inset->Edit(0, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
|
|
|
//it looks blank on the screen unless
|
|
|
|
//we do something. put it here.
|
|
|
|
|
|
|
|
// move the cursor to the returned value of lastpos
|
|
|
|
// but only for the auto-insert
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->cursor.pos= lastpos;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//put the new inset into the buffer.
|
|
|
|
// there should be some way of knowing the user
|
|
|
|
//cancelled & avoiding this, but i don't know how
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->insertInset(new_inset);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INDEX_PRINT:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
Inset * new_inset = new InsetPrintIndex(owner->buffer());
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->insertInset(new_inset, "Standard", true);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_PARENTINSERT:
|
|
|
|
{
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr << "arg " << argument << endl;
|
1999-11-15 12:01:38 +00:00
|
|
|
Inset * new_inset = new InsetParent(argument, owner->buffer());
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->insertInset(new_inset, "Standard", true);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_CHILDINSERT:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
Inset * new_inset = new InsetInclude(argument,
|
|
|
|
owner->buffer());
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->insertInset(new_inset, "Standard", true);
|
1999-11-15 12:01:38 +00:00
|
|
|
new_inset->Edit(0, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_CHILDOPEN:
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
string filename =
|
|
|
|
MakeAbsPath(argument,
|
|
|
|
OnlyPath(owner->buffer()->getFileName()));
|
1999-09-27 18:44:28 +00:00
|
|
|
setMessage(N_("Opening child document ") +
|
|
|
|
MakeDisplayPath(filename) + "...");
|
|
|
|
owner->currentView()->savePosition();
|
|
|
|
if (bufferlist.exists(filename))
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(bufferlist.getBuffer(filename));
|
1999-09-27 18:44:28 +00:00
|
|
|
else
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(bufferlist.loadLyXFile(filename));
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSERT_NOTE:
|
|
|
|
NoteCB();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSERTFOOTNOTE:
|
|
|
|
{
|
|
|
|
LyXParagraph::footnote_kind kind;
|
1999-10-20 14:35:05 +00:00
|
|
|
if (argument == "footnote")
|
1999-09-27 18:44:28 +00:00
|
|
|
{ kind = LyXParagraph::FOOTNOTE; }
|
1999-10-20 14:35:05 +00:00
|
|
|
else if (argument == "margin")
|
1999-09-27 18:44:28 +00:00
|
|
|
{ kind = LyXParagraph::MARGIN; }
|
1999-10-20 14:35:05 +00:00
|
|
|
else if (argument == "figure")
|
1999-09-27 18:44:28 +00:00
|
|
|
{ kind = LyXParagraph::FIG; }
|
1999-10-20 14:35:05 +00:00
|
|
|
else if (argument == "table")
|
1999-09-27 18:44:28 +00:00
|
|
|
{ kind = LyXParagraph::TAB; }
|
1999-10-20 14:35:05 +00:00
|
|
|
else if (argument == "wide-fig")
|
1999-09-27 18:44:28 +00:00
|
|
|
{ kind = LyXParagraph::WIDE_FIG; }
|
1999-10-20 14:35:05 +00:00
|
|
|
else if (argument == "wide-tab")
|
1999-09-27 18:44:28 +00:00
|
|
|
{ kind = LyXParagraph::WIDE_TAB; }
|
1999-10-20 14:35:05 +00:00
|
|
|
else if (argument == "algorithm")
|
1999-09-27 18:44:28 +00:00
|
|
|
{ kind = LyXParagraph::ALGORITHM; }
|
|
|
|
else {
|
|
|
|
setErrorMessage(N_("Unknown kind of footnote"));
|
|
|
|
break;
|
|
|
|
}
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->InsertFootnoteEnvironment(kind);
|
|
|
|
owner->buffer()->update(1);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BUFFERBULLETSSELECT:
|
|
|
|
bulletForm();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_TOGGLECURSORFOLLOW:
|
|
|
|
cursor_follows_scrollbar = !cursor_follows_scrollbar;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_KMAP_OFF: // keymap off
|
|
|
|
owner->getIntl()->KeyMapOn(false);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_KMAP_PRIM: // primary keymap
|
|
|
|
owner->getIntl()->KeyMapPrim();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_KMAP_SEC: // secondary keymap
|
|
|
|
owner->getIntl()->KeyMapSec();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_KMAP_TOGGLE: // toggle keymap
|
|
|
|
owner->getIntl()->ToggleKeyMap();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_SELFINSERT:
|
|
|
|
{
|
1999-10-20 14:35:05 +00:00
|
|
|
for (string::size_type i = 0; i < argument.length(); ++i) {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->InsertChar(argument[i]);
|
1999-09-27 18:44:28 +00:00
|
|
|
// This needs to be in the loop, or else we
|
|
|
|
// won't break lines correctly. (Asger)
|
|
|
|
SmallUpdate(1);
|
|
|
|
}
|
|
|
|
SetUpdateTimer();
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->sel_cursor =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1999-11-18 14:12:19 +00:00
|
|
|
case LFUN_SEQUENCE:
|
|
|
|
{
|
|
|
|
// argument contains ';'-terminated commands
|
|
|
|
while (argument.find(';') != string::npos) {
|
|
|
|
string first;
|
|
|
|
argument = split(argument, first, ';');
|
|
|
|
Dispatch(first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
case LFUN_UNKNOWN_ACTION:
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
if (owner->buffer()->isReadonly()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
LyXBell();
|
|
|
|
setErrorMessage(N_("Document is read only"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-10-20 14:35:05 +00:00
|
|
|
if (!argument.empty()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/* Automatically delete the currently selected
|
|
|
|
* text and replace it with what is being
|
|
|
|
* typed in now. Depends on lyxrc settings
|
|
|
|
* "auto_region_delete", which defaults to
|
|
|
|
* true (on). */
|
|
|
|
|
|
|
|
if ( lyxrc->auto_region_delete ) {
|
1999-11-09 23:52:04 +00:00
|
|
|
if (owner->buffer()->text->selection){
|
|
|
|
owner->buffer()->text->CutSelection(false);
|
|
|
|
owner->buffer()->update(-1);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BeforeChange();
|
1999-11-15 12:01:38 +00:00
|
|
|
for (string::size_type i = 0;
|
|
|
|
i < argument.length(); ++i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
if (greek_kb_flag) {
|
1999-10-20 14:35:05 +00:00
|
|
|
if (!math_insert_greek(argument[i]))
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->getIntl()->getTrans()->TranslateAndInsert(argument[i], owner->buffer()->text);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->getIntl()->getTrans()->TranslateAndInsert(argument[i], owner->buffer()->text);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SmallUpdate(1);
|
|
|
|
SetUpdateTimer();
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->buffer()->text->sel_cursor =
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->buffer()->text->cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
moveCursorUpdate(false);
|
1999-10-02 16:21:10 +00:00
|
|
|
return string();
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
|
|
|
// why is an "Unknown action" with empty
|
|
|
|
// argument even dispatched in the first
|
|
|
|
// place? I`ll probably change that. (Lgb)
|
|
|
|
LyXBell();
|
|
|
|
setErrorMessage(N_("Unknown action"));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr << "A truly unknown func!" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} // end of switch
|
|
|
|
exit_with_message:
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
string res= getMessage();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
if (res.empty()) {
|
|
|
|
if (!commandshortcut.empty()) {
|
1999-10-02 16:21:10 +00:00
|
|
|
string newbuf = owner->getMiniBuffer()->GetText();
|
1999-09-27 18:44:28 +00:00
|
|
|
if (newbuf != commandshortcut) {
|
|
|
|
owner->getMiniBuffer()->Set(newbuf
|
|
|
|
+ " " +
|
|
|
|
commandshortcut);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
1999-10-02 16:21:10 +00:00
|
|
|
owner->getMiniBuffer()->Set(string(_(res.c_str()))
|
1999-09-27 18:44:28 +00:00
|
|
|
+ " " + commandshortcut);
|
|
|
|
}
|
|
|
|
|
|
|
|
return getMessage();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LyXFunc::setupLocalKeymap()
|
|
|
|
{
|
|
|
|
keyseq.stdmap = keyseq.curmap = toplevel_keymap;
|
|
|
|
cancel_meta_seq.stdmap = cancel_meta_seq.curmap = toplevel_keymap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LyXFunc::MenuNew(bool fromTemplate)
|
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
string fname, initpath = lyxrc->document_path;
|
1999-09-27 18:44:28 +00:00
|
|
|
LyXFileDlg fileDlg;
|
|
|
|
|
|
|
|
if (owner->currentView()->available()) {
|
1999-11-09 23:52:04 +00:00
|
|
|
string trypath = owner->buffer()->filepath;
|
1999-09-27 18:44:28 +00:00
|
|
|
// If directory is writeable, use this as default.
|
|
|
|
if (IsDirWriteable(trypath) == 1)
|
|
|
|
initpath = trypath;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProhibitInput();
|
|
|
|
fileDlg.SetButton(0, _("Documents"), lyxrc->document_path);
|
|
|
|
fileDlg.SetButton(1, _("Templates"), lyxrc->template_path);
|
|
|
|
fname = fileDlg.Select(_("Enter Filename for new document"),
|
|
|
|
initpath, "*.lyx", _("newfile"));
|
|
|
|
AllowInput();
|
|
|
|
|
|
|
|
if (fname.empty()) {
|
|
|
|
owner->getMiniBuffer()->Set(_("Canceled."));
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr.debug() << "New Document Cancelled." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get absolute path of file and make sure the filename ends
|
|
|
|
// with .lyx
|
1999-10-02 16:21:10 +00:00
|
|
|
string s = MakeAbsPath(fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (!IsLyXFilename(s))
|
|
|
|
s += ".lyx";
|
|
|
|
|
|
|
|
// Check if the document already is open
|
|
|
|
if (bufferlist.exists(s)){
|
|
|
|
switch(AskConfirmation(_("Document is already open:"),
|
1999-11-15 12:01:38 +00:00
|
|
|
MakeDisplayPath(s, 50),
|
1999-09-27 18:44:28 +00:00
|
|
|
_("Do you want to close that document now?\n"
|
|
|
|
"('No' will just switch to the open version)")))
|
|
|
|
{
|
|
|
|
case 1: // Yes: close the document
|
|
|
|
if (!bufferlist.close(bufferlist.getBuffer(s)))
|
|
|
|
// If close is canceled, we cancel here too.
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
case 2: // No: switch to the open document
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(bufferlist.getBuffer(s));
|
1999-09-27 18:44:28 +00:00
|
|
|
return;
|
|
|
|
case 3: // Cancel: Do nothing
|
|
|
|
owner->getMiniBuffer()->Set(_("Canceled."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check whether the file already exists
|
|
|
|
if (IsLyXFilename(s)) {
|
|
|
|
FilePtr myfile(s, FilePtr::read);
|
|
|
|
if (myfile() &&
|
|
|
|
AskQuestion(_("File already exists:"),
|
1999-11-15 12:01:38 +00:00
|
|
|
MakeDisplayPath(s, 50),
|
1999-09-27 18:44:28 +00:00
|
|
|
_("Do you want to open the document?"))) {
|
|
|
|
// loads document
|
|
|
|
owner->getMiniBuffer()->Set(_("Opening document"),
|
|
|
|
MakeDisplayPath(s), "...");
|
|
|
|
XFlush(fl_display);
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(
|
1999-09-27 18:44:28 +00:00
|
|
|
bufferlist.loadLyXFile(s));
|
|
|
|
owner->getMiniBuffer()->Set(_("Document"),
|
|
|
|
MakeDisplayPath(s),
|
|
|
|
_("opened."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The template stuff
|
1999-10-02 16:21:10 +00:00
|
|
|
string templname;
|
1999-09-27 18:44:28 +00:00
|
|
|
if (fromTemplate) {
|
|
|
|
ProhibitInput();
|
|
|
|
fname = fileDlg.Select(_("Choose template"),
|
|
|
|
lyxrc->template_path,
|
|
|
|
"*.lyx");
|
|
|
|
templname = fname;
|
|
|
|
AllowInput();
|
|
|
|
}
|
|
|
|
|
|
|
|
// find a free buffer
|
1999-10-07 18:44:17 +00:00
|
|
|
lyxerr.debug() << "Find a free buffer." << endl;
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->currentView()->buffer(bufferlist.newFile(s, templname));
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LyXFunc::MenuOpen()
|
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
string initpath = lyxrc->document_path;
|
1999-09-27 18:44:28 +00:00
|
|
|
LyXFileDlg fileDlg;
|
|
|
|
|
|
|
|
if (owner->currentView()->available()) {
|
1999-11-09 23:52:04 +00:00
|
|
|
string trypath = owner->buffer()->filepath;
|
1999-09-27 18:44:28 +00:00
|
|
|
// If directory is writeable, use this as default.
|
|
|
|
if (IsDirWriteable(trypath) == 1)
|
|
|
|
initpath = trypath;
|
|
|
|
}
|
|
|
|
|
|
|
|
// launches dialog
|
|
|
|
ProhibitInput();
|
|
|
|
fileDlg.SetButton(0, _("Documents"), lyxrc->document_path);
|
|
|
|
fileDlg.SetButton(1, _("Examples"),
|
|
|
|
AddPath(system_lyxdir, "examples"));
|
1999-10-02 16:21:10 +00:00
|
|
|
string filename = fileDlg.Select(_("Select Document to Open"),
|
1999-09-27 18:44:28 +00:00
|
|
|
initpath, "*.lyx");
|
|
|
|
AllowInput();
|
|
|
|
|
|
|
|
// check selected filename
|
|
|
|
if (filename.empty()) {
|
|
|
|
owner->getMiniBuffer()->Set(_("Canceled."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get absolute path of file and make sure the filename ends
|
|
|
|
// with .lyx
|
|
|
|
filename = MakeAbsPath(filename);
|
|
|
|
if (!IsLyXFilename(filename))
|
|
|
|
filename += ".lyx";
|
|
|
|
|
|
|
|
// loads document
|
|
|
|
owner->getMiniBuffer()->Set(_("Opening document"),
|
|
|
|
MakeDisplayPath(filename), "...");
|
|
|
|
Buffer * openbuf = bufferlist.loadLyXFile(filename);
|
|
|
|
if (openbuf) {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(openbuf);
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->getMiniBuffer()->Set(_("Document"),
|
|
|
|
MakeDisplayPath(filename),
|
|
|
|
_("opened."));
|
|
|
|
} else {
|
|
|
|
owner->getMiniBuffer()->Set(_("Could not open document"),
|
|
|
|
MakeDisplayPath(filename));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LyXFunc::doImportASCII(bool linorpar)
|
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
string initpath = lyxrc->document_path;
|
1999-09-27 18:44:28 +00:00
|
|
|
LyXFileDlg fileDlg;
|
|
|
|
|
|
|
|
if (owner->currentView()->available()) {
|
1999-11-09 23:52:04 +00:00
|
|
|
string trypath = owner->buffer()->filepath;
|
1999-09-27 18:44:28 +00:00
|
|
|
// If directory is writeable, use this as default.
|
|
|
|
if (IsDirWriteable(trypath) == 1)
|
|
|
|
initpath = trypath;
|
|
|
|
}
|
|
|
|
|
|
|
|
// launches dialog
|
|
|
|
ProhibitInput();
|
|
|
|
fileDlg.SetButton(0, _("Documents"), lyxrc->document_path);
|
|
|
|
fileDlg.SetButton(1, _("Examples"),
|
|
|
|
AddPath(system_lyxdir, "examples"));
|
1999-10-02 16:21:10 +00:00
|
|
|
string filename = fileDlg.Select(_("Select ASCII file to Import"),
|
1999-09-27 18:44:28 +00:00
|
|
|
initpath, "*.txt");
|
|
|
|
AllowInput();
|
|
|
|
|
|
|
|
// check selected filename
|
|
|
|
if (filename.empty()) {
|
|
|
|
owner->getMiniBuffer()->Set(_("Canceled."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get absolute path of file
|
|
|
|
filename = MakeAbsPath(filename);
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
string s = ChangeExtension(filename, ".lyx", false);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Check if the document already is open
|
|
|
|
if (bufferlist.exists(s)){
|
|
|
|
switch(AskConfirmation(_("Document is already open:"),
|
1999-11-15 12:01:38 +00:00
|
|
|
MakeDisplayPath(s, 50),
|
1999-09-27 18:44:28 +00:00
|
|
|
_("Do you want to close that document now?\n"
|
|
|
|
"('No' will just switch to the open version)")))
|
|
|
|
{
|
|
|
|
case 1: // Yes: close the document
|
|
|
|
if (!bufferlist.close(bufferlist.getBuffer(s)))
|
|
|
|
// If close is canceled, we cancel here too.
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
case 2: // No: switch to the open document
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(bufferlist.getBuffer(s));
|
1999-09-27 18:44:28 +00:00
|
|
|
return;
|
|
|
|
case 3: // Cancel: Do nothing
|
|
|
|
owner->getMiniBuffer()->Set(_("Canceled."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if a LyX document by the same root exists in filesystem
|
|
|
|
FileInfo f(s, true);
|
|
|
|
if (f.exist() && !AskQuestion(_("A document by the name"),
|
|
|
|
MakeDisplayPath(s),
|
|
|
|
_("already exists. Overwrite?"))) {
|
|
|
|
owner->getMiniBuffer()->Set(_("Canceled."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
owner->currentView()->buffer(bufferlist.newFile(s, string()));
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->getMiniBuffer()->Set(_("Importing ASCII file"),
|
|
|
|
MakeDisplayPath(filename), "...");
|
|
|
|
// Insert ASCII file
|
1999-11-15 12:01:38 +00:00
|
|
|
InsertAsciiFile(filename, linorpar);
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->getMiniBuffer()->Set(_("ASCII file "),
|
|
|
|
MakeDisplayPath(filename),
|
|
|
|
_("imported."));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LyXFunc::doImportLaTeX(bool isnoweb)
|
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
string initpath = lyxrc->document_path;
|
1999-09-27 18:44:28 +00:00
|
|
|
LyXFileDlg fileDlg;
|
|
|
|
|
|
|
|
if (owner->currentView()->available()) {
|
1999-11-09 23:52:04 +00:00
|
|
|
string trypath = owner->buffer()->filepath;
|
1999-09-27 18:44:28 +00:00
|
|
|
// If directory is writeable, use this as default.
|
|
|
|
if (IsDirWriteable(trypath) == 1)
|
|
|
|
initpath = trypath;
|
|
|
|
}
|
|
|
|
|
|
|
|
// launches dialog
|
|
|
|
ProhibitInput();
|
|
|
|
fileDlg.SetButton(0, _("Documents"), lyxrc->document_path);
|
|
|
|
fileDlg.SetButton(1, _("Examples"),
|
|
|
|
AddPath(system_lyxdir, "examples"));
|
1999-10-02 16:21:10 +00:00
|
|
|
string filename;
|
1999-09-27 18:44:28 +00:00
|
|
|
if (isnoweb) {
|
|
|
|
filename = fileDlg.Select(_("Select Noweb file to Import"),
|
|
|
|
initpath, "*.nw");
|
|
|
|
} else {
|
|
|
|
filename = fileDlg.Select(_("Select LaTeX file to Import"),
|
|
|
|
initpath, "*.tex");
|
|
|
|
}
|
|
|
|
|
|
|
|
AllowInput();
|
|
|
|
|
|
|
|
// check selected filename
|
|
|
|
if (filename.empty()) {
|
|
|
|
owner->getMiniBuffer()->Set(_("Canceled."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get absolute path of file
|
|
|
|
filename = MakeAbsPath(filename);
|
|
|
|
|
|
|
|
// Check if the document already is open
|
1999-10-02 16:21:10 +00:00
|
|
|
string LyXfilename = ChangeExtension(filename, ".lyx", false);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (bufferlist.exists(LyXfilename)){
|
|
|
|
switch(AskConfirmation(_("Document is already open:"),
|
1999-11-15 12:01:38 +00:00
|
|
|
MakeDisplayPath(LyXfilename, 50),
|
1999-09-27 18:44:28 +00:00
|
|
|
_("Do you want to close that document now?\n"
|
|
|
|
"('No' will just switch to the open version)")))
|
|
|
|
{
|
|
|
|
case 1: // Yes: close the document
|
|
|
|
if (!bufferlist.close(bufferlist.getBuffer(LyXfilename)))
|
|
|
|
// If close is canceled, we cancel here too.
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
case 2: // No: switch to the open document
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(
|
1999-09-27 18:44:28 +00:00
|
|
|
bufferlist.getBuffer(LyXfilename));
|
|
|
|
return;
|
|
|
|
case 3: // Cancel: Do nothing
|
|
|
|
owner->getMiniBuffer()->Set(_("Canceled."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if a LyX document by the same root exists in filesystem
|
|
|
|
FileInfo f(LyXfilename, true);
|
|
|
|
if (f.exist() && !AskQuestion(_("A document by the name"),
|
|
|
|
MakeDisplayPath(LyXfilename),
|
|
|
|
_("already exists. Overwrite?"))) {
|
|
|
|
owner->getMiniBuffer()->Set(_("Canceled."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// loads document
|
|
|
|
Buffer * openbuf;
|
|
|
|
if (!isnoweb) {
|
|
|
|
owner->getMiniBuffer()->Set(_("Importing LaTeX file"),
|
|
|
|
MakeDisplayPath(filename), "...");
|
|
|
|
ImportLaTeX myImport(filename);
|
|
|
|
openbuf = myImport.run();
|
|
|
|
} else {
|
|
|
|
owner->getMiniBuffer()->Set(_("Importing Noweb file"),
|
|
|
|
MakeDisplayPath(filename), "...");
|
|
|
|
ImportNoweb myImport(filename);
|
|
|
|
openbuf = myImport.run();
|
|
|
|
}
|
|
|
|
if (openbuf) {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(openbuf);
|
1999-09-27 18:44:28 +00:00
|
|
|
owner->getMiniBuffer()->Set(isnoweb ?
|
|
|
|
_("Noweb file ") : _("LateX file "),
|
|
|
|
MakeDisplayPath(filename),
|
|
|
|
_("imported."));
|
|
|
|
} else {
|
|
|
|
owner->getMiniBuffer()->Set(isnoweb ?
|
|
|
|
_("Could not import Noweb file") :
|
|
|
|
_("Could not import LaTeX file"),
|
|
|
|
MakeDisplayPath(filename));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
void LyXFunc::MenuInsertLyXFile(string const & filen)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
string filename = filen;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
if (filename.empty()) {
|
|
|
|
// Launch a file browser
|
1999-10-02 16:21:10 +00:00
|
|
|
string initpath = lyxrc->document_path;
|
1999-09-27 18:44:28 +00:00
|
|
|
LyXFileDlg fileDlg;
|
|
|
|
|
|
|
|
if (owner->currentView()->available()) {
|
1999-11-09 23:52:04 +00:00
|
|
|
string trypath = owner->buffer()->filepath;
|
1999-09-27 18:44:28 +00:00
|
|
|
// If directory is writeable, use this as default.
|
|
|
|
if (IsDirWriteable(trypath) == 1)
|
|
|
|
initpath = trypath;
|
|
|
|
}
|
|
|
|
|
|
|
|
// launches dialog
|
|
|
|
ProhibitInput();
|
|
|
|
fileDlg.SetButton(0, _("Documents"), lyxrc->document_path);
|
|
|
|
fileDlg.SetButton(1, _("Examples"),
|
|
|
|
AddPath(system_lyxdir, "examples"));
|
|
|
|
filename = fileDlg.Select(_("Select Document to Insert"),
|
|
|
|
initpath, "*.lyx");
|
|
|
|
AllowInput();
|
|
|
|
|
|
|
|
// check selected filename
|
|
|
|
if (filename.empty()) {
|
|
|
|
owner->getMiniBuffer()->Set(_("Canceled."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// get absolute path of file and make sure the filename ends
|
|
|
|
// with .lyx
|
|
|
|
filename = MakeAbsPath(filename);
|
|
|
|
if (!IsLyXFilename(filename))
|
|
|
|
filename += ".lyx";
|
|
|
|
|
|
|
|
// Inserts document
|
|
|
|
owner->getMiniBuffer()->Set(_("Inserting document"),
|
|
|
|
MakeDisplayPath(filename), "...");
|
1999-11-09 23:52:04 +00:00
|
|
|
bool res = owner->buffer()->insertLyXFile(filename);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (res) {
|
|
|
|
owner->getMiniBuffer()->Set(_("Document"),
|
|
|
|
MakeDisplayPath(filename),
|
|
|
|
_("inserted."));
|
|
|
|
} else {
|
|
|
|
owner->getMiniBuffer()->Set(_("Could not insert document"),
|
|
|
|
MakeDisplayPath(filename));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LyXFunc::reloadBuffer()
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
string fn = owner->buffer()->getFileName();
|
|
|
|
if (bufferlist.close(owner->buffer()))
|
|
|
|
owner->currentView()->buffer(bufferlist.loadLyXFile(fn));
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LyXFunc::CloseBuffer()
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
if (bufferlist.close(owner->buffer()) && !quitting) {
|
1999-11-05 06:02:34 +00:00
|
|
|
if (bufferlist.empty()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
// need this otherwise SEGV may occur while trying to
|
|
|
|
// set variables that don't exist
|
|
|
|
// since there's no current buffer
|
|
|
|
CloseAllBufferRelatedPopups();
|
|
|
|
}
|
|
|
|
else {
|
1999-11-09 23:52:04 +00:00
|
|
|
owner->currentView()->buffer(bufferlist.first());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
Inset * LyXFunc::getInsetByCode(Inset::Code code)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
bool found = false;
|
1999-11-04 01:40:20 +00:00
|
|
|
Inset * inset = 0;
|
1999-11-09 23:52:04 +00:00
|
|
|
LyXCursor cursor = owner->buffer()->text->cursor;
|
1999-11-04 01:40:20 +00:00
|
|
|
LyXParagraph::size_type pos = cursor.pos;
|
|
|
|
LyXParagraph * par = cursor.par;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
while (par && !found) {
|
|
|
|
while ((inset = par->ReturnNextInsetPointer(pos))){
|
1999-11-15 12:01:38 +00:00
|
|
|
if (inset->LyxCode() == code) {
|
1999-09-27 18:44:28 +00:00
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
par = par->next;
|
|
|
|
}
|
|
|
|
return (found) ? inset: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Each "owner" should have it's own message method. lyxview and
|
|
|
|
// the minibuffer would use the minibuffer, but lyxserver would
|
|
|
|
// send an ERROR signal to its client. Alejandro 970603
|
|
|
|
// This func is bit problematic when it comes to NLS, to make the
|
|
|
|
// lyx servers client be language indepenent we must not translate
|
|
|
|
// strings sent to this func.
|
1999-10-02 16:21:10 +00:00
|
|
|
void LyXFunc::setErrorMessage(string const &m)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
dispatch_buffer = m;
|
|
|
|
errorstat = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
void LyXFunc::setMessage(string const & m)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
dispatch_buffer = m;
|
|
|
|
}
|