]> git.lyx.org Git - lyx.git/blob - src/insets/insetcommand.C
remove LFUN_INSET_DIALOG_SHOW
[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 "FuncStatus.h"
20 #include "lyxlex.h"
21 #include "metricsinfo.h"
22
23 #include <sstream>
24
25
26 using std::string;
27 using std::istringstream;
28 using std::ostream;
29 using std::ostringstream;
30
31
32 InsetCommand::InsetCommand(InsetCommandParams const & p,
33                            string const & mailer_name)
34         : p_(p.getCmdName(), p.getContents(), p.getOptions(), p.getSecOptions()),
35           mailer_name_(mailer_name),
36           updateButtonLabel_(true)
37 {}
38
39
40 InsetCommand::~InsetCommand()
41 {
42         if (!mailer_name_.empty())
43                 InsetCommandMailer(mailer_name_, *this).hideDialog();
44 }
45
46
47 void InsetCommand::metrics(MetricsInfo & mi, Dimension & dim) const
48 {
49         if (updateButtonLabel_) {
50                 updateButtonLabel_ = false;
51                 button_.update(getScreenLabel(*mi.base.bv->buffer()),
52                                editable() != NOT_EDITABLE);
53         }
54         button_.metrics(mi, dim);
55         dim_ = dim;
56 }
57
58
59 void InsetCommand::draw(PainterInfo & pi, int x, int y) const
60 {
61         setPosCache(pi, x, y);
62         button_.draw(pi, x, y);
63 }
64
65
66 void InsetCommand::setParams(InsetCommandParams const & p)
67 {
68         p_ = p;
69         updateButtonLabel_ = true;
70 }
71
72
73 int InsetCommand::latex(Buffer const &, ostream & os,
74                         OutputParams const &) const
75 {
76         os << getCommand();
77         return 0;
78 }
79
80
81 int InsetCommand::plaintext(Buffer const &, ostream &,
82                         OutputParams const &) const
83 {
84         return 0;
85 }
86
87
88 int InsetCommand::linuxdoc(Buffer const &, ostream &,
89                            OutputParams const &) const
90 {
91         return 0;
92 }
93
94
95 int InsetCommand::docbook(Buffer const &, ostream &,
96                           OutputParams const &) const
97 {
98         return 0;
99 }
100
101
102 void InsetCommand::doDispatch(LCursor & cur, FuncRequest & cmd)
103 {
104         switch (cmd.action) {
105         case LFUN_INSET_REFRESH:
106                 updateButtonLabel_ = true;
107                 break;
108
109         case LFUN_INSET_MODIFY: {
110                 InsetCommandParams p;
111                 InsetCommandMailer::string2params(mailer_name_, cmd.argument, p);
112                 if (p.getCmdName().empty())
113                         cur.noUpdate();
114                 else
115                         setParams(p);
116                 break;
117         }
118
119         case LFUN_INSET_DIALOG_UPDATE:
120                 InsetCommandMailer(cmd.argument, *this).updateDialog(&cur.bv());
121                 break;
122
123         case LFUN_MOUSE_RELEASE: {
124                 if (!mailer_name_.empty())
125                         InsetCommandMailer(mailer_name_, *this).showDialog(&cur.bv());
126                 break;
127         }
128
129         default:
130                 InsetBase::doDispatch(cur, cmd);
131                 break;
132         }
133
134 }
135
136
137 bool InsetCommand::getStatus(LCursor & cur, FuncRequest const & cmd,
138         FuncStatus & status) const
139 {
140         switch (cmd.action) {
141         // suppress these
142         case LFUN_ERT_INSERT:
143                 status.enabled(false);
144                 return true;
145         // we handle these
146         case LFUN_INSET_REFRESH:
147         case LFUN_INSET_MODIFY:
148         case LFUN_INSET_DIALOG_UPDATE:
149                 status.enabled(true);
150                 return true;
151         default:
152                 return InsetBase::getStatus(cur, cmd, status);
153         }
154 }
155
156
157 InsetCommandMailer::InsetCommandMailer(string const & name,
158                                        InsetCommand & inset)
159         : name_(name), inset_(inset)
160 {}
161
162
163 string const InsetCommandMailer::inset2string(Buffer const &) const
164 {
165         return params2string(name(), inset_.params());
166 }
167
168
169 void InsetCommandMailer::string2params(string const & name,
170                                        string const & in,
171                                        InsetCommandParams & params)
172 {
173         params = InsetCommandParams();
174         if (in.empty())
175                 return;
176
177         istringstream data(in);
178         LyXLex lex(0,0);
179         lex.setStream(data);
180
181         string n;
182         lex >> n;
183         if (!lex || n != name)
184                 return print_mailer_error("InsetCommandMailer", in, 1, name);
185
186         // This is part of the inset proper that is usually swallowed
187         // by LyXText::readInset
188         string id;
189         lex >> id;
190         if (!lex || id != "LatexCommand")
191                 return print_mailer_error("InsetCommandMailer", in, 2, "LatexCommand");
192
193         params.read(lex);
194 }
195
196
197 string const
198 InsetCommandMailer::params2string(string const & name,
199                                   InsetCommandParams const & params)
200 {
201         ostringstream data;
202         data << name << ' ';
203         params.write(data);
204         data << "\\end_inset\n";
205         return data.str();
206 }