mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
44cd0fc9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
63 lines
909 B
C++
63 lines
909 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file Sectioning.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef SECTIONING_H
|
|
#define SECTIONING_H
|
|
|
|
#include "lyxfont.h"
|
|
|
|
#include <map>
|
|
|
|
|
|
///
|
|
class Section {
|
|
public:
|
|
///
|
|
std::string const & name() const;
|
|
///
|
|
int level() const;
|
|
///
|
|
std::string const & indent() const;
|
|
///
|
|
std::string const & beforeskip() const;
|
|
///
|
|
std::string const & afterskip() const;
|
|
///
|
|
LyXFont const & style() const;
|
|
///
|
|
bool display() const;
|
|
private:
|
|
///
|
|
std::string name_;
|
|
///
|
|
int level_;
|
|
///
|
|
std::string indent_;
|
|
///
|
|
std::string beforeskip_;
|
|
///
|
|
std::string afterskip_;
|
|
///
|
|
LyXFont style_;
|
|
};
|
|
|
|
|
|
///
|
|
class SectioningList {
|
|
private:
|
|
///
|
|
typedef std::map<std::string, Section> List_;
|
|
///
|
|
List_ list_;
|
|
};
|
|
|
|
#endif
|