mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
ff9b02aaba
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3136 a592a061-630c-0410-9148-cb99ea01b6c8
88 lines
1.5 KiB
C++
88 lines
1.5 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef VSPACE_H
|
|
#define VSPACE_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "lyxgluelength.h"
|
|
|
|
#include "LString.h"
|
|
|
|
class BufferParams;
|
|
class BufferView;
|
|
|
|
|
|
///
|
|
class VSpace {
|
|
public:
|
|
/// The different kinds of spaces.
|
|
enum vspace_kind {
|
|
///
|
|
NONE,
|
|
///
|
|
DEFSKIP,
|
|
///
|
|
SMALLSKIP,
|
|
///
|
|
MEDSKIP,
|
|
///
|
|
BIGSKIP,
|
|
///
|
|
VFILL,
|
|
///
|
|
LENGTH
|
|
};
|
|
/// Constructor
|
|
VSpace();
|
|
/// Constructor
|
|
explicit VSpace(vspace_kind k);
|
|
/// Constructor
|
|
explicit VSpace(LyXLength const & l);
|
|
/// Constructor
|
|
explicit VSpace(LyXGlueLength const & l);
|
|
|
|
/// Constructor for reading from a .lyx file
|
|
explicit VSpace(string const & data);
|
|
|
|
/// access functions
|
|
vspace_kind kind() const;
|
|
///
|
|
LyXGlueLength length() const;
|
|
|
|
// a flag that switches between \vspace and \vspace*
|
|
bool keep() const;
|
|
///
|
|
void setKeep(bool val);
|
|
///
|
|
bool operator==(VSpace const &) const;
|
|
|
|
// conversion
|
|
/// how it goes into the LyX file
|
|
string const asLyXCommand() const;
|
|
///
|
|
string const asLatexCommand(BufferParams const & params) const;
|
|
///
|
|
int inPixels(BufferView * bv) const;
|
|
private:
|
|
/// This VSpace kind
|
|
vspace_kind kind_;
|
|
///
|
|
LyXGlueLength len_;
|
|
///
|
|
bool keep_;
|
|
};
|
|
|
|
#endif
|