mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
770aa71839
This shouldn't be necessary, but sometimes it is. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31014 a592a061-630c-0410-9148-cb99ea01b6c8
58 lines
1.2 KiB
C++
58 lines
1.2 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file RenderGraphic.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 RENDERGRAPHIC_H
|
|
#define RENDERGRAPHIC_H
|
|
|
|
#include "RenderBase.h"
|
|
|
|
#include "graphics/GraphicsLoader.h"
|
|
#include "graphics/GraphicsParams.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
class RenderGraphic : public RenderBase
|
|
{
|
|
public:
|
|
RenderGraphic(Inset const *);
|
|
RenderGraphic(RenderGraphic const &, Inset const *);
|
|
RenderBase * clone(Inset const *) const;
|
|
|
|
/// compute the size of the object returned in dim
|
|
void 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);
|
|
/// Reloads the image if necessary
|
|
void reload() const;
|
|
|
|
/// 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 RENDERGRAPHIC_H
|