mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
48 lines
582 B
C++
48 lines
582 B
C++
|
#include <config.h>
|
||
|
|
||
|
#include "Sectioning.h"
|
||
|
|
||
|
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;
|
||
|
}
|