]> git.lyx.org Git - lyx.git/blob - src/insets/InsetInfo.cpp
bb777164c1369063f877a52f83f945bd1bd922eb
[lyx.git] / src / insets / InsetInfo.cpp
1 /**
2  * \file InsetInfo.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Bo Peng
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10 #include <config.h>
11
12 #include "InsetInfo.h"
13
14 #include "LayoutFile.h"
15 #include "Buffer.h"
16 #include "BufferParams.h"
17 #include "BufferView.h"
18 #include "FuncRequest.h"
19 #include "FuncStatus.h"
20 #include "InsetGraphics.h"
21 #include "InsetSpecialChar.h"
22 #include "KeyMap.h"
23 #include "LaTeXFeatures.h"
24 #include "LyXAction.h"
25 #include "LyXRC.h"
26 #include "Lexer.h"
27 #include "MetricsInfo.h"
28 #include "ParagraphParameters.h"
29
30 #include "frontends/Application.h"
31
32 #include "support/debug.h"
33 #include "support/docstream.h"
34 #include "support/docstring_list.h"
35 #include "support/FileName.h"
36 #include "support/filetools.h"
37 #include "support/gettext.h"
38 #include "support/lstrings.h"
39 #include "support/ExceptionMessage.h"
40
41 #include <sstream>
42
43 using namespace std;
44 using namespace lyx::support;
45
46 namespace lyx {
47
48
49 InsetInfo::InsetInfo(Buffer const & buf, string const & name) 
50         : InsetText(buf), type_(UNKNOWN_INFO), name_(),
51           mouse_hover_(false)
52 {
53         setAutoBreakRows(true);
54         setDrawFrame(true);
55         setInfo(name);
56 }
57
58
59 Inset * InsetInfo::editXY(Cursor & cur, int x, int y)
60 {
61         cur.push(*this);
62         return InsetText::editXY(cur, x, y);
63 }
64
65
66 void InsetInfo::draw(PainterInfo & pi, int x, int y) const
67 {
68         InsetText::draw(pi, x, y); 
69 }
70
71
72 string InsetInfo::infoType() const
73 {
74         return nameTranslator().find(type_);
75 }
76
77
78 docstring InsetInfo::toolTip(BufferView const &, int, int) const
79 {
80         odocstringstream os;
81         os << _("Information regarding ")
82            << _(nameTranslator().find(type_))
83            << " " << from_utf8(name_);
84         return os.str();
85 }
86
87 namespace {
88
89 Translator<InsetInfo::info_type, string> const initTranslator()
90 {       
91         Translator<InsetInfo::info_type, string> 
92                 translator(InsetInfo::UNKNOWN_INFO, "unknown");
93
94         translator.addPair(InsetInfo::SHORTCUTS_INFO, "shortcuts");
95         translator.addPair(InsetInfo::SHORTCUT_INFO, "shortcut");
96         translator.addPair(InsetInfo::LYXRC_INFO, "lyxrc");
97         translator.addPair(InsetInfo::PACKAGE_INFO, "package");
98         translator.addPair(InsetInfo::TEXTCLASS_INFO, "textclass");
99         translator.addPair(InsetInfo::MENU_INFO, "menu");
100         translator.addPair(InsetInfo::ICON_INFO, "icon");
101         translator.addPair(InsetInfo::BUFFER_INFO, "buffer");
102
103         return translator;
104 }
105
106 } // namespace anon
107
108 Translator<InsetInfo::info_type, string> 
109         const & InsetInfo::nameTranslator() const
110 {
111         static Translator<info_type, string> const translator = initTranslator();
112         return translator;
113 }
114
115         
116
117 void InsetInfo::read(Lexer & lex)
118 {
119         string token;
120         while (lex.isOK()) {
121                 lex.next();
122                 token = lex.getString();
123                 if (token == "type") {
124                         lex.next();
125                         token = lex.getString();
126                         type_ = nameTranslator().find(token);
127                 } else if (token == "arg") {
128                         lex.next();
129                         name_ = lex.getString();
130                 } else if (token == "\\end_inset")
131                         break;
132         }       
133         if (token != "\\end_inset") {
134                 lex.printError("Missing \\end_inset at this point");
135                 throw ExceptionMessage(WarningException,
136                         _("Missing \\end_inset at this point."),
137                         from_utf8(token));
138         }
139         updateInfo();
140 }
141
142
143 void InsetInfo::write(ostream & os) const
144 {
145         os << "Info\ntype  \"" << nameTranslator().find(type_)
146            << "\"\narg   \"" << name_ << '\"';
147 }
148
149
150 bool  InsetInfo::validate(string const & argument) const
151 {
152         // FIXME!
153         return false;
154 }
155
156
157 bool InsetInfo::showInsetDialog(BufferView * bv) const
158 {
159         bv->showDialog("info");
160         return true;
161 }
162
163
164 bool InsetInfo::getStatus(Cursor & cur, FuncRequest const & cmd,
165                 FuncStatus & flag) const
166 {
167         switch (cmd.action) {
168
169         case LFUN_INSET_MODIFY:
170                 flag.setEnabled(true);
171                 break;
172         //FIXME: do something.
173         /*
174         */
175
176         default:
177                 return false;
178         }
179         return true;
180 }
181
182
183 void InsetInfo::doDispatch(Cursor & cur, FuncRequest & cmd)
184 {
185         // allow selection, copy but not cut, delete etc
186         switch (cmd.action) {
187         case LFUN_MOUSE_PRESS:
188         case LFUN_MOUSE_RELEASE:
189         case LFUN_MOUSE_MOTION:
190         case LFUN_MOUSE_DOUBLE:
191         case LFUN_MOUSE_TRIPLE:
192         case LFUN_COPY:
193         case LFUN_INSET_SETTINGS:
194                 InsetText::doDispatch(cur, cmd);
195                 break;
196
197         default:
198                 break;
199         }
200 }
201
202
203 void InsetInfo::setInfo(string const & name)
204 {
205         if (name.empty())
206                 return;
207         // info_type name
208         string type;
209         name_ = trim(split(name, type, ' '));
210         type_ = nameTranslator().find(type);
211 }
212
213
214 void InsetInfo::updateInfo()
215 {
216         InsetText::clear();
217
218         BufferParams const & bp = buffer().params();    
219
220         switch (type_) {
221         case UNKNOWN_INFO:
222                 setText(_("Unknown Info: ") + from_utf8(name_),
223                         bp.getFont(), false);
224                 break;
225         case SHORTCUTS_INFO: {
226                 FuncRequest func = lyxaction.lookupFunc(name_);
227                 if (func.action != LFUN_UNKNOWN_ACTION)
228                         setText(theTopLevelKeymap().printBindings(func),
229                                 bp.getFont(), false);
230                 break;
231         }
232         case SHORTCUT_INFO: {
233                 FuncRequest func = lyxaction.lookupFunc(name_);
234                 if (func.action != LFUN_UNKNOWN_ACTION) {
235                         KeyMap::Bindings bindings = theTopLevelKeymap().findBindings(func);
236                         if (!bindings.empty())
237                                 setText(bindings.rbegin()->print(KeySequence::ForGui),
238                                         bp.getFont(), false);
239                 }
240                 break;
241         }
242         case LYXRC_INFO: {
243                 ostringstream oss;
244                 lyxrc.write(oss, true, name_);
245                 string result = oss.str();
246                 // remove leading \\name
247                 result = result.substr(name_.size() + 2);
248                 // remove \n and ""
249                 result = rtrim(result, "\n");
250                 result = trim(result, "\"");
251                 setText(from_utf8(result), bp.getFont(), false);
252                 break;
253         }
254         case PACKAGE_INFO:
255                 // check in packages.lst
256                 setText(LaTeXFeatures::isAvailable(name_) ? _("yes") : _("no"),
257                         bp.getFont(), false);
258                 break;
259         case TEXTCLASS_INFO: {
260                 // name_ is the class name
261                 setText(LayoutFileList::get().haveClass(name_) ? _("yes") : _("no"),
262                 bp.getFont(), false);
263                 break;
264         }
265         case MENU_INFO: {
266                 docstring_list names;
267                 FuncRequest func = lyxaction.lookupFunc(name_);
268                 if (func.action == LFUN_UNKNOWN_ACTION) {
269                         setText(bformat(_("Unknown action %1$s"), from_utf8(name_)), bp.getFont(), false);
270                         break;
271                 }
272                 // iterate through the menubackend to find it
273                 if (!theApp()->searchMenu(func, names)) {
274                         setText(bformat(_("No menu entry for action %1$s"), from_utf8(name_)),
275                                 bp.getFont(), false);
276                         break;
277                 }
278                 // if find, return its path.
279                 InsetText::clear();
280                 Paragraph & info = paragraphs().front();
281                 unsigned int i = 0;
282                 while (!names.empty()) {
283                         // do not insert > for the top level menu item
284                         if (i != 0)
285                                 info.insertInset(0, new InsetSpecialChar(InsetSpecialChar::MENU_SEPARATOR),
286                                         Change(Change::UNCHANGED));
287                         for (i = 0; i != names.back().length(); ++i)
288                                 info.insertChar(i, names.back()[i], bp.getFont(), false);
289                         names.pop_back();
290                 }
291                 break;
292         }
293         case ICON_INFO: {
294                 FuncRequest func = lyxaction.lookupFunc(name_);
295                 docstring icon_name = theApp()->iconName(func, true);
296                 //FIXME: We should use the icon directly instead of going through
297                 // FileName. The code below won't work if the icon is embedded in the
298                 // executable through the Qt resource system.
299                 FileName file(to_utf8(icon_name));
300                 if (!file.exists())
301                         break;
302                 InsetGraphicsParams igp;
303                 igp.filename = file;
304                 InsetGraphics * inset = new InsetGraphics(buffer());
305                 inset->setParams(igp);
306                 paragraphs().front().insertInset(0, inset, Change(Change::UNCHANGED));
307                 break;
308         }
309         case BUFFER_INFO: {
310                 if (name_ == "name")
311                         setText(from_utf8(buffer().fileName().onlyFileName()),
312                                 bp.getFont(), false);
313                 else if (name_ == "path")
314                         setText(from_utf8(buffer().filePath()), bp.getFont(), false);
315                 else if (name_ == "class")
316                         setText(from_utf8(bp.documentClass().name()), bp.getFont(), false);
317                 else
318                         setText(_("Unknown buffer info"), bp.getFont(), false);
319                 break;
320         }
321         }
322         // remove indent
323         paragraphs().begin()->params().noindent(true);
324 }
325
326
327 bool InsetInfo::setMouseHover(bool mouse_hover)
328 {
329         mouse_hover_ = mouse_hover;
330         return true;
331 }
332
333
334 docstring InsetInfo::contextMenu(BufferView const &, int, int) const
335 {
336         return from_ascii("context-info");
337 }
338
339 } // namespace lyx