]> git.lyx.org Git - lyx.git/blobdiff - src/insets/RenderButton.h
Do not forceLTR in InsetHyperlink (#12044)
[lyx.git] / src / insets / RenderButton.h
index 59d09bb7118f61cd16decc213a74f02760c1b8ee..69513f09adc38da022b6370b1e4233be0460e14f 100644 (file)
@@ -25,15 +25,16 @@ class RenderButton : public RenderBase
 public:
        RenderButton();
 
-       std::auto_ptr<RenderBase> clone(InsetBase const *) const;
+       RenderBase * clone(Inset const *) const override;
 
        /// compute the size of the object returned in dim
-       virtual bool metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const override;
        /// draw inset and update (xo, yo)-cache
-       virtual void draw(PainterInfo & pi, int x, int y) const;
+       void draw(PainterInfo & pi, int x, int y) const override;
 
        /// Provide the text for the button
-       void update(docstring const &, bool editable);
+       void update(docstring const &, bool editable,
+                   bool inherit, bool broken = false);
 
        /// The "sensitive area" box, i.e., the button area
        Box box() const { return button_box_; }
@@ -41,12 +42,14 @@ public:
        void setBox(Box b) { button_box_ = b; }
 
        /// equivalent to dynamic_cast
-       virtual RenderButton * asButton() { return this; }
+       RenderButton * asButton() override { return this; }
 
 private:
        /// The stored data.
        docstring text_;
        bool editable_;
+       bool broken_;
+       bool inherit_font_;
        Box button_box_;
 };