2000-07-17 18:27:53 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetsection.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2000-07-17 18:27:53 +00:00
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS
|
2000-07-17 18:27:53 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef INSETSECTION_H
|
|
|
|
|
#define INSETSECTION_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "LString.h"
|
|
|
|
|
|
|
|
|
|
#include "insettext.h"
|
|
|
|
|
|
|
|
|
|
/** A colapsable text inset
|
|
|
|
|
*/
|
|
|
|
|
class InsetSection : public InsetText {
|
|
|
|
|
public:
|
|
|
|
|
protected:
|
|
|
|
|
private:
|
|
|
|
|
string type_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|