lyx_mirror/src/insets/inset.h

100 lines
1.9 KiB
C
Raw Normal View History

// -*- C++ -*-
/**
* \file inset.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Alejandro Aguilar Sierra
* \author J<EFBFBD>rgen Vigna
* \author Lars Gullik Bj<EFBFBD>nnes
* \author Matthias Ettrich
*
* Full author contact details are available in file CREDITS.
*/
#ifndef INSETOLD_H
#define INSETOLD_H
#include "insetbase.h"
#include "dimension.h"
class LColor_color;
class UpdatableInset;
/// Insets
class InsetOld : public InsetBase {
public:
///
enum {
///
TEXT_TO_INSET_OFFSET = 2
};
///
InsetOld();
///
InsetOld(InsetOld const & in);
///
int ascent() const;
///
int descent() const;
///
int width() const;
///
void setInsetName(std::string const & s) { name_ = s; }
///
std::string const & getInsetName() const { return name_; }
///
void setOwner(UpdatableInset * inset) { owner_ = inset; }
///
UpdatableInset * owner() const { return owner_; }
///
virtual void setBackgroundColor(LColor_color);
///
LColor_color backgroundColor() const;
///
int x() const { return xo_; }
///
int y() const { return yo_; }
/// returns the actual scroll-value
virtual int scroll(bool recursive = true) const;
///
bool forceDefaultParagraphs(InsetBase const * inset) const;
protected:
///
mutable int xo_;
///
mutable int yo_;
///
mutable int scx;
///
mutable Dimension dim_;
private:
///
UpdatableInset * owner_;
///
std::string name_;
/** We store the LColor::color value as an int to get LColor.h out
* of the header file.
*/
int background_color_;
};
/** \c InsetOld_code is a wrapper for InsetOld::Code.
* It can be forward-declared and passed as a function argument without
* having to expose inset.h.
*/
class InsetOld_code {
InsetOld::Code val_;
public:
InsetOld_code(InsetOld::Code val) : val_(val) {}
operator InsetOld::Code() const { return val_; }
};
#endif