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.
106 lines
2.3 KiB
C++
106 lines
2.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetSpecialChar.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Asger Alstrup Nielsen
|
|
* \author Jean-Marc Lasgouttes
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSET_SPECIALCHAR_H
|
|
#define INSET_SPECIALCHAR_H
|
|
|
|
|
|
#include "Inset.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class LaTeXFeatures;
|
|
|
|
/// Used to insert special chars
|
|
class InsetSpecialChar : public Inset {
|
|
public:
|
|
|
|
/// The different kinds of special chars we support
|
|
enum Kind {
|
|
/// Optional hyphenation point (\-)
|
|
HYPHENATION,
|
|
/// Ligature break point (\textcompwordmark)
|
|
LIGATURE_BREAK,
|
|
/// ... (\ldots)
|
|
LDOTS,
|
|
/// End of sentence punctuation (\@)
|
|
END_OF_SENTENCE,
|
|
/// Menu separator
|
|
MENU_SEPARATOR,
|
|
/// breakable slash
|
|
SLASH,
|
|
/// protected dash
|
|
NOBREAKDASH,
|
|
/// LyX logo
|
|
PHRASE_LYX,
|
|
/// TeX logo
|
|
PHRASE_TEX,
|
|
/// LaTeX2e logo
|
|
PHRASE_LATEX2E,
|
|
/// LaTeX logo
|
|
PHRASE_LATEX
|
|
};
|
|
|
|
///
|
|
InsetSpecialChar() : Inset(0), kind_(HYPHENATION) {}
|
|
///
|
|
explicit InsetSpecialChar(Kind k);
|
|
///
|
|
Kind kind() const;
|
|
///
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
void write(std::ostream &) const;
|
|
/// Will not be used when lyxf3
|
|
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, bool const) const;
|
|
///
|
|
InsetCode lyxCode() const { return SPECIALCHAR_CODE; }
|
|
/// We don't need \begin_inset and \end_inset
|
|
bool directWrite() const { return true; }
|
|
///
|
|
void validate(LaTeXFeatures &) const;
|
|
|
|
/// should this inset be handled like a normal character?
|
|
bool isChar() const { return true; }
|
|
/// is this equivalent to a letter?
|
|
bool isLetter() const;
|
|
/// should we break lines after this inset?
|
|
bool isLineSeparator() const;
|
|
private:
|
|
Inset * clone() const { return new InsetSpecialChar(*this); }
|
|
|
|
/// And which kind is this?
|
|
Kind kind_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|