]> git.lyx.org Git - lyx.git/blob - src/insets/InsetHyperlink.h
Amend 207eaeee9071cb
[lyx.git] / src / insets / InsetHyperlink.h
1 // -*- C++ -*-
2 /**
3  * \file InsetHyperlink.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author José Matos
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef INSET_HYPERLINK_H
13 #define INSET_HYPERLINK_H
14
15 #include "InsetCommand.h"
16
17
18 namespace lyx {
19
20 /** The hyperlink inset
21  */
22 class InsetHyperlink : public InsetCommand
23 {
24 public:
25         ///
26         InsetHyperlink(Buffer * buf, InsetCommandParams const &);
27
28         /// \name Public functions inherited from Inset class
29         //@{
30         ///
31         InsetCode lyxCode() const override { return HYPERLINK_CODE; }
32         ///
33         bool hasSettings() const override { return true; }
34         ///
35         bool isInToc() const override { return true; }
36         ///
37         bool findUsesToString() const override { return true; }
38         ///
39         void toString(odocstream &) const override;
40         ///
41         void forOutliner(docstring &, size_t const, bool const) const override;
42         ///
43         docstring toolTip(BufferView const & bv, int x, int y) const override;
44         ///
45         std::string contextMenuName() const override;
46         ///
47         void validate(LaTeXFeatures &) const override;
48         ///
49         void latex(otexstream &, OutputParams const &) const override;
50         ///
51         int plaintext(odocstringstream & ods, OutputParams const & op,
52                       size_t max_length = INT_MAX) const override;
53         ///
54         void docbook(XMLStream &, OutputParams const &) const override;
55         ///
56         docstring xhtml(XMLStream &, OutputParams const &) const override;
57         ///
58         std::pair<int, int> isWords() const override;
59         //@}
60
61         /// \name Static public methods obligated for InsetCommand derived classes
62         //@{
63         ///
64         static bool isCompatibleCommand(std::string const & s)
65                 { return s == "href"; }
66         ///
67         static std::string defaultCommand() { return "href"; }
68         ///
69         static ParamInfo const & findInfo(std::string const &);
70         //@}
71
72 private:
73         /// \name Private functions inherited from Inset class
74         //@{
75         ///
76         void doDispatch(Cursor & cur, FuncRequest & cmd) override;
77         ///
78         bool getStatus(Cursor & cur, FuncRequest const & cmd,
79                 FuncStatus & flag) const override;
80         ///
81         Inset * clone() const override { return new InsetHyperlink(*this); }
82         //@}
83
84         /// \name Private functions inherited from InsetCommand class
85         //@{
86         ///
87         docstring screenLabel() const override;
88         //@}
89
90         ///
91         void viewTarget() const;
92 };
93
94
95 } // namespace lyx
96
97 #endif // INSET_HYPERLINK_H