]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetHyperlink.h
Fixup 572b06d6: reduce cache size for breakString
[lyx.git] / src / insets / InsetHyperlink.h
index acecd16d2a0595a71e4a0546996005cb4ed528b7..974f2f431af5bfd4727e8501fd1c0911f4835593 100644 (file)
@@ -24,62 +24,65 @@ class InsetHyperlink : public InsetCommand
 public:
        ///
        InsetHyperlink(Buffer * buf, InsetCommandParams const &);
-                               
+
        /// \name Public functions inherited from Inset class
        //@{
        ///
-       InsetCode lyxCode() const { return HYPERLINK_CODE; }
+       InsetCode lyxCode() const override { return HYPERLINK_CODE; }
+       ///
+       bool hasSettings() const override { return true; }
        ///
-       bool hasSettings() const { return true; }
+       bool isInToc() const override { return true; }
        ///
-       bool forceLTR() const { return true; }
+       void toString(odocstream &) const override;
        ///
-       bool isInToc() const { return true; }
+       void forOutliner(docstring &, size_t const, bool const) const override;
        ///
-       void tocString(odocstream &) const;
+       docstring toolTip(BufferView const & bv, int x, int y) const override;
        ///
-       docstring toolTip(BufferView const & bv, int x, int y) const;
+       std::string contextMenuName() const override;
        ///
-       docstring contextMenu(BufferView const &, int, int) const;
+       void validate(LaTeXFeatures &) const override;
        ///
-       void validate(LaTeXFeatures &) const;
+       void latex(otexstream &, OutputParams const &) const override;
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const override;
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       void docbook(XMLStream &, OutputParams const &) const override;
        ///
-       int docbook(odocstream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, OutputParams const &) const override;
        ///
-       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       std::pair<int, int> isWords() const override;
        //@}
 
        /// \name Static public methods obligated for InsetCommand derived classes
        //@{
        ///
-       static bool isCompatibleCommand(std::string const & s) 
+       static bool isCompatibleCommand(std::string const & s)
                { return s == "href"; }
        ///
        static std::string defaultCommand() { return "href"; }
        ///
        static ParamInfo const & findInfo(std::string const &);
        //@}
-       
+
 private:
        /// \name Private functions inherited from Inset class
        //@{
        ///
-       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       void doDispatch(Cursor & cur, FuncRequest & cmd) override;
        ///
        bool getStatus(Cursor & cur, FuncRequest const & cmd,
-               FuncStatus & flag) const;
+               FuncStatus & flag) const override;
        ///
-       Inset * clone() const { return new InsetHyperlink(*this); }
+       Inset * clone() const override { return new InsetHyperlink(*this); }
        //@}
 
        /// \name Private functions inherited from InsetCommand class
        //@{
        ///
-       docstring screenLabel() const;
+       docstring screenLabel() const override;
        //@}
 
        ///