]> git.lyx.org Git - features.git/blob - src/insets/InsetERT.cpp
Cleanup mouse/selection/context-menu interactions.
[features.git] / src / insets / InsetERT.cpp
1 /**
2  * \file InsetERT.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jürgen Vigna
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 "InsetERT.h"
15
16 #include "Buffer.h"
17 #include "BufferParams.h"
18 #include "BufferView.h"
19 #include "Cursor.h"
20 #include "DispatchResult.h"
21 #include "FuncRequest.h"
22 #include "FuncStatus.h"
23 #include "Language.h"
24 #include "Layout.h"
25 #include "LyXAction.h"
26 #include "Lexer.h"
27 #include "TextClass.h"
28 #include "MetricsInfo.h"
29 #include "ParagraphParameters.h"
30 #include "Paragraph.h"
31
32 #include "frontends/alert.h"
33
34 #include "support/debug.h"
35 #include "support/gettext.h"
36 #include "support/lstrings.h"
37
38 #include <sstream>
39
40 using namespace std;
41 using namespace lyx::support;
42
43 namespace lyx {
44
45
46 InsetERT::InsetERT(Buffer const & buf, CollapseStatus status)
47         : InsetCollapsable(buf, status)
48 {}
49
50
51 InsetERT::~InsetERT()
52 {
53         InsetERTMailer(*this).hideDialog();
54 }
55
56
57 void InsetERT::write(ostream & os) const
58 {
59         os << "ERT" << "\n";
60         InsetCollapsable::write(os);
61 }
62
63
64 docstring InsetERT::editMessage() const
65 {
66         return _("Opened ERT Inset");
67 }
68
69
70 int InsetERT::latex(odocstream & os, OutputParams const & op) const
71 {
72         return InsetCollapsable::latex(os, op);
73 }
74
75
76 int InsetERT::plaintext(odocstream &, OutputParams const &) const
77 {
78         return 0; // do not output TeX code
79 }
80
81
82 int InsetERT::docbook(odocstream & os, OutputParams const &) const
83 {
84         // FIXME can we do the same thing here as for LaTeX?
85         ParagraphList::const_iterator par = paragraphs().begin();
86         ParagraphList::const_iterator end = paragraphs().end();
87
88         int lines = 0;
89         while (par != end) {
90                 pos_type siz = par->size();
91                 for (pos_type i = 0; i < siz; ++i)
92                         os.put(par->getChar(i));
93                 ++par;
94                 if (par != end) {
95                         os << "\n";
96                         ++lines;
97                 }
98         }
99
100         return lines;
101 }
102
103
104 void InsetERT::doDispatch(Cursor & cur, FuncRequest & cmd)
105 {
106         BufferParams const & bp = cur.buffer().params();
107         Layout const layout = bp.documentClass().emptyLayout();
108         //lyxerr << "\nInsetERT::doDispatch (begin): cmd: " << cmd << endl;
109         switch (cmd.action) {
110         case LFUN_QUOTE_INSERT: {
111                 // We need to bypass the fancy quotes in Text
112                 FuncRequest f(LFUN_SELF_INSERT, "\"");
113                 dispatch(cur, f);
114                 break;
115         }
116         case LFUN_INSET_MODIFY: {
117                 InsetCollapsable::CollapseStatus st;
118                 InsetERTMailer::string2params(to_utf8(cmd.argument()), st);
119                 setStatus(cur, st);
120                 break;
121         }
122         default:
123                 // Force any new text to latex_language
124                 // FIXME: This should not be necessary but
125                 // new paragraphs that are created by pressing enter at the
126                 // start of an existing paragraph get the buffer language
127                 // and not latex_language, so we take this brute force
128                 // approach.
129                 cur.current_font.fontInfo() = layout.font;
130                 cur.real_current_font.fontInfo() = layout.font;
131                 InsetCollapsable::doDispatch(cur, cmd);
132                 break;
133         }
134 }
135
136
137 bool InsetERT::getStatus(Cursor & cur, FuncRequest const & cmd,
138         FuncStatus & status) const
139 {
140         switch (cmd.action) {
141                 case LFUN_CLIPBOARD_PASTE:
142                 case LFUN_INSET_MODIFY:
143                 case LFUN_PASTE:
144                 case LFUN_PRIMARY_SELECTION_PASTE:
145                 case LFUN_QUOTE_INSERT:
146                         status.enabled(true);
147                         return true;
148
149                 // this one is difficult to get right. As a half-baked
150                 // solution, we consider only the first action of the sequence
151                 case LFUN_COMMAND_SEQUENCE: {
152                         // argument contains ';'-terminated commands
153                         string const firstcmd = token(to_utf8(cmd.argument()), ';', 0);
154                         FuncRequest func(lyxaction.lookupFunc(firstcmd));
155                         func.origin = cmd.origin;
156                         return getStatus(cur, func, status);
157                 }
158
159                 default:
160                         return InsetCollapsable::getStatus(cur, cmd, status);
161         }
162 }
163
164
165 void InsetERT::setButtonLabel()
166 {
167         if (decoration() == InsetLayout::Classic)
168                 setLabel(isOpen() ? _("ERT") : getNewLabel(_("ERT")));
169         else
170                 setLabel(getNewLabel(_("ERT")));
171 }
172
173
174 bool InsetERT::insetAllowed(InsetCode /* code */) const
175 {
176         return false;
177 }
178
179
180 void InsetERT::draw(PainterInfo & pi, int x, int y) const
181 {
182         const_cast<InsetERT &>(*this).setButtonLabel();
183         InsetCollapsable::draw(pi, x, y);
184 }
185
186
187 bool InsetERT::showInsetDialog(BufferView * bv) const
188 {
189         InsetERTMailer(const_cast<InsetERT &>(*this)).showDialog(bv);
190         return true;
191 }
192
193
194 string const InsetERTMailer::name_("ert");
195
196 InsetERTMailer::InsetERTMailer(InsetERT & inset)
197         : inset_(inset)
198 {}
199
200
201 string const InsetERTMailer::inset2string(Buffer const &) const
202 {
203         return params2string(inset_.status());
204 }
205
206
207 void InsetERTMailer::string2params(string const & in,
208                                    InsetCollapsable::CollapseStatus & status)
209 {
210         status = InsetCollapsable::Collapsed;
211         if (in.empty())
212                 return;
213
214         istringstream data(in);
215         Lexer lex(0,0);
216         lex.setStream(data);
217
218         string name;
219         lex >> name;
220         if (name != name_)
221                 return print_mailer_error("InsetERTMailer", in, 1, name_);
222
223         int s;
224         lex >> s;
225         if (lex)
226                 status = static_cast<InsetCollapsable::CollapseStatus>(s);
227 }
228
229
230 string const
231 InsetERTMailer::params2string(InsetCollapsable::CollapseStatus status)
232 {
233         ostringstream data;
234         data << name_ << ' ' << status;
235         return data.str();
236 }
237
238
239 } // namespace lyx