X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FRenderButton.h;h=480effd16ace2ae931325c8a7bcc79ba202952da;hb=b9116e8b81f55ee795ea444ee02ff921bf82606a;hp=59d09bb7118f61cd16decc213a74f02760c1b8ee;hpb=00e305c9d9bd8b0ff54b6c58adb6192d5934ed60;p=lyx.git diff --git a/src/insets/RenderButton.h b/src/insets/RenderButton.h index 59d09bb711..480effd16a 100644 --- a/src/insets/RenderButton.h +++ b/src/insets/RenderButton.h @@ -25,15 +25,15 @@ class RenderButton : public RenderBase public: RenderButton(); - std::auto_ptr clone(InsetBase const *) const; + RenderBase * clone(Inset const *) const; /// compute the size of the object returned in dim - virtual bool metrics(MetricsInfo & mi, Dimension & dim) const; + virtual void metrics(MetricsInfo & mi, Dimension & dim) const; /// draw inset and update (xo, yo)-cache virtual void draw(PainterInfo & pi, int x, int y) const; /// Provide the text for the button - void update(docstring const &, bool editable); + void update(docstring const &, bool editable, bool inherit_font); /// The "sensitive area" box, i.e., the button area Box box() const { return button_box_; } @@ -47,6 +47,7 @@ private: /// The stored data. docstring text_; bool editable_; + bool inherit_font_; Box button_box_; };