2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetquotes.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* \author Jean-Marc Lasgouttes
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-25 14:26:13 +00:00
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "insetquotes.h"
|
2001-12-13 11:35:25 +00:00
|
|
|
|
|
|
|
|
|
#include "buffer.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
#include "bufferparams.h"
|
2001-12-13 11:35:25 +00:00
|
|
|
|
#include "debug.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
|
#include "language.h"
|
2003-05-22 22:44:30 +00:00
|
|
|
|
#include "LaTeXFeatures.h"
|
|
|
|
|
#include "lyxlex.h"
|
2001-12-13 11:35:25 +00:00
|
|
|
|
#include "lyxrc.h"
|
2003-05-30 06:48:24 +00:00
|
|
|
|
#include "metricsinfo.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
|
#include "outputparams.h"
|
2003-09-06 17:23:08 +00:00
|
|
|
|
#include "paragraph.h"
|
2003-08-26 16:36:53 +00:00
|
|
|
|
#include "paragraph_funcs.h"
|
|
|
|
|
|
2006-10-07 16:15:06 +00:00
|
|
|
|
#include "frontends/FontMetrics.h"
|
2003-05-22 22:44:30 +00:00
|
|
|
|
#include "frontends/Painter.h"
|
2003-08-26 16:36:53 +00:00
|
|
|
|
|
2003-05-19 17:03:12 +00:00
|
|
|
|
#include "support/lstrings.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
using support::prefixIs;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
|
using std::endl;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
2003-07-25 17:11:25 +00:00
|
|
|
|
using std::auto_ptr;
|
2003-09-05 09:01:27 +00:00
|
|
|
|
using std::ostream;
|
|
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2003-07-28 15:45:41 +00:00
|
|
|
|
/* codes used to read/write quotes to LyX files
|
|
|
|
|
* e ``english''
|
|
|
|
|
* s ''spanish''
|
|
|
|
|
* g ,,german``
|
|
|
|
|
* p ,,polish''
|
|
|
|
|
* f <<french>>
|
|
|
|
|
* a >>danish<<
|
|
|
|
|
*/
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
char const * const language_char = "esgpfa";
|
|
|
|
|
char const * const side_char = "lr" ;
|
|
|
|
|
char const * const times_char = "sd";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// List of known quote chars
|
2001-03-20 01:22:46 +00:00
|
|
|
|
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] = {
|
2002-03-21 17:09:55 +00:00
|
|
|
|
{ 2, 1, 0, 0, 3, 4 }, // "'',,<>"
|
1999-12-07 00:44:53 +00:00
|
|
|
|
{ 1, 1, 2, 1, 4, 3 } }; // "`'`'><"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Corresponding LaTeX code, for double and single quotes.
|
2002-03-21 17:09:55 +00:00
|
|
|
|
char const * const latex_quote_t1[2][5] =
|
2002-10-15 10:39:57 +00:00
|
|
|
|
{ { "\\quotesinglbase ", "'", "`",
|
2002-03-21 17:09:55 +00:00
|
|
|
|
"\\guilsinglleft{}", "\\guilsinglright{}" },
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ ",,", "''", "``", "<<", ">>" } };
|
|
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
|
char const * const latex_quote_ot1[2][5] =
|
2002-10-15 10:39:57 +00:00
|
|
|
|
{ { "\\quotesinglbase ", "'", "`",
|
2002-03-21 17:09:55 +00:00
|
|
|
|
"\\guilsinglleft{}", "\\guilsinglright{}" },
|
2002-10-15 10:39:57 +00:00
|
|
|
|
{ "\\quotedblbase ", "''", "``",
|
1999-09-27 18:44:28 +00:00
|
|
|
|
"\\guillemotleft{}", "\\guillemotright{}" } };
|
|
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
|
char const * const latex_quote_babel[2][5] =
|
2002-10-15 10:39:57 +00:00
|
|
|
|
{ { "\\glq ", "'", "`", "\\flq{}", "\\frq{}" },
|
|
|
|
|
{ "\\glqq ", "''", "``", "\\flqq{}", "\\frqq{}" } };
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
} // namespace anon
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
InsetQuotes::InsetQuotes(string const & str)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-06-28 10:25:20 +00:00
|
|
|
|
parseString(str);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
2003-05-19 17:03:12 +00:00
|
|
|
|
InsetQuotes::InsetQuotes(quote_language l, quote_side s, quote_times t)
|
2001-07-20 09:38:19 +00:00
|
|
|
|
: language_(l), side_(s), times_(t)
|
2000-07-15 23:51:46 +00:00
|
|
|
|
{}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
InsetQuotes::InsetQuotes(char_type c, BufferParams const & params)
|
2001-07-20 09:38:19 +00:00
|
|
|
|
: language_(params.quotes_language), times_(params.quotes_times)
|
2004-02-20 10:32:44 +00:00
|
|
|
|
{
|
|
|
|
|
getPosition(c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
InsetQuotes::InsetQuotes(char_type c, quote_language l, quote_times t)
|
2004-02-20 10:32:44 +00:00
|
|
|
|
: language_(l), times_(t)
|
|
|
|
|
{
|
|
|
|
|
getPosition(c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
void InsetQuotes::getPosition(char_type c)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2002-03-21 17:09:55 +00:00
|
|
|
|
// Decide whether left or right
|
2000-11-04 10:00:12 +00:00
|
|
|
|
switch (c) {
|
2004-03-16 10:48:10 +00:00
|
|
|
|
case ' ': case '(': case '[':
|
2002-03-21 17:09:55 +00:00
|
|
|
|
side_ = LeftQ; // left quote
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2001-07-20 09:38:19 +00:00
|
|
|
|
side_ = RightQ; // right quote
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-28 10:25: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;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
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]) {
|
2001-07-20 09:38:19 +00:00
|
|
|
|
language_ = 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;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
language_ = EnglishQ;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
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]) {
|
2001-07-20 09:38:19 +00:00
|
|
|
|
side_ = 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;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
side_ = LeftQ;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
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]) {
|
2001-07-20 09:38:19 +00:00
|
|
|
|
times_ = 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;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
times_ = DoubleQ;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
2001-07-23 09:11:14 +00:00
|
|
|
|
string const InsetQuotes::dispString(Language const * loclang) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2002-03-21 17:09:55 +00:00
|
|
|
|
string disp;
|
2001-07-20 09:38:19 +00:00
|
|
|
|
disp += quote_char[quote_index[side_][language_]];
|
|
|
|
|
if (times_ == DoubleQ)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
disp += disp;
|
|
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
|
if (lyxrc.font_norm_type == LyXRC::ISO_8859_1
|
|
|
|
|
|| lyxrc.font_norm_type == LyXRC::ISO_8859_9
|
|
|
|
|
|| lyxrc.font_norm_type == LyXRC::ISO_8859_15) {
|
2001-10-05 16:25:34 +00:00
|
|
|
|
if (disp == "<<")
|
1999-09-27 18:44:28 +00:00
|
|
|
|
disp = '<EFBFBD>';
|
|
|
|
|
else if (disp == ">>")
|
|
|
|
|
disp = '<EFBFBD>';
|
2001-07-27 16:07:33 +00:00
|
|
|
|
}
|
2001-07-20 09:38:19 +00:00
|
|
|
|
|
|
|
|
|
// in french, spaces are added inside double quotes
|
2001-07-23 09:11:14 +00:00
|
|
|
|
if (times_ == DoubleQ && prefixIs(loclang->code(), "fr")) {
|
2001-07-20 09:38:19 +00:00
|
|
|
|
if (side_ == LeftQ)
|
2002-11-27 10:30:28 +00:00
|
|
|
|
disp += ' ';
|
2001-07-20 09:38:19 +00:00
|
|
|
|
else
|
2002-12-02 09:59:43 +00:00
|
|
|
|
disp.insert(string::size_type(0), 1, ' ');
|
2001-07-20 09:38:19 +00:00
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
|
|
|
|
return disp;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void InsetQuotes::metrics(MetricsInfo & mi, Dimension & dim) const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
2003-06-02 10:03:27 +00:00
|
|
|
|
LyXFont & font = mi.base.font;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
frontend::FontMetrics const & fm =
|
2006-10-11 17:24:46 +00:00
|
|
|
|
theFontMetrics(font);
|
2006-10-07 16:15:06 +00:00
|
|
|
|
dim.asc = fm.maxAscent();
|
|
|
|
|
dim.des = fm.maxDescent();
|
2003-05-27 13:55:03 +00:00
|
|
|
|
dim.wid = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-07-23 09:11:14 +00:00
|
|
|
|
string const text = dispString(font.language());
|
2000-02-10 17:53:36 +00:00
|
|
|
|
for (string::size_type i = 0; i < text.length(); ++i) {
|
|
|
|
|
if (text[i] == ' ')
|
2006-10-07 16:15:06 +00:00
|
|
|
|
dim.wid += fm.width('i');
|
2002-08-20 17:18:21 +00:00
|
|
|
|
else if (i == 0 || text[i] != text[i - 1])
|
2006-10-07 16:15:06 +00:00
|
|
|
|
dim.wid += fm.width(text[i]);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
else
|
2006-10-07 16:15:06 +00:00
|
|
|
|
dim.wid += fm.width(',');
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
2003-07-18 07:47:07 +00:00
|
|
|
|
dim_ = dim;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2001-08-03 18:28:11 +00:00
|
|
|
|
#if 0
|
2001-06-28 10:25:20 +00:00
|
|
|
|
LyXFont const InsetQuotes::convertFont(LyXFont const & f) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-08-03 18:28:11 +00:00
|
|
|
|
#if 1
|
|
|
|
|
return f;
|
|
|
|
|
#else
|
2000-07-15 23:51:46 +00:00
|
|
|
|
LyXFont font(f);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return font;
|
2001-08-03 18:28:11 +00:00
|
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2001-08-03 18:28:11 +00:00
|
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2003-05-30 06:48:24 +00:00
|
|
|
|
void InsetQuotes::draw(PainterInfo & pi, int x, int y) const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
2003-05-30 06:48:24 +00:00
|
|
|
|
string const text = dispString(pi.base.font.language());
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
2002-06-12 15:56:51 +00:00
|
|
|
|
if (text.length() == 2 && text[0] == text[1]) {
|
2003-05-30 06:48:24 +00:00
|
|
|
|
pi.pain.text(x, y, text[0], pi.base.font);
|
2006-10-11 17:24:46 +00:00
|
|
|
|
int const t = theFontMetrics(pi.base.font)
|
2006-10-07 16:15:06 +00:00
|
|
|
|
.width(',');
|
2003-05-30 06:48:24 +00:00
|
|
|
|
pi.pain.text(x + t, y, text[0], pi.base.font);
|
|
|
|
|
} else {
|
2006-08-13 22:54:59 +00:00
|
|
|
|
docstring dtext(text.begin(), text.end());
|
|
|
|
|
pi.pain.text(x, y, dtext, pi.base.font);
|
2003-05-30 06:48:24 +00:00
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +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;
|
2001-07-20 09:38:19 +00:00
|
|
|
|
text += language_char[language_];
|
|
|
|
|
text += side_char[side_];
|
2002-03-21 17:09:55 +00:00
|
|
|
|
text += times_char[times_];
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "Quotes " << text;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void InsetQuotes::read(Buffer const &, LyXLex & lex)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2004-10-05 12:56:22 +00:00
|
|
|
|
lex.next();
|
2001-08-06 19:13:25 +00:00
|
|
|
|
parseString(lex.getString());
|
2000-07-15 23:51:46 +00:00
|
|
|
|
lex.next();
|
2001-08-06 19:13:25 +00:00
|
|
|
|
if (lex.getString() != "\\end_inset") {
|
2001-07-23 09:11:14 +00:00
|
|
|
|
lex.printError("Missing \\end_inset at this point");
|
2001-08-06 19:13:25 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-19 16:51:30 +00:00
|
|
|
|
int InsetQuotes::latex(Buffer const &, odocstream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const & runparams) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-07-23 09:11:14 +00:00
|
|
|
|
const int quoteind = quote_index[side_][language_];
|
2000-03-02 02:19:43 +00:00
|
|
|
|
string qstr;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-07-23 10:04:17 +00:00
|
|
|
|
if (language_ == FrenchQ && times_ == DoubleQ
|
2005-09-09 11:04:53 +00:00
|
|
|
|
&& prefixIs(runparams.local_font->language()->code(), "fr")) {
|
2002-03-21 17:09:55 +00:00
|
|
|
|
if (side_ == LeftQ)
|
2001-07-23 10:04:17 +00:00
|
|
|
|
qstr = "\\og "; //the spaces are important here
|
2002-03-21 17:09:55 +00:00
|
|
|
|
else
|
2001-07-23 10:04:17 +00:00
|
|
|
|
qstr = " \\fg{}"; //and here
|
2001-07-20 09:38:19 +00:00
|
|
|
|
} else if (lyxrc.fontenc == "T1") {
|
|
|
|
|
qstr = latex_quote_t1[times_][quoteind];
|
2001-02-25 10:22:54 +00:00
|
|
|
|
#ifdef DO_USE_DEFAULT_LANGUAGE
|
2000-07-15 23:51:46 +00:00
|
|
|
|
} else if (doclang == "default") {
|
2001-02-25 10:22:54 +00:00
|
|
|
|
#else
|
2003-05-22 22:44:30 +00:00
|
|
|
|
} else if (!runparams.use_babel) {
|
2001-02-25 10:22:54 +00:00
|
|
|
|
#endif
|
2001-07-20 09:38:19 +00:00
|
|
|
|
qstr = latex_quote_ot1[times_][quoteind];
|
2002-03-21 17:09:55 +00:00
|
|
|
|
} else {
|
2001-07-20 09:38:19 +00:00
|
|
|
|
qstr = latex_quote_babel[times_][quoteind];
|
|
|
|
|
}
|
2000-03-02 02:19:43 +00:00
|
|
|
|
|
|
|
|
|
// Always guard against unfortunate ligatures (!` ?`)
|
2001-04-18 13:37:27 +00:00
|
|
|
|
if (prefixIs(qstr, "`"))
|
|
|
|
|
qstr.insert(0, "{}");
|
2000-03-02 02:19:43 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
os << from_ascii(qstr);
|
2000-03-02 02:19:43 +00:00
|
|
|
|
return 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-19 16:51:30 +00:00
|
|
|
|
int InsetQuotes::plaintext(Buffer const &, odocstream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const
|
2000-04-24 20:58:23 +00:00
|
|
|
|
{
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << '"';
|
2000-04-24 20:58:23 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-10-19 21:00:33 +00:00
|
|
|
|
int InsetQuotes::docbook(Buffer const &, odocstream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const
|
2000-03-06 02:42:40 +00:00
|
|
|
|
{
|
2001-07-20 09:38:19 +00:00
|
|
|
|
if (times_ == DoubleQ) {
|
|
|
|
|
if (side_ == LeftQ)
|
2000-03-06 02:42:40 +00:00
|
|
|
|
os << "“";
|
|
|
|
|
else
|
|
|
|
|
os << "”";
|
|
|
|
|
} else {
|
2001-07-20 09:38:19 +00:00
|
|
|
|
if (side_ == LeftQ)
|
2000-03-06 02:42:40 +00:00
|
|
|
|
os << "‘";
|
|
|
|
|
else
|
|
|
|
|
os << "’";
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2006-10-19 16:51:30 +00:00
|
|
|
|
int InsetQuotes::textString(Buffer const & buf, odocstream & os,
|
2005-11-25 14:40:34 +00:00
|
|
|
|
OutputParams const & op) const
|
|
|
|
|
{
|
|
|
|
|
return plaintext(buf, os, op);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
|
void InsetQuotes::validate(LaTeXFeatures & features) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2003-05-23 11:18:43 +00:00
|
|
|
|
bool const use_babel = features.useBabel();
|
2001-07-20 09:38:19 +00:00
|
|
|
|
char type = quote_char[quote_index[side_][language_]];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-07-23 09:11:14 +00:00
|
|
|
|
#ifdef DO_USE_DEFAULT_LANGUAGE
|
2002-03-21 17:09:55 +00:00
|
|
|
|
if (features.bufferParams().language->lang() == "default"
|
2001-07-23 09:11:14 +00:00
|
|
|
|
#else
|
|
|
|
|
if (!use_babel
|
|
|
|
|
#endif
|
2000-03-12 10:35:05 +00:00
|
|
|
|
&& lyxrc.fontenc != "T1") {
|
2002-03-21 17:09:55 +00:00
|
|
|
|
if (times_ == SingleQ)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
switch (type) {
|
2003-05-26 09:13:55 +00:00
|
|
|
|
case ',': features.require("quotesinglbase"); break;
|
2001-11-19 15:34:11 +00:00
|
|
|
|
case '<': features.require("guilsinglleft"); break;
|
|
|
|
|
case '>': features.require("guilsinglright"); break;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
default: break;
|
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
else
|
1999-09-27 18:44:28 +00:00
|
|
|
|
switch (type) {
|
2001-11-19 15:34:11 +00:00
|
|
|
|
case ',': features.require("quotedblbase"); break;
|
|
|
|
|
case '<': features.require("guillemotleft"); break;
|
|
|
|
|
case '>': features.require("guillemotright"); break;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-22 16:19:48 +00:00
|
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
|
auto_ptr<InsetBase> InsetQuotes::doClone() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2003-07-25 17:11:25 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new InsetQuotes(language_, side_, times_));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-11-25 19:13:07 +00:00
|
|
|
|
InsetBase::Code InsetQuotes::lyxCode() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2004-11-25 19:13:07 +00:00
|
|
|
|
return InsetBase::QUOTE_CODE;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|