2003-10-10 21:08:55 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file render_button.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_BUTTON_H
|
|
|
|
#define RENDER_BUTTON_H
|
|
|
|
|
|
|
|
#include "render_base.h"
|
|
|
|
#include "box.h"
|
2006-10-11 19:40:50 +00:00
|
|
|
#include "support/docstring.h"
|
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
|
|
|
class RenderButton : public RenderBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RenderButton();
|
|
|
|
|
2004-04-13 17:25:23 +00:00
|
|
|
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
|
|
|
virtual bool metrics(MetricsInfo & mi, Dimension & dim) const;
|
2003-10-10 21:08:55 +00:00
|
|
|
/// draw inset and update (xo, yo)-cache
|
|
|
|
virtual void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
|
|
|
|
/// Provide the text for the button
|
2006-10-21 00:16:43 +00:00
|
|
|
void update(docstring const &, bool editable);
|
2003-10-10 21:08:55 +00:00
|
|
|
|
|
|
|
/// The "sensitive area" box, i.e., the button area
|
|
|
|
Box box() const { return button_box_; }
|
|
|
|
///
|
|
|
|
void setBox(Box b) { button_box_ = b; }
|
|
|
|
|
2003-10-25 20:09:52 +00:00
|
|
|
/// equivalent to dynamic_cast
|
|
|
|
virtual RenderButton * asButton() { return this; }
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
private:
|
|
|
|
/// The stored data.
|
2006-10-21 00:16:43 +00:00
|
|
|
docstring text_;
|
2003-10-10 21:08:55 +00:00
|
|
|
bool editable_;
|
|
|
|
Box button_box_;
|
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
#endif // NOT RENDER_BUTTON_H
|