mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
9468952780
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@857 a592a061-630c-0410-9148-cb99ea01b6c8
47 lines
920 B
C++
47 lines
920 B
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1998 The LyX Team.
|
|
*
|
|
*======================================================
|
|
*/
|
|
// The pristine updatable inset: Text
|
|
|
|
|
|
#ifndef INSETERT_H
|
|
#define INSETERT_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "insetcollapsable.h"
|
|
|
|
/** A colapsable text inset
|
|
|
|
To write full ert (including styles and other insets) in a given
|
|
space.
|
|
*/
|
|
class InsetERT : public InsetCollapsable {
|
|
public:
|
|
///
|
|
InsetERT();
|
|
///
|
|
void Write(Buffer const * buf, std::ostream & os) const;
|
|
///
|
|
Inset * Clone() const;
|
|
///
|
|
char const * EditMessage() const;
|
|
///
|
|
bool InsertInset(BufferView *, Inset *) { return false; }
|
|
///
|
|
void SetFont(BufferView *, LyXFont const &, bool toggleall = false);
|
|
///
|
|
void Edit(BufferView *, int, int, unsigned int);
|
|
};
|
|
|
|
#endif
|