lyx_mirror/src/insets/render_graphic.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

56 lines
1.2 KiB
C++

// -*- C++ -*-
/**
* \file render_graphic.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS.
*/
#ifndef RENDER_GRAPHIC_H
#define RENDER_GRAPHIC_H
#include "render_base.h"
#include "graphics/GraphicsLoader.h"
#include "graphics/GraphicsParams.h"
namespace lyx {
class RenderGraphic : public RenderBase
{
public:
RenderGraphic(InsetBase const *);
RenderGraphic(RenderGraphic const &, InsetBase const *);
std::auto_ptr<RenderBase> clone(InsetBase const *) const;
/// compute the size of the object returned in dim
bool metrics(MetricsInfo & mi, Dimension & dim) const;
/// draw inset
void draw(PainterInfo & pi, int x, int y) const;
/// Refresh the info about which file to display and how to display it.
void update(graphics::Params const & params);
/// equivalent to dynamic_cast
virtual RenderGraphic * asGraphic() { return this; }
private:
/// Not implemented.
RenderGraphic & operator=(RenderGraphic const &);
/// The stored data.
graphics::Loader loader_;
graphics::Params params_;
};
} // namespace lyx
#endif // NOT RENDER_GRAPHIC_H