2000-07-17 18:27:53 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 2000-2001 The LyX Team.
|
2000-07-17 18:27:53 +00:00
|
|
|
*
|
|
|
|
*======================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef INSETSECTION_H
|
|
|
|
#define INSETSECTION_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "LString.h"
|
|
|
|
|
|
|
|
#include "insettext.h"
|
|
|
|
|
|
|
|
/** A colapsable text inset
|
|
|
|
*/
|
|
|
|
class InsetSection : public InsetText {
|
|
|
|
public:
|
|
|
|
protected:
|
|
|
|
private:
|
|
|
|
string type_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|