lyx_mirror/src/Sectioning.C

66 lines
877 B
C++
Raw Normal View History

/**
* \file Sectioning.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bj<EFBFBD>nnes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "Sectioning.h"
namespace lyx {
using std::string;
string const & Section::name() const
{
return name_;
}
int Section::level() const
{
return level_;
}
string const & Section::indent() const
{
return indent_;
}
string const & Section::beforeskip() const
{
return beforeskip_;
}
string const & Section::afterskip() const
{
return afterskip_;
}
LyXFont const & Section::style() const
{
return style_;
}
bool Section::display() const
{
// If afterskip is negative it is a display section.
if (!afterskip_.empty() && afterskip_[0] == '-')
return false;
return true;
}
} // namespace lyx