mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-15 23:49:37 +00:00
963a0aa466
Move the enum definition RowFlags in its own include file, to avoid loading Inset.h. Document it more thoroughly. Rename RowAfter to AlwaysBreakAfter. Add CanBreakInside (rows that can be themselves broken). This allow to differentiate elements before bodyPos() and allows to remove a parameter to shortenIfNeeded(). Make the Inset::rowFlags() method return int instead of RowFlags, as should be done for all the bitwise flags. Remove the hand-made bitwise operators. Set R::E::row_flags when creating elements. * INSET elements use the inset's rowFLags(); * virtual element forbid breaking before them, and inherit the *After flags from the previous element of the row; * STRING elements usr CanBreakInside, except before bodyPos. More stuff may be added later.
58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file RowFlags.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Jean-Marc Lasgouttes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef ROWFLAGS_H
|
|
#define ROWFLAGS_H
|
|
|
|
// Do not include anything here
|
|
|
|
namespace lyx {
|
|
|
|
/* The list of possible flags, that can be combined.
|
|
* Some flags that should logically be here (e.g.,
|
|
* CanBreakBefore), do not exist. This is because the need has not
|
|
* been identitfied yet.
|
|
*
|
|
* Priorities when before/after disagree:
|
|
* AlwaysBreak* > NoBreak* > Break* or CanBreak*.
|
|
*/
|
|
enum RowFlags {
|
|
// Do not break before or after this element, except if really
|
|
// needed (between NoBreak* and CanBreak*).
|
|
Inline = 0,
|
|
// break row before this element if the row is not empty
|
|
BreakBefore = 1 << 0,
|
|
// Avoid breaking row before this element
|
|
NoBreakBefore = 1 << 1,
|
|
// force new (maybe empty) row after this element
|
|
AlwaysBreakAfter = 1 << 2,
|
|
// break row after this element if there are more elements
|
|
BreakAfter = 1 << 3,
|
|
// break row whenever needed after this element
|
|
CanBreakAfter = 1 << 4,
|
|
// Avoid breaking row after this element
|
|
NoBreakAfter = 1 << 5,
|
|
// The contents of the row may be broken in two (e.g. string)
|
|
CanBreakInside = 1 << 6,
|
|
// specify an alignment (left, right) for a display element
|
|
// (default is center)
|
|
AlignLeft = 1 << 7,
|
|
AlignRight = 1 << 8,
|
|
// A display element breaks row at both ends
|
|
Display = BreakBefore | BreakAfter,
|
|
// Flags that concern breaking after element
|
|
AfterFlags = AlwaysBreakAfter | BreakAfter | CanBreakAfter | NoBreakAfter
|
|
};
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|