]> git.lyx.org Git - lyx.git/blob - src/insets/insetlabel.C
Part of IU.
[lyx.git] / src / insets / insetlabel.C
1 /**
2  * \file insetlabel.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "insetlabel.h"
14
15 #include "BufferView.h"
16 #include "dispatchresult.h"
17 #include "funcrequest.h"
18
19 #include "frontends/LyXView.h"
20
21 #include "support/lstrings.h"
22
23 #include "support/std_ostream.h"
24
25 using lyx::support::escape;
26
27 using std::string;
28 using std::ostream;
29
30
31 InsetLabel::InsetLabel(InsetCommandParams const & p)
32         : InsetCommand(p, "label")
33 {}
34
35
36 std::auto_ptr<InsetBase> InsetLabel::clone() const
37 {
38         return std::auto_ptr<InsetBase>(new InsetLabel(params()));
39 }
40
41
42 void InsetLabel::getLabelList(Buffer const &, std::vector<string> & list) const
43 {
44         list.push_back(getContents());
45 }
46
47
48 string const InsetLabel::getScreenLabel(Buffer const &) const
49 {
50         return getContents();
51 }
52
53
54 DispatchResult
55 InsetLabel::priv_dispatch(LCursor & cur, FuncRequest const & cmd)
56 {
57         switch (cmd.action) {
58
59         case LFUN_INSET_MODIFY: {
60                 InsetCommandParams p;
61                 InsetCommandMailer::string2params("label", cmd.argument, p);
62                 if (p.getCmdName().empty())
63                         return DispatchResult(false);
64                 bool clean = true;
65                 if (p.getContents() != params().getContents())
66                         clean = cur.bv().ChangeRefsIfUnique(params().getContents(),
67                                                        p.getContents());
68                 setParams(p);
69                 cur.bv().update();
70                 return DispatchResult(true, true);
71         }
72
73         default:
74                 return InsetCommand::priv_dispatch(cur, cmd);
75         }
76 }
77
78
79 int InsetLabel::latex(Buffer const &, ostream & os,
80                       OutputParams const &) const
81 {
82         os << escape(getCommand());
83         return 0;
84 }
85
86
87 int InsetLabel::plaintext(Buffer const &, ostream & os,
88                       OutputParams const &) const
89 {
90         os << '<' << getContents()  << '>';
91         return 0;
92 }
93
94
95 int InsetLabel::linuxdoc(Buffer const &, ostream & os,
96                          OutputParams const &) const
97 {
98         os << "<label id=\"" << getContents() << "\" >";
99         return 0;
100 }
101
102
103 int InsetLabel::docbook(Buffer const &, ostream & os,
104                         OutputParams const &) const
105 {
106         os << "<anchor id=\"" << getContents() << "\">";
107         return 0;
108 }