2001-12-28 13:26:54 +00:00
|
|
|
/* This file is part of
|
2002-03-21 17:27:08 +00:00
|
|
|
* ======================================================
|
|
|
|
*
|
2001-12-28 13:26:54 +00:00
|
|
|
* LyX, The Document Processor
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2001-12-28 13:26:54 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
* Copyright 1995-2001 The LyX Team.
|
|
|
|
*
|
|
|
|
* ======================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "lyxtextclasslist.h"
|
|
|
|
#include "lyxtextclass.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "lyxlex.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
#include "frontends/Alert.h"
|
|
|
|
|
|
|
|
#include "support/lyxfunctional.h"
|
|
|
|
#include "support/LAssert.h"
|
|
|
|
#include "support/filetools.h"
|
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
2002-06-10 07:57:39 +00:00
|
|
|
#ifndef CXX_GLOBAL_CSTD
|
|
|
|
using std::exit;
|
|
|
|
#endif
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
using lyx::textclass_type;
|
|
|
|
using std::pair;
|
|
|
|
using std::make_pair;
|
|
|
|
using std::endl;
|
2002-01-07 14:17:54 +00:00
|
|
|
using std::find_if;
|
|
|
|
using std::sort;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Gets textclass number from name
|
|
|
|
pair<bool, textclass_type> const
|
|
|
|
LyXTextClassList::NumberOfClass(string const & textclass) const
|
|
|
|
{
|
|
|
|
ClassList::const_iterator cit =
|
2002-07-21 21:21:06 +00:00
|
|
|
find_if(classlist_.begin(), classlist_.end(),
|
2001-12-28 13:26:54 +00:00
|
|
|
lyx::compare_memfun(&LyXTextClass::name, textclass));
|
2002-07-21 21:21:06 +00:00
|
|
|
return cit != classlist_.end() ?
|
|
|
|
make_pair(true, textclass_type(cit - classlist_.begin())) :
|
2001-12-28 13:26:54 +00:00
|
|
|
make_pair(false, textclass_type(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Gets a textclass structure from number
|
|
|
|
LyXTextClass const &
|
2002-03-02 16:39:54 +00:00
|
|
|
LyXTextClassList::operator[](textclass_type textclass) const
|
2001-12-28 13:26:54 +00:00
|
|
|
{
|
2002-07-21 21:21:06 +00:00
|
|
|
classlist_[textclass].load();
|
|
|
|
if (textclass < classlist_.size())
|
|
|
|
return classlist_[textclass];
|
2001-12-28 13:26:54 +00:00
|
|
|
else
|
2002-07-21 21:21:06 +00:00
|
|
|
return classlist_[0];
|
2001-12-28 13:26:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// used when sorting the textclass list.
|
2003-05-03 19:24:36 +00:00
|
|
|
class less_textclass_avail_desc {
|
2001-12-28 13:26:54 +00:00
|
|
|
public:
|
|
|
|
int operator()(LyXTextClass const & tc1, LyXTextClass const & tc2) {
|
2003-05-03 19:24:36 +00:00
|
|
|
// Ordering criteria:
|
|
|
|
// 1. Availability of text class
|
|
|
|
// 2. Description (lexicographic)
|
|
|
|
|
|
|
|
return (tc1.isTeXClassAvailable() && !tc2.isTeXClassAvailable()) ||
|
|
|
|
(tc1.isTeXClassAvailable() == tc2.isTeXClassAvailable() &&
|
|
|
|
tc1.description() < tc2.description());
|
2001-12-28 13:26:54 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Reads LyX textclass definitions according to textclass config file
|
2003-03-29 10:29:38 +00:00
|
|
|
bool LyXTextClassList::Read()
|
2001-12-28 13:26:54 +00:00
|
|
|
{
|
|
|
|
LyXLex lex(0, 0);
|
|
|
|
string real_file = LibFileSearch("", "textclass.lst");
|
|
|
|
lyxerr[Debug::TCLASS] << "Reading textclasses from `"
|
2002-11-27 10:30:28 +00:00
|
|
|
<< real_file << '\'' << endl;
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
if (real_file.empty()) {
|
|
|
|
lyxerr << "LyXTextClassList::Read: unable to find "
|
|
|
|
"textclass file `" << MakeDisplayPath(real_file, 1000)
|
|
|
|
<< "'. Exiting." << endl;
|
|
|
|
return false;
|
|
|
|
// This causes LyX to end... Not a desirable behaviour. Lgb
|
|
|
|
// What do you propose? That the user gets a file dialog
|
|
|
|
// and is allowed to hunt for the file? (Asger)
|
|
|
|
// more that we have a layout for minimal.cls statically
|
|
|
|
// compiled in... (Lgb)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!lex.setFile(real_file)) {
|
|
|
|
lyxerr << "LyXTextClassList::Read: "
|
|
|
|
"lyxlex was not able to set file: "
|
|
|
|
<< real_file << endl;
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
if (!lex.isOK()) {
|
|
|
|
lyxerr << "LyXTextClassList::Read: unable to open "
|
|
|
|
"textclass file `" << MakeDisplayPath(real_file, 1000)
|
|
|
|
<< "'\nCheck your installation. LyX can't continue."
|
|
|
|
<< endl;
|
2002-03-21 17:27:08 +00:00
|
|
|
return false;
|
2001-12-28 13:26:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool finished = false;
|
|
|
|
// Parse config-file
|
|
|
|
lyxerr[Debug::TCLASS] << "Starting parsing of textclass.lst" << endl;
|
|
|
|
while (lex.isOK() && !finished) {
|
|
|
|
lyxerr[Debug::TCLASS] << "\tline by line" << endl;
|
|
|
|
switch (lex.lex()) {
|
|
|
|
case LyXLex::LEX_FEOF:
|
|
|
|
finished = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
string const fname = lex.getString();
|
|
|
|
lyxerr[Debug::TCLASS] << "Fname: " << fname << endl;
|
|
|
|
if (lex.next()) {
|
|
|
|
string const clname = lex.getString();
|
2002-05-29 13:28:11 +00:00
|
|
|
lyxerr[Debug::TCLASS] << "Clname: " << clname << endl;
|
2001-12-28 13:26:54 +00:00
|
|
|
if (lex.next()) {
|
2002-05-29 13:28:11 +00:00
|
|
|
string const desc = lex.getString();
|
|
|
|
lyxerr[Debug::TCLASS] << "Desc: " << desc << endl;
|
2003-05-03 19:24:36 +00:00
|
|
|
if (lex.next()) {
|
|
|
|
bool avail = lex.getBool();
|
|
|
|
lyxerr[Debug::TCLASS] << "Avail: " << avail << endl;
|
|
|
|
// This code is run when we have
|
|
|
|
// fname, clname, desc, and avail
|
|
|
|
LyXTextClass tmpl(fname, clname, desc, avail);
|
|
|
|
if (lyxerr.debugging(Debug::TCLASS)) {
|
|
|
|
tmpl.load();
|
|
|
|
}
|
|
|
|
classlist_.push_back(tmpl);
|
2002-05-29 13:28:11 +00:00
|
|
|
}
|
2001-12-28 13:26:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lyxerr[Debug::TCLASS] << "End of parsing of textclass.lst" << endl;
|
|
|
|
|
2002-07-21 21:21:06 +00:00
|
|
|
if (classlist_.empty()) {
|
2001-12-28 13:26:54 +00:00
|
|
|
lyxerr << "LyXTextClassList::Read: no textclasses found!"
|
|
|
|
<< endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Ok everything loaded ok, now sort the list.
|
2003-05-03 19:24:36 +00:00
|
|
|
sort(classlist_.begin(), classlist_.end(), less_textclass_avail_desc());
|
2001-12-28 13:26:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Global variable: textclass table.
|
|
|
|
LyXTextClassList textclasslist;
|
|
|
|
|
|
|
|
// Reads the style files
|
|
|
|
void LyXSetStyle()
|
|
|
|
{
|
|
|
|
lyxerr[Debug::TCLASS] << "LyXSetStyle: parsing configuration...\n";
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
if (!textclasslist.Read()) {
|
|
|
|
lyxerr[Debug::TCLASS] << "LyXSetStyle: an error occured "
|
|
|
|
"during parsing.\n Exiting." << endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
lyxerr[Debug::TCLASS] << "LyXSetStyle: configuration parsed." << endl;
|
|
|
|
}
|