mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
ed858d73e5
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19920 a592a061-630c-0410-9148-cb99ea01b6c8
68 lines
1.6 KiB
C++
68 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"
|
|
|
|
#include <memory>
|
|
|
|
|
|
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 bool 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;
|
|
/// 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
|