1999-09-27 18:44:28 +00:00
|
|
|
/* This file is part of
|
2002-03-21 17:27:08 +00:00
|
|
|
* ======================================================
|
|
|
|
*
|
1999-10-02 16:21:10 +00:00
|
|
|
* LyX, The Document Processor
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
1999-10-02 16:21:10 +00:00
|
|
|
* 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>
|
|
|
|
|
|
|
|
#include "lyx_cb.h"
|
2001-03-28 14:51:25 +00:00
|
|
|
#include "lyx_main.h"
|
2001-07-29 15:34:18 +00:00
|
|
|
#include "buffer.h"
|
2001-03-28 14:51:25 +00:00
|
|
|
#include "bufferlist.h"
|
2000-04-12 14:20:08 +00:00
|
|
|
#include "bufferview_funcs.h"
|
2001-07-29 15:34:18 +00:00
|
|
|
#include "debug.h"
|
2001-03-28 14:51:25 +00:00
|
|
|
#include "lastfiles.h"
|
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "lyxtext.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
#include "gettext.h"
|
|
|
|
#include "BufferView.h"
|
|
|
|
|
|
|
|
#include "insets/insetlabel.h"
|
|
|
|
|
2002-07-22 18:56:04 +00:00
|
|
|
#include "frontends/lyx_gui.h"
|
|
|
|
#include "frontends/LyXView.h"
|
2001-11-26 10:19:58 +00:00
|
|
|
#include "frontends/Alert.h"
|
2001-03-28 14:51:25 +00:00
|
|
|
#include "frontends/FileDialog.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
#include "support/FileInfo.h"
|
2000-04-12 14:20:08 +00:00
|
|
|
#include "support/filetools.h"
|
2002-10-31 12:42:26 +00:00
|
|
|
#include "support/forkedcall.h"
|
2000-04-12 14:20:08 +00:00
|
|
|
#include "support/path.h"
|
2002-02-18 19:13:48 +00:00
|
|
|
#include "support/systemcall.h"
|
2001-07-29 17:39:01 +00:00
|
|
|
#include "support/lstrings.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
2002-11-25 01:15:10 +00:00
|
|
|
#include "BoostFormat.h"
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <algorithm>
|
2002-03-21 17:27:08 +00:00
|
|
|
#include <utility>
|
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
|
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2002-01-17 06:43:34 +00:00
|
|
|
if (lyxrc.use_gui
|
|
|
|
&& buf && buf->getUser() && buf->getUser()->owner()) {
|
|
|
|
string const str = msg1 + ' ' + msg2 + ' ' + msg3;
|
|
|
|
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
|
|
|
{
|
2000-03-20 14:49:54 +00:00
|
|
|
if (!buffer->save()) {
|
2001-11-26 10:19:58 +00:00
|
|
|
if (Alert::askQuestion(_("Save failed. Rename and try again?"),
|
2002-01-14 23:31:23 +00:00
|
|
|
MakeDisplayPath(buffer->fileName(), 50),
|
1999-12-16 06:43:25 +00:00
|
|
|
_("(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();
|
2001-12-28 13:26:54 +00:00
|
|
|
string const 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
|
|
|
|
2003-02-21 12:22:25 +00:00
|
|
|
FileDialog fileDlg(_("Choose a filename to save document as"),
|
2001-03-07 14:25:31 +00:00
|
|
|
LFUN_WRITEAS,
|
2002-01-13 15:01:25 +00:00
|
|
|
make_pair(string(_("Documents|#o#O")),
|
2001-03-12 01:43:12 +00:00
|
|
|
string(lyxrc.document_path)),
|
2002-01-13 15:01:25 +00:00
|
|
|
make_pair(string(_("Templates|#T#t")),
|
2001-03-12 01:43:12 +00:00
|
|
|
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 =
|
2002-11-17 08:32:09 +00:00
|
|
|
fileDlg.save(OnlyPath(fname),
|
2003-01-23 16:23:43 +00:00
|
|
|
_("*.lyx| LyX Documents (*.lyx)"),
|
2001-03-12 01:43:12 +00:00
|
|
|
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) {
|
2001-11-26 10:19:58 +00:00
|
|
|
if (!Alert::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
|
2002-03-21 17:27:08 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
// 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)) {
|
2001-11-26 10:19:58 +00:00
|
|
|
if (Alert::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);
|
2002-03-21 17:27:08 +00:00
|
|
|
if (myfile.isOK() && !Alert::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()) {
|
2001-11-26 10:19:58 +00:00
|
|
|
Alert::alert(_("Chktex does not work with SGML derived documents."));
|
1999-09-27 18:44:28 +00:00
|
|
|
return 0;
|
2002-03-21 17:27:08 +00:00
|
|
|
} else
|
1999-09-27 18:44:28 +00:00
|
|
|
ret = buffer->runChktex();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
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.");
|
2001-10-04 09:57:02 +00:00
|
|
|
t = _("Use `Navigate->Error' to find it.");
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
1999-10-19 16:48:35 +00:00
|
|
|
s += tostr(ret);
|
1999-09-27 18:44:28 +00:00
|
|
|
s += _(" warnings found.");
|
2001-10-04 09:57:02 +00:00
|
|
|
t = _("Use `Navigate->Error' to find them.");
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2001-11-26 10:19:58 +00:00
|
|
|
Alert::alert(_("Chktex run successfully"), s, t);
|
1999-09-27 18:44:28 +00:00
|
|
|
} else {
|
2001-11-26 10:19:58 +00:00
|
|
|
Alert::alert(_("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) {
|
2001-06-28 10:25:20 +00:00
|
|
|
if (!bufferlist.qwriteAll())
|
2001-02-01 17:37:09 +00:00
|
|
|
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);
|
|
|
|
|
2002-07-22 18:56:04 +00:00
|
|
|
lyx_gui::exit();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-31 12:42:26 +00:00
|
|
|
namespace {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2002-10-31 12:42:26 +00:00
|
|
|
class AutoSaveBuffer : public ForkedProcess {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
AutoSaveBuffer(BufferView & bv, string const & fname)
|
|
|
|
: bv_(bv), fname_(fname) {}
|
|
|
|
///
|
|
|
|
virtual ForkedProcess * clone() const {
|
|
|
|
return new AutoSaveBuffer(*this);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2002-10-31 12:42:26 +00:00
|
|
|
///
|
|
|
|
int start();
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
virtual int generateChild();
|
|
|
|
///
|
|
|
|
BufferView & bv_;
|
|
|
|
string fname_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int AutoSaveBuffer::start()
|
|
|
|
{
|
2002-11-25 01:15:10 +00:00
|
|
|
#if USE_BOOST_FORMAT
|
|
|
|
command_ = boost::io::str(boost::format(_("Auto-saving %1$s")) % fname_);
|
|
|
|
#else
|
|
|
|
command_ = _("Auto-saving ") + fname_;
|
|
|
|
#endif
|
2002-10-31 12:42:26 +00:00
|
|
|
return runNonBlocking();
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-10-31 12:42:26 +00:00
|
|
|
int AutoSaveBuffer::generateChild()
|
|
|
|
{
|
1999-09-27 18:44:28 +00:00
|
|
|
// 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;
|
2002-03-21 17:27:08 +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()) {
|
2002-10-31 12:42:26 +00:00
|
|
|
bv_.buffer()->writeFile(tmp_ret);
|
1999-09-27 18:44:28 +00:00
|
|
|
// assume successful write of tmp_ret
|
2002-10-31 12:42:26 +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;
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
if (failed) {
|
|
|
|
// failed to write/rename tmp_ret so try writing direct
|
2002-10-31 12:42:26 +00:00
|
|
|
if (!bv_.buffer()->writeFile(fname_)) {
|
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)
|
2002-10-31 12:42:26 +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);
|
|
|
|
}
|
|
|
|
}
|
2002-10-31 12:42:26 +00:00
|
|
|
return pid;
|
|
|
|
}
|
2002-11-25 01:15:10 +00:00
|
|
|
|
2002-10-31 12:42:26 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
|
void AutoSave(BufferView * bv)
|
|
|
|
// should probably be moved into BufferList (Lgb)
|
|
|
|
// Perfect target for a thread...
|
|
|
|
{
|
|
|
|
if (!bv->available())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (bv->buffer()->isBakClean() || bv->buffer()->isReadonly()) {
|
|
|
|
// We don't save now, but we'll try again later
|
|
|
|
bv->owner()->resetAutosaveTimer();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bv->owner()->message(_("Autosaving current document..."));
|
|
|
|
|
|
|
|
// create autosave filename
|
|
|
|
string fname = bv->buffer()->filePath();
|
2002-11-27 10:30:28 +00:00
|
|
|
fname += '#';
|
2002-10-31 12:42:26 +00:00
|
|
|
fname += OnlyFilename(bv->buffer()->fileName());
|
2002-11-27 10:30:28 +00:00
|
|
|
fname += '#';
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-10-31 12:42:26 +00:00
|
|
|
AutoSaveBuffer autosave(*bv, fname);
|
|
|
|
autosave.start();
|
2002-11-25 01:15:10 +00:00
|
|
|
|
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 !
|
|
|
|
//
|
2002-08-04 23:11:50 +00:00
|
|
|
Buffer * NewFile(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
|
|
|
|
2002-03-21 17:27:08 +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
|
|
|
{
|
2002-03-21 17:27:08 +00:00
|
|
|
if (!bv->available())
|
2001-03-07 14:25:31 +00:00
|
|
|
return;
|
2002-03-04 15:42:54 +00:00
|
|
|
|
|
|
|
string const tmpstr = getContentsOfAsciiFile(bv, f, asParagraph);
|
|
|
|
if (tmpstr.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// insert the string
|
|
|
|
bv->hideCursor();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-03-04 15:42:54 +00:00
|
|
|
// clear the selection
|
|
|
|
bool flag = (bv->text == bv->getLyXText());
|
|
|
|
if (flag)
|
|
|
|
bv->beforeChange(bv->text);
|
|
|
|
if (!asParagraph)
|
2003-03-17 16:25:00 +00:00
|
|
|
bv->getLyXText()->insertStringAsLines(tmpstr);
|
2002-03-04 15:42:54 +00:00
|
|
|
else
|
2003-03-17 16:25:00 +00:00
|
|
|
bv->getLyXText()->insertStringAsParagraphs(tmpstr);
|
2002-03-04 15:42:54 +00:00
|
|
|
if (flag)
|
|
|
|
bv->update(bv->text,
|
2002-03-21 17:27:08 +00:00
|
|
|
BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2002-03-04 15:42:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Insert ascii file (if filename is empty, prompt for one)
|
|
|
|
string getContentsOfAsciiFile(BufferView * bv, string const & f, bool asParagraph)
|
|
|
|
{
|
|
|
|
string fname = f;
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
if (fname.empty()) {
|
2003-02-21 12:22:25 +00:00
|
|
|
FileDialog fileDlg(_("Select file to insert"),
|
2001-03-07 14:25:31 +00:00
|
|
|
(asParagraph) ? LFUN_FILE_INSERT_ASCII_PARA : LFUN_FILE_INSERT_ASCII);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-11-17 08:32:09 +00:00
|
|
|
FileDialog::Result result = fileDlg.open(bv->owner()->buffer()->filePath());
|
2001-03-07 14:25:31 +00:00
|
|
|
|
|
|
|
if (result.first == FileDialog::Later)
|
2002-03-04 15:42:54 +00:00
|
|
|
return string();
|
2001-03-07 14:25:31 +00:00
|
|
|
|
|
|
|
fname = result.second;
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
if (fname.empty())
|
2002-03-04 15:42:54 +00:00
|
|
|
return string();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FileInfo fi(fname);
|
|
|
|
|
1999-11-24 22:14:46 +00:00
|
|
|
if (!fi.readable()) {
|
2001-11-26 10:19:58 +00:00
|
|
|
Alert::err_alert(_("Error! Specified file is unreadable: "),
|
1999-11-15 12:01:38 +00:00
|
|
|
MakeDisplayPath(fname, 50));
|
2002-03-04 15:42:54 +00:00
|
|
|
return string();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
1999-11-24 22:14:46 +00:00
|
|
|
|
2000-01-06 02:44:26 +00:00
|
|
|
ifstream ifs(fname.c_str());
|
|
|
|
if (!ifs) {
|
2003-01-23 16:23:43 +00:00
|
|
|
Alert::err_alert(_("Error! Cannot open specified file:"),
|
1999-11-24 22:14:46 +00:00
|
|
|
MakeDisplayPath(fname, 50));
|
2002-03-04 15:42:54 +00:00
|
|
|
return string();
|
1999-11-24 22:14:46 +00:00
|
|
|
}
|
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
|
2002-03-21 17:27:08 +00:00
|
|
|
// 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
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-03-04 15:42:54 +00:00
|
|
|
return tmpstr;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-27 16:24:14 +00:00
|
|
|
string const getPossibleLabel(BufferView const & bv)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2003-02-27 16:24:14 +00:00
|
|
|
Paragraph * par = bv.getLyXText()->cursor.par();
|
|
|
|
LyXLayout_ptr layout = par->layout();
|
|
|
|
if (layout->latextype == LATEX_PARAGRAPH && par->previous()) {
|
|
|
|
Paragraph * par2 = par->previous();
|
2000-12-11 09:46:09 +00:00
|
|
|
|
2003-02-27 16:24:14 +00:00
|
|
|
LyXLayout_ptr const & layout2 = par2->layout();
|
|
|
|
|
|
|
|
if (layout2->latextype != LATEX_PARAGRAPH) {
|
|
|
|
par = par2;
|
|
|
|
layout = layout2;
|
1999-12-30 02:35:43 +00:00
|
|
|
}
|
|
|
|
}
|
2003-02-27 16:24:14 +00:00
|
|
|
|
|
|
|
string text = layout->latexname().substr(0, 3);
|
|
|
|
if (layout->latexname() == "theorem")
|
|
|
|
text = "thm"; // Create a correct prefix for prettyref
|
|
|
|
|
|
|
|
text += ':';
|
|
|
|
if (layout->latextype == LATEX_PARAGRAPH ||
|
|
|
|
lyxrc.label_init_length < 0)
|
|
|
|
text.erase();
|
|
|
|
|
|
|
|
string par_text = par->asString(bv.buffer(), false);
|
|
|
|
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)
|
|
|
|
text += '-'; // Is it legal to use spaces in
|
|
|
|
// labels ?
|
|
|
|
text += head;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
2003-02-27 16:24:14 +00:00
|
|
|
|
|
|
|
return text;
|
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);
|
2002-02-18 19:13:48 +00:00
|
|
|
Systemcall one;
|
2002-03-21 17:27:08 +00:00
|
|
|
one.startscript(Systemcall::Wait,
|
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"));
|
2002-03-21 17:27:08 +00:00
|
|
|
Alert::alert(_("The system has been reconfigured."),
|
1999-09-27 18:44:28 +00:00
|
|
|
_("You need to restart LyX to make use of any"),
|
|
|
|
_("updated document class specifications."));
|
|
|
|
}
|