mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
453f294074
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7019 a592a061-630c-0410-9148-cb99ea01b6c8
37 lines
676 B
C++
37 lines
676 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file insetlist.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 INSETLIST_H
|
|
#define INSETLIST_H
|
|
|
|
|
|
#include "insetcollapsable.h"
|
|
|
|
/** The list inset
|
|
|
|
*/
|
|
class InsetList : public InsetCollapsable {
|
|
public:
|
|
///
|
|
InsetList();
|
|
///
|
|
void write(Buffer const * buf, std::ostream & os) const;
|
|
///
|
|
Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
|
|
///
|
|
int latex(Buffer const *, std::ostream &,
|
|
LatexRunParams const &) const;
|
|
///
|
|
string const editMessage() const;
|
|
};
|
|
|
|
#endif
|