mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
a040c0bc6f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@314 a592a061-630c-0410-9148-cb99ea01b6c8
40 lines
709 B
C++
40 lines
709 B
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-1999 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef LYXROW_H
|
|
#define LYXROW_H
|
|
|
|
#include "lyxparagraph.h"
|
|
|
|
///
|
|
struct Row {
|
|
///
|
|
LyXParagraph * par;
|
|
///
|
|
LyXParagraph::size_type pos;
|
|
///
|
|
unsigned short baseline;
|
|
/** what is missing to a full row can be negative.
|
|
Needed for hfills, flushright, block etc. */
|
|
int fill;
|
|
///
|
|
unsigned short height;
|
|
///
|
|
unsigned short ascent_of_text;
|
|
|
|
///
|
|
Row * next;
|
|
///
|
|
Row * previous;
|
|
};
|
|
|
|
#endif
|