mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
cd424d7853
Create new files for each output format. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8046 a592a061-630c-0410-9148-cb99ea01b6c8
91 lines
2.1 KiB
C++
91 lines
2.1 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"
|
|
|
|
struct LaTeXFeatures;
|
|
|
|
/// Used to insert special chars
|
|
class InsetSpecialChar : public InsetOld {
|
|
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,
|
|
};
|
|
|
|
///
|
|
InsetSpecialChar() {}
|
|
///
|
|
explicit
|
|
InsetSpecialChar(Kind k);
|
|
///
|
|
Kind kind() const;
|
|
///
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
void write(Buffer const &, std::ostream &) const;
|
|
/// Will not be used when lyxf3
|
|
void read(Buffer const &, LyXLex & lex);
|
|
///
|
|
int latex(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int plaintext(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int linuxdoc(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int docbook(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
virtual std::auto_ptr<InsetBase> clone() const;
|
|
///
|
|
InsetOld::Code lyxCode() const { return InsetOld::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 charater
|
|
bool isChar() const;
|
|
/// is this equivalent to a letter?
|
|
bool isLetter() const;
|
|
/// is this equivalent to a space (which is BTW different from
|
|
// a line separator)?
|
|
bool isSpace() const;
|
|
// should we break lines after this inset?
|
|
bool isLineSeparator() const;
|
|
private:
|
|
/// And which kind is this?
|
|
Kind kind_;
|
|
};
|
|
|
|
#endif
|