1999-09-27 18:44:28 +00:00
|
|
|
|
/* This file is part of
|
|
|
|
|
* ======================================================
|
|
|
|
|
*
|
|
|
|
|
* LyX, The Document Processor
|
|
|
|
|
*
|
1999-10-02 16:21:10 +00:00
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
2000-03-16 04:29:22 +00:00
|
|
|
|
* Copyright 1995-2000 The LyX Team.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*
|
1999-11-15 10:58:38 +00:00
|
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma implementation
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "insetquotes.h"
|
1999-10-02 16:21:10 +00:00
|
|
|
|
#include "support/lyxlib.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
|
#include "debug.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "lyxfont.h"
|
|
|
|
|
#include "lyxrc.h"
|
|
|
|
|
#include "buffer.h"
|
|
|
|
|
#include "LaTeXFeatures.h"
|
1999-10-02 16:21:10 +00:00
|
|
|
|
#include "support/lstrings.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
|
#include "Painter.h"
|
2000-04-04 00:19:15 +00:00
|
|
|
|
#include "font.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
|
using std::ostream;
|
2000-03-28 02:18:55 +00:00
|
|
|
|
using std::endl;
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Quotes. Used for the various quotes. German, English, French,
|
|
|
|
|
// Danish, Polish, all either double or single.
|
|
|
|
|
|
|
|
|
|
// codes used to read/write quotes to LyX files
|
1999-10-02 16:21:10 +00:00
|
|
|
|
static char const * const language_char = "esgpfa";
|
|
|
|
|
static char const * const side_char = "lr" ;
|
1999-11-15 10:58:38 +00:00
|
|
|
|
static char const * const times_char = "sd";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// List of known quote chars
|
1999-10-02 16:21:10 +00:00
|
|
|
|
static char const * const quote_char = ",'`<>";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 10:58:38 +00:00
|
|
|
|
// Index of chars used for the quote. Index is [side, language]
|
1999-12-07 00:44:53 +00:00
|
|
|
|
int quote_index[2][6] = {
|
|
|
|
|
{ 2, 1, 0, 0, 3, 4 }, // "'',,<>"
|
|
|
|
|
{ 1, 1, 2, 1, 4, 3 } }; // "`'`'><"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Corresponding LaTeX code, for double and single quotes.
|
1999-11-15 10:58:38 +00:00
|
|
|
|
static char const * const latex_quote_t1[2][5] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ { "\\quotesinglbase{}", "'", "`",
|
|
|
|
|
"\\guilsinglleft{}", "\\guilsinglright{}" },
|
|
|
|
|
{ ",,", "''", "``", "<<", ">>" } };
|
|
|
|
|
|
1999-11-15 10:58:38 +00:00
|
|
|
|
static char const * const latex_quote_ot1[2][5] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ { "\\quotesinglbase{}", "'", "`",
|
|
|
|
|
"\\guilsinglleft{}", "\\guilsinglright{}" },
|
|
|
|
|
{ "\\quotedblbase{}", "''", "``",
|
|
|
|
|
"\\guillemotleft{}", "\\guillemotright{}" } };
|
|
|
|
|
|
1999-11-15 10:58:38 +00:00
|
|
|
|
static char const * const latex_quote_babel[2][5] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ { "\\glq{}", "'", "`", "\\flq{}", "\\frq{}" },
|
|
|
|
|
{ "\\glqq{}", "''", "``", "\\flqq{}", "\\frqq{}" } };
|
|
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
InsetQuotes::InsetQuotes(string const & str)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
|
ParseString(str);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
InsetQuotes::InsetQuotes(InsetQuotes::quote_language l,
|
|
|
|
|
InsetQuotes::quote_side s,
|
|
|
|
|
InsetQuotes::quote_times t)
|
|
|
|
|
: language(l), side(s), times(t)
|
2000-07-15 23:51:46 +00:00
|
|
|
|
{}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
InsetQuotes::InsetQuotes(char c, BufferParams const & params)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
: language(params.quotes_language), times(params.quotes_times)
|
|
|
|
|
{
|
|
|
|
|
// Decide whether left or right
|
|
|
|
|
switch(c) {
|
|
|
|
|
case ' ': case '(': case '{': case '[': case '-': case ':':
|
1999-11-15 10:58:38 +00:00
|
|
|
|
case LyXParagraph::META_HFILL:
|
|
|
|
|
case LyXParagraph::META_NEWLINE:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
side = InsetQuotes::LeftQ; // left quote
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
side = InsetQuotes::RightQ; // right quote
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
void InsetQuotes::ParseString(string const & s)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
string str(s);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
if (str.length() != 3) {
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr << "ERROR (InsetQuotes::InsetQuotes):"
|
|
|
|
|
" bad string length." << endl;
|
1999-10-02 16:21:10 +00:00
|
|
|
|
str = "eld";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
|
int i;
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
for (i = 0; i < 6; ++i) {
|
1999-10-02 16:21:10 +00:00
|
|
|
|
if (str[0] == language_char[i]) {
|
1999-12-13 00:05:34 +00:00
|
|
|
|
language = InsetQuotes::quote_language(i);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
if (i >= 6) {
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr << "ERROR (InsetQuotes::InsetQuotes):"
|
|
|
|
|
" bad language specification." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
language = InsetQuotes::EnglishQ;
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
for (i = 0; i < 2; ++i) {
|
1999-10-02 16:21:10 +00:00
|
|
|
|
if (str[1] == side_char[i]) {
|
1999-12-13 00:05:34 +00:00
|
|
|
|
side = InsetQuotes::quote_side(i);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
if (i >= 2) {
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr << "ERROR (InsetQuotes::InsetQuotes):"
|
|
|
|
|
" bad side specification." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
side = InsetQuotes::LeftQ;
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
for (i = 0; i < 2; ++i) {
|
1999-10-02 16:21:10 +00:00
|
|
|
|
if (str[2] == times_char[i]) {
|
1999-12-13 00:05:34 +00:00
|
|
|
|
times = InsetQuotes::quote_times(i);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
if (i >= 2) {
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr << "ERROR (InsetQuotes::InsetQuotes):"
|
|
|
|
|
" bad times specification." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
times = InsetQuotes::DoubleQ;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
string const InsetQuotes::DispString() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string disp;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
disp += quote_char[quote_index[side][language]];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (times == InsetQuotes::DoubleQ)
|
|
|
|
|
disp += disp;
|
|
|
|
|
|
2000-03-12 10:35:05 +00:00
|
|
|
|
if (lyxrc.font_norm == "iso8859-1")
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (disp == "<<")
|
|
|
|
|
disp = '<EFBFBD>';
|
|
|
|
|
else if (disp == ">>")
|
|
|
|
|
disp = '<EFBFBD>';
|
|
|
|
|
|
|
|
|
|
return disp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
|
int InsetQuotes::ascent(BufferView *, LyXFont const & font) const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
2000-04-04 00:19:15 +00:00
|
|
|
|
return lyxfont::maxAscent(font);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
|
int InsetQuotes::descent(BufferView *, LyXFont const & font) const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
2000-04-04 00:19:15 +00:00
|
|
|
|
return lyxfont::maxDescent(font);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
|
int InsetQuotes::width(BufferView *, LyXFont const & font) const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
|
|
|
|
string text = DispString();
|
|
|
|
|
int w = 0;
|
|
|
|
|
|
|
|
|
|
for (string::size_type i = 0; i < text.length(); ++i) {
|
|
|
|
|
if (text[i] == ' ')
|
2000-04-04 00:19:15 +00:00
|
|
|
|
w += lyxfont::width('i', font);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
else if (i == 0 || text[i] != text[i-1])
|
2000-04-04 00:19:15 +00:00
|
|
|
|
w += lyxfont::width(text[i], font);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
else
|
2000-04-04 00:19:15 +00:00
|
|
|
|
w += lyxfont::width(',', font);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return w;
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
LyXFont const InsetQuotes::ConvertFont(LyXFont const & f) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-07-15 23:51:46 +00:00
|
|
|
|
LyXFont font(f);
|
|
|
|
|
// quotes-insets cannot be latex of any kind
|
1999-09-27 18:44:28 +00:00
|
|
|
|
font.setLatex(LyXFont::OFF);
|
|
|
|
|
return font;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-06-21 15:07:57 +00:00
|
|
|
|
void InsetQuotes::draw(BufferView * bv, LyXFont const & font,
|
2000-06-23 15:02:46 +00:00
|
|
|
|
int baseline, float & x, bool) const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
|
|
|
|
string text = DispString();
|
|
|
|
|
|
2000-06-21 15:07:57 +00:00
|
|
|
|
bv->painter().text(int(x), baseline, text, font);
|
2000-07-05 14:57:48 +00:00
|
|
|
|
x += width(bv, font);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
void InsetQuotes::Write(Buffer const *, ostream & os) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string text;
|
|
|
|
|
text += language_char[language];
|
|
|
|
|
text += side_char[side];
|
|
|
|
|
text += times_char[times];
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "Quotes " << text;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
void InsetQuotes::Read(Buffer const *, LyXLex & lex)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
lex.nextToken();
|
|
|
|
|
ParseString(lex.GetString());
|
2000-07-15 23:51:46 +00:00
|
|
|
|
lex.next();
|
|
|
|
|
string tmp(lex.GetString());
|
|
|
|
|
if (tmp != "\\end_inset")
|
|
|
|
|
lyxerr << "LyX Warning: Missing \\end_inset "
|
|
|
|
|
"in InsetQuotes::Read." << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-27 15:23:24 +00:00
|
|
|
|
int InsetQuotes::Latex(Buffer const * buf, ostream & os,
|
2000-07-15 23:51:46 +00:00
|
|
|
|
bool /*fragile*/, bool) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-10-10 12:36:36 +00:00
|
|
|
|
string doclang = buf->GetLanguage()->lang();
|
2000-03-02 02:19:43 +00:00
|
|
|
|
int quoteind = quote_index[side][language];
|
|
|
|
|
string qstr;
|
|
|
|
|
|
2000-03-12 10:35:05 +00:00
|
|
|
|
if (lyxrc.fontenc == "T1") {
|
2000-03-02 02:19:43 +00:00
|
|
|
|
qstr = latex_quote_t1[times][quoteind];
|
2000-07-15 23:51:46 +00:00
|
|
|
|
} else if (doclang == "default") {
|
2000-03-02 02:19:43 +00:00
|
|
|
|
qstr = latex_quote_ot1[times][quoteind];
|
2000-07-15 23:51:46 +00:00
|
|
|
|
} else if (language == InsetQuotes::FrenchQ
|
2000-03-02 02:19:43 +00:00
|
|
|
|
&& times == InsetQuotes::DoubleQ
|
|
|
|
|
&& doclang == "frenchb") {
|
|
|
|
|
if (side == InsetQuotes::LeftQ)
|
|
|
|
|
qstr = "\\og{}";
|
|
|
|
|
else
|
|
|
|
|
qstr = " \\fg{}";
|
2000-06-12 11:27:15 +00:00
|
|
|
|
} else
|
2000-03-02 02:19:43 +00:00
|
|
|
|
qstr = latex_quote_babel[times][quoteind];
|
|
|
|
|
|
|
|
|
|
// Always guard against unfortunate ligatures (!` ?`)
|
|
|
|
|
qstr.insert(0, "{}");
|
|
|
|
|
|
|
|
|
|
os << qstr;
|
|
|
|
|
return 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-26 15:25:14 +00:00
|
|
|
|
int InsetQuotes::Ascii(Buffer const *, ostream & os, int) const
|
2000-04-24 20:58:23 +00:00
|
|
|
|
{
|
|
|
|
|
os << "\"";
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
int InsetQuotes::Linuxdoc(Buffer const *, ostream & os) const
|
2000-03-06 02:42:40 +00:00
|
|
|
|
{
|
|
|
|
|
os << "\"";
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
int InsetQuotes::DocBook(Buffer const *, ostream & os) const
|
2000-03-06 02:42:40 +00:00
|
|
|
|
{
|
|
|
|
|
if(times == InsetQuotes::DoubleQ) {
|
|
|
|
|
if (side == InsetQuotes::LeftQ)
|
|
|
|
|
os << "“";
|
|
|
|
|
else
|
|
|
|
|
os << "”";
|
|
|
|
|
} else {
|
|
|
|
|
if (side == InsetQuotes::LeftQ)
|
|
|
|
|
os << "‘";
|
|
|
|
|
else
|
|
|
|
|
os << "’";
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
void InsetQuotes::Validate(LaTeXFeatures & features) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
char type = quote_char[quote_index[side][language]];
|
|
|
|
|
|
2000-10-10 12:36:36 +00:00
|
|
|
|
if (features.bufferParams().language->lang() == "default"
|
2000-03-12 10:35:05 +00:00
|
|
|
|
&& lyxrc.fontenc != "T1") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (times == InsetQuotes::SingleQ)
|
|
|
|
|
switch (type) {
|
|
|
|
|
case ',': features.quotesinglbase = true; break;
|
|
|
|
|
case '<': features.guilsinglleft = true; break;
|
|
|
|
|
case '>': features.guilsinglright = true; break;
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
switch (type) {
|
|
|
|
|
case ',': features.quotedblbase = true; break;
|
|
|
|
|
case '<': features.guillemotleft = true; break;
|
|
|
|
|
case '>': features.guillemotright = true; break;
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-22 16:19:48 +00:00
|
|
|
|
|
2000-10-10 11:50:43 +00:00
|
|
|
|
Inset * InsetQuotes::Clone(Buffer const &) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
return new InsetQuotes(language, side, times);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inset::Code InsetQuotes::LyxCode() const
|
|
|
|
|
{
|
|
|
|
|
return Inset::QUOTE_CODE;
|
|
|
|
|
}
|