]> git.lyx.org Git - lyx.git/blobdiff - src/insets/RenderButton.h
Fix copy of multi-cells in table (#12196)
[lyx.git] / src / insets / RenderButton.h
index 82a474e6c62e496d9499550d5f84766cb26a6ba2..480effd16ace2ae931325c8a7bcc79ba202952da 100644 (file)
@@ -25,15 +25,15 @@ class RenderButton : public RenderBase
 public:
        RenderButton();
 
-       std::auto_ptr<RenderBase> clone(Inset 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_;
 };