mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
db8c16d554
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23289 a592a061-630c-0410-9148-cb99ea01b6c8
97 lines
2.0 KiB
C++
97 lines
2.0 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetSpace.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
|
|
* \author Jürgen Spitzmüller
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSET_SPACE_H
|
|
#define INSET_SPACE_H
|
|
|
|
|
|
#include "Inset.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class LaTeXFeatures;
|
|
|
|
/// Used to insert different kinds of spaces
|
|
class InsetSpace : public Inset {
|
|
public:
|
|
|
|
/// The different kinds of spaces we support
|
|
enum Kind {
|
|
/// Normal space ('\ ')
|
|
NORMAL,
|
|
/// Protected (no break) space ('~')
|
|
PROTECTED,
|
|
/// Thin space ('\,')
|
|
THIN,
|
|
/// \quad (1em)
|
|
QUAD,
|
|
/// \qquad (2em)
|
|
QQUAD,
|
|
/// \enspace (0.5em unbreakable)
|
|
ENSPACE,
|
|
/// \enspace (0.5em breakable)
|
|
ENSKIP,
|
|
/// Negative thin space ('\negthinspace')
|
|
NEGTHIN
|
|
};
|
|
|
|
///
|
|
InsetSpace();
|
|
|
|
///
|
|
explicit
|
|
InsetSpace(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);
|
|
///
|
|
int latex(odocstream &, OutputParams const &) const;
|
|
///
|
|
int plaintext(odocstream &, OutputParams const &) const;
|
|
///
|
|
int docbook(odocstream &, OutputParams const &) const;
|
|
/// the string that is passed to the TOC
|
|
void textString(odocstream &) const;
|
|
///
|
|
InsetCode lyxCode() const { return SPACE_CODE; }
|
|
/// We don't need \begin_inset and \end_inset
|
|
bool directWrite() const { return true; }
|
|
|
|
// should this inset be handled like a normal charater
|
|
bool isChar() const { return true; }
|
|
/// is this equivalent to a letter?
|
|
bool isLetter() const { return false; }
|
|
/// is this equivalent to a space (which is BTW different from
|
|
// a line separator)?
|
|
bool isSpace() const { return true; }
|
|
private:
|
|
virtual Inset * clone() const;
|
|
|
|
/// And which kind is this?
|
|
Kind kind_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // INSET_SPACE_H
|