2003-10-10 21:08:55 +00:00
|
|
|
// -*- 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"
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
class RenderGraphic : public RenderBase
|
|
|
|
{
|
|
|
|
public:
|
2004-04-13 17:25:23 +00:00
|
|
|
RenderGraphic(InsetBase const *);
|
|
|
|
RenderGraphic(RenderGraphic const &, InsetBase const *);
|
|
|
|
std::auto_ptr<RenderBase> clone(InsetBase const *) const;
|
2003-10-10 21:08:55 +00:00
|
|
|
|
|
|
|
/// compute the size of the object returned in dim
|
2006-11-28 15:15:49 +00:00
|
|
|
bool metrics(MetricsInfo & mi, Dimension & dim) const;
|
2003-11-25 16:49:02 +00:00
|
|
|
/// draw inset
|
2003-10-10 21:08:55 +00:00
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
|
|
|
|
/// Refresh the info about which file to display and how to display it.
|
2006-10-21 00:16:43 +00:00
|
|
|
void update(graphics::Params const & params);
|
2003-10-10 21:08:55 +00:00
|
|
|
|
2003-10-25 20:09:52 +00:00
|
|
|
/// equivalent to dynamic_cast
|
|
|
|
virtual RenderGraphic * asGraphic() { return this; }
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
private:
|
|
|
|
/// Not implemented.
|
|
|
|
RenderGraphic & operator=(RenderGraphic const &);
|
|
|
|
|
|
|
|
/// The stored data.
|
2006-10-21 00:16:43 +00:00
|
|
|
graphics::Loader loader_;
|
|
|
|
graphics::Params params_;
|
2003-10-10 21:08:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
#endif // NOT RENDER_GRAPHIC_H
|