2003-05-22 10:40:57 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2003-06-28 01:23:11 +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
|
|
|
|
|
* \author Juergen Spitzmueller
|
|
|
|
|
*
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "inset.h"
|
2003-09-05 17:23:11 +00:00
|
|
|
|
#include "support/std_string.h"
|
2003-05-22 10:40:57 +00:00
|
|
|
|
|
|
|
|
|
struct LaTeXFeatures;
|
|
|
|
|
|
|
|
|
|
/// Used to insert different kinds of spaces
|
2003-07-25 21:20:24 +00:00
|
|
|
|
class InsetSpace : public InsetOld {
|
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;
|
|
|
|
|
///
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
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
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void write(Buffer const &, std::ostream &) const;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
/// Will not be used when lyxf3
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void read(Buffer const &, LyXLex & lex);
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
int latex(Buffer const &, std::ostream &,
|
2003-05-23 08:59:47 +00:00
|
|
|
|
LatexRunParams const &) const;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
int ascii(Buffer const &, std::ostream &, int linelen) const;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
int linuxdoc(Buffer const &, std::ostream &) const;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
int docbook(Buffer const &, std::ostream &, bool mixcont) const;
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
2003-07-25 17:11:25 +00:00
|
|
|
|
virtual std::auto_ptr<InsetBase> clone() const;
|
2003-05-26 09:13:55 +00:00
|
|
|
|
///
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld::Code lyxCode() const { return InsetOld::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
|
|
|
|
|
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 // INSET_SPACE_H
|