]> git.lyx.org Git - lyx.git/blob - src/insets/insetcommand.C
more dispatchresult changes
[lyx.git] / src / insets / insetcommand.C
1 /**
2  * \file insetcommand.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "insetcommand.h"
15
16 #include "BufferView.h"
17 #include "dispatchresult.h"
18 #include "funcrequest.h"
19 #include "lyxlex.h"
20 #include "metricsinfo.h"
21
22 #include "support/std_sstream.h"
23
24
25 using std::string;
26 using std::istringstream;
27 using std::ostream;
28 using std::ostringstream;
29
30
31 InsetCommand::InsetCommand(InsetCommandParams const & p)
32         : p_(p.getCmdName(), p.getContents(), p.getOptions()),
33           set_label_(false)
34 {}
35
36
37 void InsetCommand::metrics(MetricsInfo & mi, Dimension & dim) const
38 {
39         if (!set_label_) {
40                 set_label_ = true;
41                 button_.update(getScreenLabel(*mi.base.bv->buffer()),
42                                editable() != NOT_EDITABLE);
43         }
44         button_.metrics(mi, dim);
45         dim_ = dim;
46 }
47
48
49 void InsetCommand::draw(PainterInfo & pi, int x, int y) const
50 {
51         button_.draw(pi, x, y);
52 }
53
54
55 void InsetCommand::setParams(InsetCommandParams const & p)
56 {
57         p_ = p;
58         set_label_ = false;
59 }
60
61
62 int InsetCommand::latex(Buffer const &, ostream & os,
63                         LatexRunParams const &) const
64 {
65         os << getCommand();
66         return 0;
67 }
68
69
70 int InsetCommand::ascii(Buffer const &, ostream &,
71                         LatexRunParams const &) const
72 {
73         return 0;
74 }
75
76
77 int InsetCommand::linuxdoc(Buffer const &, ostream &,
78                            LatexRunParams const &) const
79 {
80         return 0;
81 }
82
83
84 int InsetCommand::docbook(Buffer const &, ostream &,
85                           LatexRunParams const &) const
86 {
87         return 0;
88 }
89
90
91 DispatchResult
92 InsetCommand::priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &)
93 {
94         switch (cmd.action) {
95         case LFUN_INSET_MODIFY: {
96                 InsetCommandParams p;
97                 InsetCommandMailer::string2params(cmd.argument, p);
98                 if (p.getCmdName().empty())
99                         return DispatchResult(false);
100
101                 setParams(p);
102                 cmd.view()->updateInset(this);
103                 return DispatchResult(true);
104         }
105
106         case LFUN_INSET_DIALOG_UPDATE:
107                 InsetCommandMailer(cmd.argument, *this).updateDialog(cmd.view());
108                 return DispatchResult(true);
109
110         case LFUN_MOUSE_RELEASE:
111                 return dispatch(FuncRequest(cmd.view(), LFUN_INSET_EDIT));
112
113         default:
114                 return DispatchResult(false);
115         }
116
117 }
118
119
120 InsetCommandMailer::InsetCommandMailer(string const & name,
121                                        InsetCommand & inset)
122         : name_(name), inset_(inset)
123 {}
124
125
126 string const InsetCommandMailer::inset2string(Buffer const &) const
127 {
128         return params2string(name(), inset_.params());
129 }
130
131
132 void InsetCommandMailer::string2params(string const & in,
133                                        InsetCommandParams & params)
134 {
135         params = InsetCommandParams();
136
137         if (in.empty())
138                 return;
139
140         istringstream data(in);
141         LyXLex lex(0,0);
142         lex.setStream(data);
143
144         if (lex.isOK()) {
145                 lex.next();
146                 string const name = lex.getString();
147         }
148
149         // This is part of the inset proper that is usually swallowed
150         // by Buffer::readInset
151         if (lex.isOK()) {
152                 lex.next();
153                 string const token = lex.getString();
154                 if (token != "LatexCommand")
155                         return;
156         }
157         if (lex.isOK()) {
158                 params.read(lex);
159         }
160 }
161
162
163 string const InsetCommandMailer::params2string(string const & name,
164                                   InsetCommandParams const & params)
165 {
166         ostringstream data;
167         data << name << ' ';
168         params.write(data);
169         data << "\\end_inset\n";
170         return data.str();
171 }