mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 16:18:22 +00:00
bb344452c8
Use the function support:truncateWithEllipsis() to shorten a docstring with ... at the end. Actually we use U+2026 HORIZONTAL ELLIPSIS instead of "..." when automatically shortening strings. This is to be consistent with Qt's own truncation and is much nicer on the screen. This includes the bugs #9575 and #9572 regarding broken text elision in the outliner. Known issues (non-regressions): * TocBackend::updateItem() should be rewritten to update all TOCs. (#8386) * "..." should be replaced with … everywhere else on the interface (including translation strings). * We should prefer to rely on QFontMetrics::elidedText() to truncate strings with an ellipsis whenever possible, or an equivalent for the buffer view dependent on the font metrics. See the warning in src/support/lstrings.h.
124 lines
2.3 KiB
C++
124 lines
2.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetQuotes.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Jean-Marc Lasgouttes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSET_QUOTES_H
|
|
#define INSET_QUOTES_H
|
|
|
|
#include "Inset.h"
|
|
|
|
#include "support/docstring.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
/** Quotes.
|
|
Used for the various quotes. German, English, French, all either
|
|
double or single **/
|
|
class InsetQuotes : public Inset
|
|
{
|
|
public:
|
|
///
|
|
enum QuoteLanguage {
|
|
///
|
|
EnglishQuotes,
|
|
///
|
|
SwedishQuotes,
|
|
///
|
|
GermanQuotes,
|
|
///
|
|
PolishQuotes,
|
|
///
|
|
FrenchQuotes,
|
|
///
|
|
DanishQuotes
|
|
};
|
|
///
|
|
enum QuoteSide {
|
|
///
|
|
LeftQuote,
|
|
///
|
|
RightQuote
|
|
};
|
|
///
|
|
enum QuoteTimes {
|
|
///
|
|
SingleQuotes,
|
|
///
|
|
DoubleQuotes
|
|
};
|
|
|
|
/** The constructor works like this:
|
|
\begin{itemize}
|
|
\item fls <- french single quote left
|
|
\item grd <- german double quote right
|
|
\item etc.
|
|
\end{itemize}
|
|
*/
|
|
explicit InsetQuotes(Buffer * buf, std::string const & str = "eld");
|
|
/// Direct access to inner/outer quotation marks
|
|
InsetQuotes(Buffer * buf, char_type c, QuoteTimes t);
|
|
///
|
|
docstring layoutName() const;
|
|
///
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
void write(std::ostream &) const;
|
|
///
|
|
void read(Lexer & lex);
|
|
///
|
|
void latex(otexstream &, OutputParams const &) const;
|
|
///
|
|
int plaintext(odocstringstream & ods, OutputParams const & op,
|
|
size_t max_length = INT_MAX) const;
|
|
///
|
|
int docbook(odocstream &, OutputParams const &) const;
|
|
///
|
|
docstring xhtml(XHTMLStream &, OutputParams const &) const;
|
|
|
|
///
|
|
void toString(odocstream &) const;
|
|
///
|
|
void forOutliner(docstring &, size_t const maxlen, bool const) const;
|
|
|
|
///
|
|
void validate(LaTeXFeatures &) const;
|
|
///
|
|
InsetCode lyxCode() const { return QUOTE_CODE; }
|
|
/// should this inset be handled like a normal character
|
|
bool isChar() const { return true; }
|
|
|
|
private:
|
|
///
|
|
Inset * clone() const { return new InsetQuotes(*this); }
|
|
|
|
/// Decide whether we need left or right quotation marks
|
|
void setSide(char_type c);
|
|
///
|
|
void parseString(std::string const &);
|
|
///
|
|
docstring displayString() const;
|
|
///
|
|
docstring getQuoteEntity() const;
|
|
|
|
///
|
|
QuoteLanguage language_;
|
|
///
|
|
QuoteSide side_;
|
|
///
|
|
QuoteTimes times_;
|
|
};
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|