lyx_mirror/src/insets/inset.h
Abdelrazak Younes e24bf64c68 * dimension.h: new operator!=() and operator=()
* InsetBase and all derivates:
  - metrics(MetricsInfo & mi, Dimension & dim) now returns a bool (true if metrics changed).

* MathData and all derivates:
  - metrics(MetricsInfo & mi, Dimension & dim): ditto.

* RenderBase and all derivates:
  - metrics(MetricsInfo & mi, Dimension & dim): ditto.

* lyxtext.h/text.C:
  - LyXText::metrics(MetricsInfo & mi, Dimension & dim): ditto.
  - LyXText::redoParagraph(): take into account potential change in inset metrics.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16091 a592a061-630c-0410-9148-cb99ea01b6c8
2006-11-28 15:15:49 +00:00

87 lines
1.6 KiB
C++

// -*- 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ürgen Vigna
* \author Lars Gullik Bjø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"
namespace lyx {
class LColor_color;
/// Insets
class InsetOld : public InsetBase {
public:
///
enum {
///
TEXT_TO_INSET_OFFSET = 4
};
///
InsetOld();
///
int ascent() const;
///
int descent() const;
///
int width() const;
///
void setInsetName(docstring const & s) { name_ = s; }
///
virtual docstring const & getInsetName() const { return name_; }
///
virtual void setBackgroundColor(LColor_color);
///
LColor_color backgroundColor() const;
/// set x/y drawing position cache
void setPosCache(PainterInfo const &, int, int) const;
protected:
///
InsetOld(InsetOld const & in);
private:
InsetOld & operator=(InsetOld const &) const;
///
docstring name_;
/** We store the LColor::color value as an int to get LColor.h out
* of the header file.
*/
int background_color_;
};
/** \c InsetBase_code is a wrapper for InsetBase::Code.
* It can be forward-declared and passed as a function argument without
* having to expose inset.h.
*/
class InsetBase_code {
InsetBase::Code val_;
public:
InsetBase_code(InsetBase::Code val) : val_(val) {}
operator InsetBase::Code() const { return val_; }
};
} // namespace lyx
#endif