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,
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
1999-10-02 16:21:10 +00:00
|
|
|
*
|
1999-11-15 12:01:38 +00:00
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2000-01-06 11:35:29 +00:00
|
|
|
#include <fstream>
|
2000-03-20 18:55:57 +00:00
|
|
|
#include <algorithm>
|
2001-03-07 14:25:31 +00:00
|
|
|
#include <utility>
|
2000-04-08 17:02:02 +00:00
|
|
|
#include <iostream>
|
2000-03-16 04:29:22 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#include FORMS_H_LOCATION
|
2001-03-28 14:51:25 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "lyx_cb.h"
|
|
|
|
#include "lyx_gui_misc.h"
|
2001-03-28 14:51:25 +00:00
|
|
|
#include "lyx_main.h"
|
|
|
|
#include "bufferlist.h"
|
2000-04-12 14:20:08 +00:00
|
|
|
#include "bufferview_funcs.h"
|
2001-03-28 14:51:25 +00:00
|
|
|
#include "lastfiles.h"
|
|
|
|
#include "LyXView.h"
|
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "lyxtext.h"
|
|
|
|
#include "frontends/FileDialog.h"
|
|
|
|
#include "insets/insetlabel.h"
|
1999-10-02 16:21:10 +00:00
|
|
|
#include "support/FileInfo.h"
|
2000-04-12 14:20:08 +00:00
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/path.h"
|
2001-03-28 14:51:25 +00:00
|
|
|
#include "support/syscall.h"
|
2001-04-17 15:15:59 +00:00
|
|
|
#include "gettext.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "BufferView.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-03-12 01:43:12 +00:00
|
|
|
using std::vector;
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::ifstream;
|
|
|
|
using std::copy;
|
|
|
|
using std::endl;
|
2001-03-12 08:52:37 +00:00
|
|
|
using std::ios;
|
2001-03-12 01:43:12 +00:00
|
|
|
using std::back_inserter;
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::istream_iterator;
|
2000-04-04 00:19:15 +00:00
|
|
|
using std::pair;
|
2001-03-07 14:25:31 +00:00
|
|
|
using std::make_pair;
|
2000-03-28 02:18:55 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
extern BufferList bufferlist;
|
|
|
|
// this should be static, but I need it in buffer.C
|
|
|
|
bool quitting; // flag, that we are quitting the program
|
|
|
|
extern bool finished; // all cleanup done just let it run through now.
|
|
|
|
|
|
|
|
/*
|
|
|
|
This is the inset locking stuff needed for mathed --------------------
|
|
|
|
|
|
|
|
an inset can simple call LockInset in it's edit call and *ONLY* in it's
|
|
|
|
edit call.
|
|
|
|
Inset::Edit() can only be called by the main lyx module.
|
|
|
|
|
|
|
|
Then the inset may modify the menu's and/or iconbars.
|
|
|
|
|
|
|
|
Unlocking is either done by LyX or the inset itself with a UnlockInset-call
|
|
|
|
|
|
|
|
During the lock, all button and keyboard events will be modified
|
|
|
|
and send to the inset through the following inset-features. Note that
|
|
|
|
Inset::InsetUnlock will be called from inside UnlockInset. It is meant
|
|
|
|
to contain the code for restoring the menus and things like this.
|
|
|
|
|
|
|
|
|
|
|
|
virtual void InsetButtonPress(int x, int y, int button);
|
|
|
|
virtual void InsetButtonRelease(int x, int y, int button);
|
|
|
|
virtual void InsetKeyPress(XKeyEvent *ev);
|
|
|
|
virtual void InsetMotionNotify(int x, int y, int state);
|
|
|
|
virtual void InsetUnlock();
|
|
|
|
|
|
|
|
If a inset wishes any redraw and/or update it just has to call
|
|
|
|
UpdateInset(this).
|
|
|
|
It's is completly irrelevant, where the inset is. UpdateInset will
|
|
|
|
find it in any paragraph in any buffer.
|
|
|
|
Of course the_locking_inset and the insets in the current paragraph/buffer
|
|
|
|
are checked first, so no performance problem should occur.
|
|
|
|
|
|
|
|
Hope that's ok for the beginning, Alejandro,
|
|
|
|
sorry that I needed so much time,
|
|
|
|
|
|
|
|
Matthias
|
|
|
|
*/
|
|
|
|
|
2000-02-23 16:39:03 +00:00
|
|
|
//void UpdateInset(BufferView * bv, Inset * inset, bool mark_dirty = true);
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/* these functions return 1 if an error occured,
|
|
|
|
otherwise 0 */
|
|
|
|
// Now they work only for updatable insets. [Alejandro 080596]
|
2000-01-08 21:02:58 +00:00
|
|
|
//int LockInset(UpdatableInset * inset);
|
2000-09-29 18:44:07 +00:00
|
|
|
void ToggleLockedInsetCursor(int x, int y, int asc, int desc);
|
2000-01-08 21:02:58 +00:00
|
|
|
//void FitLockedInsetCursor(long x, long y, int asc, int desc);
|
|
|
|
//int UnlockInset(UpdatableInset * inset);
|
|
|
|
//void LockedInsetStoreUndo(Undo::undo_kind kind);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/* this is for asyncron updating. UpdateInsetUpdateList will be called
|
|
|
|
automatically from LyX. Just insert the Inset into the Updatelist */
|
2000-02-23 16:39:03 +00:00
|
|
|
//void UpdateInsetUpdateList();
|
|
|
|
//void PutInsetIntoInsetUpdateList(Inset * inset);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-02-23 16:39:03 +00:00
|
|
|
//InsetUpdateStruct * InsetUpdateList = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
-----------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2000-10-10 11:50:43 +00:00
|
|
|
void ShowMessage(Buffer const * buf,
|
2000-03-28 02:18:55 +00:00
|
|
|
string const & msg1,
|
2000-08-30 04:38:32 +00:00
|
|
|
string const & msg2,
|
2001-04-17 15:15:59 +00:00
|
|
|
string const & msg3)
|
2000-03-20 16:37:50 +00:00
|
|
|
{
|
2001-04-17 15:15:59 +00:00
|
|
|
if (lyxrc.use_gui) {
|
|
|
|
string const str = msg1 + ' ' + msg2 + ' ' + msg3;
|
2001-04-24 17:33:01 +00:00
|
|
|
buf->getUser()->owner()->message(str);
|
2001-04-17 15:15:59 +00:00
|
|
|
} else
|
2000-10-23 12:16:05 +00:00
|
|
|
lyxerr << msg1 << msg2 << msg3 << endl;
|
2000-03-20 16:37:50 +00:00
|
|
|
}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Menu callbacks
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// File menu
|
|
|
|
//
|
|
|
|
// should be moved to lyxfunc.C
|
2000-11-14 02:01:57 +00:00
|
|
|
bool MenuWrite(BufferView * bv, Buffer * buffer)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-03-07 14:25:31 +00:00
|
|
|
// FIXME: needed ?
|
2000-10-11 21:06:43 +00:00
|
|
|
XFlush(fl_get_display());
|
2001-03-07 14:25:31 +00:00
|
|
|
|
2000-03-20 14:49:54 +00:00
|
|
|
if (!buffer->save()) {
|
2000-11-14 02:01:57 +00:00
|
|
|
string const fname = buffer->fileName();
|
|
|
|
string const s = MakeAbsPath(fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (AskQuestion(_("Save failed. Rename and try again?"),
|
1999-12-16 06:43:25 +00:00
|
|
|
MakeDisplayPath(s, 50),
|
|
|
|
_("(If not, document is not saved.)"))) {
|
2001-03-07 14:25:31 +00:00
|
|
|
return WriteAs(bv, buffer);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2000-08-08 15:36:25 +00:00
|
|
|
return false;
|
2001-03-07 14:25:31 +00:00
|
|
|
} else
|
2000-01-07 03:42:16 +00:00
|
|
|
lastfiles->newFile(buffer->fileName());
|
2000-08-08 15:36:25 +00:00
|
|
|
return true;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-07 14:25:31 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// should be moved to BufferView.C
|
2000-01-07 03:42:16 +00:00
|
|
|
// Half of this func should be in LyXView, the rest in BufferView.
|
2001-03-07 14:25:31 +00:00
|
|
|
bool WriteAs(BufferView * bv, Buffer * buffer, string const & filename)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-12-10 00:07:59 +00:00
|
|
|
string fname = buffer->fileName();
|
1999-10-02 16:21:10 +00:00
|
|
|
string oldname = fname;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-03-07 14:25:31 +00:00
|
|
|
if (filename.empty()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-03-12 01:43:12 +00:00
|
|
|
FileDialog fileDlg(bv->owner(),
|
|
|
|
_("Choose a filename to save document as"),
|
2001-03-07 14:25:31 +00:00
|
|
|
LFUN_WRITEAS,
|
2001-03-12 01:43:12 +00:00
|
|
|
make_pair(string(_("Documents")),
|
|
|
|
string(lyxrc.document_path)),
|
|
|
|
make_pair(string(_("Templates")),
|
|
|
|
string(lyxrc.template_path)));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-03-07 14:25:31 +00:00
|
|
|
if (!IsLyXFilename(fname))
|
|
|
|
fname += ".lyx";
|
2000-11-10 17:29:47 +00:00
|
|
|
|
2001-03-12 01:43:12 +00:00
|
|
|
FileDialog::Result result =
|
|
|
|
fileDlg.Select(OnlyPath(fname),
|
|
|
|
_("*.lyx|LyX Documents (*.lyx)"),
|
|
|
|
OnlyFilename(fname));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-03-07 14:25:31 +00:00
|
|
|
if (result.first == FileDialog::Later)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
fname = result.second;
|
|
|
|
|
|
|
|
if (fname.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Make sure the absolute filename ends with appropriate suffix
|
|
|
|
fname = MakeAbsPath(fname);
|
|
|
|
if (!IsLyXFilename(fname))
|
|
|
|
fname += ".lyx";
|
|
|
|
} else
|
|
|
|
fname = filename;
|
2000-11-10 17:29:47 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// Same name as we have already?
|
2001-03-07 14:25:31 +00:00
|
|
|
if (!buffer->isUnnamed() && fname == oldname) {
|
1999-09-27 18:44:28 +00:00
|
|
|
if (!AskQuestion(_("Same name as document already has:"),
|
2001-03-07 14:25:31 +00:00
|
|
|
MakeDisplayPath(fname, 50),
|
1999-09-27 18:44:28 +00:00
|
|
|
_("Save anyway?")))
|
2000-07-26 13:43:16 +00:00
|
|
|
return false;
|
1999-09-27 18:44:28 +00:00
|
|
|
// Falls through to name change and save
|
|
|
|
}
|
|
|
|
// No, but do we have another file with this name open?
|
2001-03-07 14:25:31 +00:00
|
|
|
else if (!buffer->isUnnamed() && bufferlist.exists(fname)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
if (AskQuestion(_("Another document with same name open!"),
|
2001-03-07 14:25:31 +00:00
|
|
|
MakeDisplayPath(fname, 50),
|
1999-09-27 18:44:28 +00:00
|
|
|
_("Replace with current document?")))
|
|
|
|
{
|
2001-03-07 14:25:31 +00:00
|
|
|
bufferlist.close(bufferlist.getBuffer(fname));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Ok, change the name of the buffer, but don't save!
|
2001-03-07 14:25:31 +00:00
|
|
|
buffer->setFileName(fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
buffer->markDirty();
|
|
|
|
|
2000-03-20 16:37:50 +00:00
|
|
|
ShowMessage(buffer, _("Document renamed to '"),
|
2001-03-07 14:25:31 +00:00
|
|
|
MakeDisplayPath(fname), _("', but not saved..."));
|
|
|
|
}
|
2000-07-26 13:43:16 +00:00
|
|
|
return false;
|
1999-09-27 18:44:28 +00:00
|
|
|
} // Check whether the file exists
|
|
|
|
else {
|
2001-03-07 14:25:31 +00:00
|
|
|
FileInfo const myfile(fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (myfile.isOK() && !AskQuestion(_("Document already exists:"),
|
2001-03-07 14:25:31 +00:00
|
|
|
MakeDisplayPath(fname, 50),
|
1999-09-27 18:44:28 +00:00
|
|
|
_("Replace file?")))
|
2000-07-26 13:43:16 +00:00
|
|
|
return false;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Ok, change the name of the buffer
|
2001-03-07 14:25:31 +00:00
|
|
|
buffer->setFileName(fname);
|
1999-09-27 18:44:28 +00:00
|
|
|
buffer->markDirty();
|
2000-08-08 15:36:25 +00:00
|
|
|
bool unnamed = buffer->isUnnamed();
|
2000-07-26 13:43:16 +00:00
|
|
|
buffer->setUnnamed(false);
|
2001-03-07 14:25:31 +00:00
|
|
|
|
2000-11-14 02:01:57 +00:00
|
|
|
if (!MenuWrite(bv, buffer)) {
|
2000-10-12 00:11:06 +00:00
|
|
|
buffer->setFileName(oldname);
|
2000-08-08 15:36:25 +00:00
|
|
|
buffer->setUnnamed(unnamed);
|
|
|
|
ShowMessage(buffer, _("Document could not be saved!"),
|
|
|
|
_("Holding the old name."), MakeDisplayPath(oldname));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// now remove the oldname autosave file if existant!
|
|
|
|
removeAutosaveFile(oldname);
|
2000-07-26 13:43:16 +00:00
|
|
|
return true;
|
2000-08-08 15:36:25 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
1999-11-26 06:57:35 +00:00
|
|
|
int MenuRunChktex(Buffer * buffer)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (buffer->isSGML()) {
|
|
|
|
WriteAlert(_("Chktex does not work with SGML derived documents."));
|
|
|
|
return 0;
|
|
|
|
} else
|
|
|
|
ret = buffer->runChktex();
|
|
|
|
|
|
|
|
if (ret >= 0) {
|
1999-10-02 16:21:10 +00:00
|
|
|
string s;
|
|
|
|
string t;
|
1999-09-27 18:44:28 +00:00
|
|
|
if (ret == 0) {
|
|
|
|
s = _("No warnings found.");
|
|
|
|
} else if (ret == 1) {
|
|
|
|
s = _("One warning found.");
|
|
|
|
t = _("Use 'Edit->Go to Error' to find it.");
|
|
|
|
} else {
|
1999-10-19 16:48:35 +00:00
|
|
|
s += tostr(ret);
|
1999-09-27 18:44:28 +00:00
|
|
|
s += _(" warnings found.");
|
|
|
|
t = _("Use 'Edit->Go to Error' to find them.");
|
|
|
|
}
|
|
|
|
WriteAlert(_("Chktex run successfully"), s, t);
|
|
|
|
} else {
|
1999-11-15 12:01:38 +00:00
|
|
|
WriteAlert(_("Error!"), _("It seems chktex does not work."));
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2000-11-14 02:01:57 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void QuitLyX()
|
|
|
|
{
|
2001-06-27 14:10:35 +00:00
|
|
|
lyxerr[Debug::INFO] << "Running QuitLyX." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-02-01 17:37:09 +00:00
|
|
|
if (lyxrc.use_gui) {
|
|
|
|
if (!bufferlist.QwriteAll())
|
|
|
|
return;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-02-01 17:37:09 +00:00
|
|
|
lastfiles->writeFile(lyxrc.lastfiles);
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Set a flag that we do quitting from the program,
|
|
|
|
// so no refreshes are necessary.
|
|
|
|
quitting = true;
|
|
|
|
|
|
|
|
// close buffers first
|
|
|
|
bufferlist.closeAll();
|
|
|
|
|
|
|
|
// do any other cleanup procedures now
|
2001-06-27 14:10:35 +00:00
|
|
|
lyxerr[Debug::INFO] << "Deleting tmp dir " << system_tempdir << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
DestroyLyXTmpDir(system_tempdir);
|
|
|
|
|
|
|
|
finished = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-04-11 22:55:29 +00:00
|
|
|
void AutoSave(BufferView * bv)
|
1999-09-27 18:44:28 +00:00
|
|
|
// should probably be moved into BufferList (Lgb)
|
|
|
|
// Perfect target for a thread...
|
|
|
|
{
|
2000-04-11 22:55:29 +00:00
|
|
|
if (!bv->available())
|
1999-09-27 18:44:28 +00:00
|
|
|
return;
|
|
|
|
|
2000-08-08 15:36:25 +00:00
|
|
|
if (bv->buffer()->isBakClean() || bv->buffer()->isReadonly()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
// We don't save now, but we'll try again later
|
2000-04-11 22:55:29 +00:00
|
|
|
bv->owner()->resetAutosaveTimer();
|
1999-09-27 18:44:28 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-04-24 17:33:01 +00:00
|
|
|
bv->owner()->message(_("Autosaving current document..."));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// create autosave filename
|
2000-04-11 22:55:29 +00:00
|
|
|
string fname = OnlyPath(bv->buffer()->fileName());
|
1999-09-27 18:44:28 +00:00
|
|
|
fname += "#";
|
2000-04-11 22:55:29 +00:00
|
|
|
fname += OnlyFilename(bv->buffer()->fileName());
|
1999-09-27 18:44:28 +00:00
|
|
|
fname += "#";
|
|
|
|
|
|
|
|
// tmp_ret will be located (usually) in /tmp
|
|
|
|
// will that be a problem?
|
2000-11-14 02:01:57 +00:00
|
|
|
pid_t const pid = fork(); // If you want to debug the autosave
|
1999-09-27 18:44:28 +00:00
|
|
|
// you should set pid to -1, and comment out the
|
|
|
|
// fork.
|
|
|
|
if (pid == 0 || pid == -1) {
|
|
|
|
// pid = -1 signifies that lyx was unable
|
|
|
|
// to fork. But we will do the save
|
|
|
|
// anyway.
|
|
|
|
bool failed = false;
|
2000-11-08 09:39:46 +00:00
|
|
|
|
2001-01-08 09:37:13 +00:00
|
|
|
string const tmp_ret = lyx::tempName(string(), "lyxauto");
|
1999-09-27 18:44:28 +00:00
|
|
|
if (!tmp_ret.empty()) {
|
2000-04-11 22:55:29 +00:00
|
|
|
bv->buffer()->writeFile(tmp_ret, 1);
|
1999-09-27 18:44:28 +00:00
|
|
|
// assume successful write of tmp_ret
|
2001-01-08 09:37:13 +00:00
|
|
|
if (!lyx::rename(tmp_ret, fname)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
failed = true;
|
|
|
|
// most likely couldn't move between filesystems
|
|
|
|
// unless write of tmp_ret failed
|
|
|
|
// so remove tmp file (if it exists)
|
2000-09-26 13:54:57 +00:00
|
|
|
lyx::unlink(tmp_ret);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
failed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (failed) {
|
|
|
|
// failed to write/rename tmp_ret so try writing direct
|
2000-04-11 22:55:29 +00:00
|
|
|
if (!bv->buffer()->writeFile(fname, 1)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
// It is dangerous to do this in the child,
|
|
|
|
// but safe in the parent, so...
|
|
|
|
if (pid == -1)
|
2001-04-24 17:33:01 +00:00
|
|
|
bv->owner()->message(_("Autosave Failed!"));
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pid == 0) { // we are the child so...
|
|
|
|
_exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-04-11 22:55:29 +00:00
|
|
|
bv->buffer()->markBakClean();
|
|
|
|
bv->owner()->resetAutosaveTimer();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
2000-03-09 03:36:48 +00:00
|
|
|
// Copyright CHT Software Service GmbH
|
1999-09-27 18:44:28 +00:00
|
|
|
// Uwe C. Schroeder
|
|
|
|
//
|
|
|
|
// create new file with template
|
|
|
|
// SERVERCMD !
|
|
|
|
//
|
1999-10-02 16:21:10 +00:00
|
|
|
Buffer * NewLyxFile(string const & filename)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
// Split argument by :
|
1999-10-02 16:21:10 +00:00
|
|
|
string name;
|
1999-11-01 04:22:28 +00:00
|
|
|
string tmpname = split(filename, name, ':');
|
1999-09-27 18:44:28 +00:00
|
|
|
#ifdef __EMX__ // Fix me! lyx_cb.C may not be low level enough to allow this.
|
1999-11-01 04:22:28 +00:00
|
|
|
if (name.length() == 1
|
|
|
|
&& isalpha(static_cast<unsigned char>(name[0]))
|
|
|
|
&& (prefixIs(tmpname, "/") || prefixIs(tmpname, "\\"))) {
|
1999-09-27 18:44:28 +00:00
|
|
|
name += ':';
|
1999-11-01 04:22:28 +00:00
|
|
|
name += token(tmpname, ':', 0);
|
|
|
|
tmpname = split(tmpname, ':');
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
#endif
|
2001-06-27 14:10:35 +00:00
|
|
|
lyxerr[Debug::INFO] << "Arg is " << filename
|
|
|
|
<< "\nName is " << name
|
|
|
|
<< "\nTemplate is " << tmpname << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// find a free buffer
|
1999-11-26 06:57:35 +00:00
|
|
|
Buffer * tmpbuf = bufferlist.newFile(name, tmpname);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (tmpbuf)
|
1999-12-10 00:07:59 +00:00
|
|
|
lastfiles->newFile(tmpbuf->fileName());
|
1999-09-27 18:44:28 +00:00
|
|
|
return tmpbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Insert ascii file (if filename is empty, prompt for one)
|
2000-03-17 10:14:46 +00:00
|
|
|
void InsertAsciiFile(BufferView * bv, string const & f, bool asParagraph)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
string fname = f;
|
2001-03-07 14:25:31 +00:00
|
|
|
|
|
|
|
if (!bv->available())
|
|
|
|
return;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
if (fname.empty()) {
|
2001-03-07 14:25:31 +00:00
|
|
|
FileDialog fileDlg(bv->owner(), _("Select file to insert"),
|
|
|
|
(asParagraph) ? LFUN_FILE_INSERT_ASCII_PARA : LFUN_FILE_INSERT_ASCII);
|
|
|
|
|
|
|
|
FileDialog::Result result = fileDlg.Select(bv->owner()->buffer()->filepath);
|
|
|
|
|
|
|
|
if (result.first == FileDialog::Later)
|
|
|
|
return;
|
|
|
|
|
|
|
|
fname = result.second;
|
|
|
|
|
|
|
|
if (fname.empty())
|
|
|
|
return;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FileInfo fi(fname);
|
|
|
|
|
1999-11-24 22:14:46 +00:00
|
|
|
if (!fi.readable()) {
|
|
|
|
WriteFSAlert(_("Error! Specified file is unreadable: "),
|
1999-11-15 12:01:38 +00:00
|
|
|
MakeDisplayPath(fname, 50));
|
1999-09-27 18:44:28 +00:00
|
|
|
return;
|
|
|
|
}
|
1999-11-24 22:14:46 +00:00
|
|
|
|
2000-01-06 02:44:26 +00:00
|
|
|
ifstream ifs(fname.c_str());
|
|
|
|
if (!ifs) {
|
1999-11-24 22:14:46 +00:00
|
|
|
WriteFSAlert(_("Error! Cannot open specified file: "),
|
|
|
|
MakeDisplayPath(fname, 50));
|
|
|
|
return;
|
|
|
|
}
|
1999-11-15 12:01:38 +00:00
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
ifs.unsetf(ios::skipws);
|
|
|
|
istream_iterator<char> ii(ifs);
|
|
|
|
istream_iterator<char> end;
|
2000-07-24 21:49:58 +00:00
|
|
|
#if !defined(USE_INCLUDED_STRING) && !defined(STD_STRING_IS_GOOD)
|
|
|
|
// We use this until the compilers get better...
|
|
|
|
vector<char> tmp;
|
|
|
|
copy(ii, end, back_inserter(tmp));
|
2000-12-06 22:24:17 +00:00
|
|
|
string const tmpstr(tmp.begin(), tmp.end());
|
2000-07-24 21:49:58 +00:00
|
|
|
#else
|
|
|
|
// This is what we want to use and what we will use once the
|
|
|
|
// compilers get good enough.
|
2000-03-17 10:14:46 +00:00
|
|
|
//string tmpstr(ii, end); // yet a reason for using std::string
|
2000-03-16 04:29:22 +00:00
|
|
|
// alternate approach to get the file into a string:
|
2000-03-17 10:14:46 +00:00
|
|
|
string tmpstr;
|
|
|
|
copy(ii, end, back_inserter(tmpstr));
|
2000-07-24 21:49:58 +00:00
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
// insert the string
|
2000-09-26 13:54:57 +00:00
|
|
|
bv->hideCursor();
|
1999-11-26 06:57:35 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// clear the selection
|
2001-02-14 10:11:22 +00:00
|
|
|
bv->beforeChange(bv->text);
|
1999-12-10 00:07:59 +00:00
|
|
|
if (!asParagraph)
|
2001-06-25 00:06:33 +00:00
|
|
|
bv->text->insertStringAsLines(bv, tmpstr);
|
1999-12-10 00:07:59 +00:00
|
|
|
else
|
2001-06-25 00:06:33 +00:00
|
|
|
bv->text->insertStringAsParagraphs(bv, tmpstr);
|
2001-02-14 08:38:21 +00:00
|
|
|
bv->update(bv->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-14 02:01:57 +00:00
|
|
|
void MenuInsertLabel(BufferView * bv, string const & arg)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-09-14 17:53:12 +00:00
|
|
|
string label(arg);
|
2000-11-14 02:01:57 +00:00
|
|
|
ProhibitInput(bv);
|
1999-12-30 02:35:43 +00:00
|
|
|
if (label.empty()) {
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph * par = bv->text->cursor.par();
|
2000-12-11 09:46:09 +00:00
|
|
|
LyXLayout const * layout =
|
|
|
|
&textclasslist.Style(bv->buffer()->params.textclass,
|
2001-06-25 00:06:33 +00:00
|
|
|
par->getLayout());
|
2000-12-11 09:46:09 +00:00
|
|
|
|
2001-03-09 00:56:42 +00:00
|
|
|
if (layout->latextype == LATEX_PARAGRAPH && par->previous()) {
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph * par2 = par->previous();
|
2000-12-11 09:46:09 +00:00
|
|
|
LyXLayout const * layout2 =
|
|
|
|
&textclasslist.Style(bv->buffer()->params.textclass,
|
2001-06-25 00:06:33 +00:00
|
|
|
par2->getLayout());
|
2000-12-11 09:46:09 +00:00
|
|
|
if (layout2->latextype != LATEX_PARAGRAPH) {
|
|
|
|
par = par2;
|
|
|
|
layout = layout2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
string text = layout->latexname().substr(0, 3);
|
|
|
|
if (layout->latexname() == "theorem")
|
|
|
|
text = "thm"; // Create a correct prefix for prettyref
|
2001-05-03 14:31:33 +00:00
|
|
|
|
2000-12-11 09:46:09 +00:00
|
|
|
text += ":";
|
|
|
|
if (layout->latextype == LATEX_PARAGRAPH ||
|
|
|
|
lyxrc.label_init_length < 0)
|
|
|
|
text.erase();
|
2001-06-25 00:06:33 +00:00
|
|
|
string par_text = par->asString(bv->buffer(), false);
|
2000-12-11 09:46:09 +00:00
|
|
|
for (int i = 0; i < lyxrc.label_init_length; ++i) {
|
|
|
|
if (par_text.empty())
|
|
|
|
break;
|
|
|
|
string head;
|
|
|
|
par_text = split(par_text, head, ' ');
|
|
|
|
if (i > 0)
|
2001-01-15 13:31:25 +00:00
|
|
|
text += '-'; // Is it legal to use spaces in
|
2000-12-11 09:46:09 +00:00
|
|
|
// labels ?
|
|
|
|
text += head;
|
|
|
|
}
|
|
|
|
|
|
|
|
pair<bool, string> result =
|
|
|
|
askForText(_("Enter new label to insert:"), text);
|
1999-12-30 02:35:43 +00:00
|
|
|
if (result.first) {
|
|
|
|
label = frontStrip(strip(result.second));
|
|
|
|
}
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
if (!label.empty()) {
|
2000-08-04 13:12:30 +00:00
|
|
|
InsetCommandParams p( "label", label );
|
|
|
|
InsetLabel * inset = new InsetLabel( p );
|
2000-11-14 02:01:57 +00:00
|
|
|
bv->insertInset( inset );
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2000-11-14 02:01:57 +00:00
|
|
|
AllowInput(bv);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-14 02:01:57 +00:00
|
|
|
void MenuLayoutSave(BufferView * bv)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-11-14 02:01:57 +00:00
|
|
|
if (!bv->available())
|
1999-12-16 06:43:25 +00:00
|
|
|
return;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
if (AskQuestion(_("Do you want to save the current settings"),
|
|
|
|
_("for Character, Document, Paper and Quotes"),
|
|
|
|
_("as default for new documents?")))
|
2000-11-14 02:01:57 +00:00
|
|
|
bv->buffer()->saveParamsAsDefaults();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This function runs "configure" and then rereads lyx.defaults to
|
|
|
|
// reconfigure the automatic settings.
|
2000-02-04 09:38:32 +00:00
|
|
|
void Reconfigure(BufferView * bv)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-04-24 17:33:01 +00:00
|
|
|
bv->owner()->message(_("Running configure..."));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Run configure in user lyx directory
|
1999-10-13 17:32:46 +00:00
|
|
|
Path p(user_lyxdir);
|
1999-09-27 18:44:28 +00:00
|
|
|
Systemcalls one(Systemcalls::System,
|
1999-12-16 06:43:25 +00:00
|
|
|
AddName(system_lyxdir, "configure"));
|
1999-10-13 17:32:46 +00:00
|
|
|
p.pop();
|
2001-04-24 17:33:01 +00:00
|
|
|
bv->owner()->message(_("Reloading configuration..."));
|
2000-03-12 10:35:05 +00:00
|
|
|
lyxrc.read(LibFileSearch(string(), "lyxrc.defaults"));
|
1999-09-27 18:44:28 +00:00
|
|
|
WriteAlert(_("The system has been reconfigured."),
|
|
|
|
_("You need to restart LyX to make use of any"),
|
|
|
|
_("updated document class specifications."));
|
|
|
|
}
|