lyx_mirror/src/insets/RenderBase.h
André Pönitz d971afe2aa remove spurious include
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21751 a592a061-630c-0410-9148-cb99ea01b6c8
2007-11-23 22:41:07 +00:00

69 lines
1.6 KiB
C++

// -*- C++ -*-
/**
* \file RenderBase.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 RENDERBASE_H
#define RENDERBASE_H
#include "Dimension.h"
namespace lyx {
class Inset;
class MetricsInfo;
class PainterInfo;
class RenderButton;
class RenderGraphic;
class RenderPreview;
class RenderMonitoredPreview;
class RenderBase {
public:
virtual ~RenderBase() {}
virtual RenderBase * clone(Inset const *) const = 0;
/// compute the size of the object returned in dim.
/// \retval true if the metrics has changed.
virtual void metrics(MetricsInfo & mi, Dimension & dim) const = 0;
/// draw inset and update (xo, yo)-cache
virtual void draw(PainterInfo & pi, int x, int y) const = 0;
///
Dimension const & dimension() const { return dim_; };
/// render state, exact meaning of state is render-specific
void setRenderState(int state) { state_ = state; }
/// get render state
int renderState() const { return state_; }
/// equivalent to dynamic_cast
virtual RenderButton * asButton() { return 0; }
virtual RenderGraphic * asGraphic() { return 0; }
virtual RenderPreview * asPreview() { return 0; }
virtual RenderMonitoredPreview * asMonitoredPreview() { return 0; }
protected:
RenderBase() {}
RenderBase(RenderBase const &) {}
RenderBase & operator=(RenderBase const &) { return *this; }
/// render state. currently, render_button uses this to store mouse_hover_
int state_;
/// Cached
mutable Dimension dim_;
};
} // namespace lyx
#endif // NOT RENDERBASE_H