]> git.lyx.org Git - features.git/blob - src/insets/InsetERT.cpp
progress on buffer-reference-in-insets. beware of instabilities...
[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(BufferParams const & bp, CollapseStatus status)
47         : InsetCollapsable(bp, status)
48 {}
49
50
51 InsetERT::InsetERT(InsetERT const & in)
52         : InsetCollapsable(in)
53 {}
54
55
56 Inset * InsetERT::clone() const
57 {
58         return new InsetERT(*this);
59 }
60
61
62 InsetERT::~InsetERT()
63 {
64         InsetERTMailer(*this).hideDialog();
65 }
66
67
68 void InsetERT::write(ostream & os) const
69 {
70         os << "ERT" << "\n";
71         InsetCollapsable::write(os);
72 }
73
74
75 docstring InsetERT::editMessage() const
76 {
77         return _("Opened ERT Inset");
78 }
79
80
81 int InsetERT::latex(odocstream & os, OutputParams const & op) const
82 {
83         return InsetCollapsable::latex(os, op);
84 }
85
86
87 int InsetERT::plaintext(odocstream &, OutputParams const &) const
88 {
89         return 0; // do not output TeX code
90 }
91
92
93 int InsetERT::docbook(odocstream & os, OutputParams const &) const
94 {
95         // FIXME can we do the same thing here as for LaTeX?
96         ParagraphList::const_iterator par = paragraphs().begin();
97         ParagraphList::const_iterator end = paragraphs().end();
98
99         int lines = 0;
100         while (par != end) {
101                 pos_type siz = par->size();
102                 for (pos_type i = 0; i < siz; ++i)
103                         os.put(par->getChar(i));
104                 ++par;
105                 if (par != end) {
106                         os << "\n";
107                         ++lines;
108                 }
109         }
110
111         return lines;
112 }
113
114
115 void InsetERT::doDispatch(Cursor & cur, FuncRequest & cmd)
116 {
117         BufferParams const & bp = cur.buffer().params();
118         LayoutPtr const layout =
119                         bp.textClass().emptyLayout();
120         //lyxerr << "\nInsetERT::doDispatch (begin): cmd: " << cmd << endl;
121         switch (cmd.action) {
122
123         case LFUN_MOUSE_PRESS:
124                 if (cmd.button() != mouse_button::button3)
125                         InsetCollapsable::doDispatch(cur, cmd);
126                 else
127                         // This makes the cursor leave the
128                         // inset when it collapses on mouse-3
129                         cur.undispatched();
130                 break;
131
132         case LFUN_QUOTE_INSERT: {
133                 // We need to bypass the fancy quotes in Text
134                 FuncRequest f(LFUN_SELF_INSERT, "\"");
135                 dispatch(cur, f);
136                 break;
137         }
138         case LFUN_INSET_MODIFY: {
139                 InsetCollapsable::CollapseStatus st;
140                 InsetERTMailer::string2params(to_utf8(cmd.argument()), st);
141                 setStatus(cur, st);
142                 break;
143         }
144         default:
145                 // Force any new text to latex_language
146                 // FIXME: This should not be necessary but
147                 // new paragraphs that are created by pressing enter at the
148                 // start of an existing paragraph get the buffer language
149                 // and not latex_language, so we take this brute force
150                 // approach.
151                 cur.current_font.fontInfo() = layout->font;
152                 cur.real_current_font.fontInfo() = layout->font;
153                 InsetCollapsable::doDispatch(cur, cmd);
154                 break;
155         }
156 }
157
158
159 bool InsetERT::getStatus(Cursor & cur, FuncRequest const & cmd,
160         FuncStatus & status) const
161 {
162         switch (cmd.action) {
163                 case LFUN_CLIPBOARD_PASTE:
164                 case LFUN_INSET_MODIFY:
165                 case LFUN_PASTE:
166                 case LFUN_PRIMARY_SELECTION_PASTE:
167                 case LFUN_QUOTE_INSERT:
168                         status.enabled(true);
169                         return true;
170
171                 // this one is difficult to get right. As a half-baked
172                 // solution, we consider only the first action of the sequence
173                 case LFUN_COMMAND_SEQUENCE: {
174                         // argument contains ';'-terminated commands
175                         string const firstcmd = token(to_utf8(cmd.argument()), ';', 0);
176                         FuncRequest func(lyxaction.lookupFunc(firstcmd));
177                         func.origin = cmd.origin;
178                         return getStatus(cur, func, status);
179                 }
180
181                 default:
182                         return InsetCollapsable::getStatus(cur, cmd, status);
183         }
184 }
185
186
187 void InsetERT::setButtonLabel()
188 {
189         if (decoration() == InsetLayout::Classic)
190                 setLabel(isOpen() ? _("ERT") : getNewLabel(_("ERT")));
191         else
192                 setLabel(getNewLabel(_("ERT")));
193 }
194
195
196 bool InsetERT::insetAllowed(InsetCode /* code */) const
197 {
198         return false;
199 }
200
201
202 void InsetERT::draw(PainterInfo & pi, int x, int y) const
203 {
204         const_cast<InsetERT &>(*this).setButtonLabel();
205         InsetCollapsable::draw(pi, x, y);
206 }
207
208
209 bool InsetERT::showInsetDialog(BufferView * bv) const
210 {
211         InsetERTMailer(const_cast<InsetERT &>(*this)).showDialog(bv);
212         return true;
213 }
214
215
216 string const InsetERTMailer::name_("ert");
217
218 InsetERTMailer::InsetERTMailer(InsetERT & inset)
219         : inset_(inset)
220 {}
221
222
223 string const InsetERTMailer::inset2string(Buffer const &) const
224 {
225         return params2string(inset_.status());
226 }
227
228
229 void InsetERTMailer::string2params(string const & in,
230                                    InsetCollapsable::CollapseStatus & status)
231 {
232         status = InsetCollapsable::Collapsed;
233         if (in.empty())
234                 return;
235
236         istringstream data(in);
237         Lexer lex(0,0);
238         lex.setStream(data);
239
240         string name;
241         lex >> name;
242         if (name != name_)
243                 return print_mailer_error("InsetERTMailer", in, 1, name_);
244
245         int s;
246         lex >> s;
247         if (lex)
248                 status = static_cast<InsetCollapsable::CollapseStatus>(s);
249 }
250
251
252 string const
253 InsetERTMailer::params2string(InsetCollapsable::CollapseStatus status)
254 {
255         ostringstream data;
256         data << name_ << ' ' << status;
257         return data.str();
258 }
259
260
261 } // namespace lyx