2003-05-22 10:40:57 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
|
* \file InsetSpace.h
|
2003-05-22 10:40:57 +00:00
|
|
|
|
* 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<EFBFBD>nnes
|
2003-09-07 01:45:40 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Spitzm<EFBFBD>ller
|
2003-05-22 10:40:57 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-05-22 10:40:57 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef INSET_SPACE_H
|
|
|
|
|
#define INSET_SPACE_H
|
|
|
|
|
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
|
#include "Inset.h"
|
2003-05-22 10:40:57 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2005-01-19 15:03:31 +00:00
|
|
|
|
class LaTeXFeatures;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
|
|
|
|
|
/// Used to insert different kinds of spaces
|
2007-04-29 13:39:47 +00:00
|
|
|
|
class InsetSpace : public Inset {
|
2003-05-22 10:40:57 +00:00
|
|
|
|
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
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
///
|
2003-05-28 06:47:15 +00:00
|
|
|
|
InsetSpace();
|
|
|
|
|
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
|
|
|
|
explicit
|
|
|
|
|
InsetSpace(Kind k);
|
|
|
|
|
///
|
|
|
|
|
Kind kind() const;
|
|
|
|
|
///
|
2007-09-21 20:39:47 +00:00
|
|
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
|
|
|
|
///
|
2003-05-30 06:48:24 +00:00
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
|
void write(std::ostream &) const;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
/// Will not be used when lyxf3
|
2008-02-27 20:43:16 +00:00
|
|
|
|
void read(Lexer & lex);
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
|
int latex(odocstream &, OutputParams const &) const;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
|
int plaintext(odocstream &, OutputParams const &) const;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
|
int docbook(odocstream &, OutputParams const &) const;
|
2005-11-25 14:40:34 +00:00
|
|
|
|
/// the string that is passed to the TOC
|
2008-02-27 20:43:16 +00:00
|
|
|
|
void textString(odocstream &) const;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
2007-10-13 09:04:52 +00:00
|
|
|
|
InsetCode lyxCode() const { return SPACE_CODE; }
|
2003-05-22 10:40:57 +00:00
|
|
|
|
/// We don't need \begin_inset and \end_inset
|
|
|
|
|
bool directWrite() const { return true; }
|
|
|
|
|
|
|
|
|
|
// should this inset be handled like a normal charater
|
2008-02-27 20:43:16 +00:00
|
|
|
|
bool isChar() const { return true; }
|
2003-05-22 10:40:57 +00:00
|
|
|
|
/// is this equivalent to a letter?
|
2008-02-27 20:43:16 +00:00
|
|
|
|
bool isLetter() const { return false; }
|
2003-05-22 10:40:57 +00:00
|
|
|
|
/// is this equivalent to a space (which is BTW different from
|
|
|
|
|
// a line separator)?
|
2008-02-27 20:43:16 +00:00
|
|
|
|
bool isSpace() const { return true; }
|
2003-05-22 10:40:57 +00:00
|
|
|
|
private:
|
2008-02-29 20:16:04 +00:00
|
|
|
|
virtual Inset * clone() const { return new InsetSpace(*this); }
|
2004-11-23 23:04:52 +00:00
|
|
|
|
|
2003-05-22 10:40:57 +00:00
|
|
|
|
/// And which kind is this?
|
|
|
|
|
Kind kind_;
|
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2003-05-22 10:40:57 +00:00
|
|
|
|
#endif // INSET_SPACE_H
|