]> git.lyx.org Git - lyx.git/blob - src/insets/InsetInfo.cpp
GuiInfo: display and initialize the information dialog, can not apply yet
[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::showInsetDialog(BufferView * bv) const
151 {
152         bv->showDialog("info");
153         return true;
154 }
155
156
157 bool InsetInfo::getStatus(Cursor & cur, FuncRequest const & cmd,
158                 FuncStatus & flag) const
159 {
160         switch (cmd.action) {
161
162         case LFUN_INSET_MODIFY:
163                 flag.setEnabled(true);
164                 break;
165         //FIXME: do something.
166         /*
167         */
168
169         default:
170                 return false;
171         }
172         return true;
173 }
174
175
176 void InsetInfo::doDispatch(Cursor & cur, FuncRequest & cmd)
177 {
178         // allow selection, copy but not cut, delete etc
179         switch (cmd.action) {
180         case LFUN_MOUSE_PRESS:
181         case LFUN_MOUSE_RELEASE:
182         case LFUN_MOUSE_MOTION:
183         case LFUN_MOUSE_DOUBLE:
184         case LFUN_MOUSE_TRIPLE:
185         case LFUN_COPY:
186         case LFUN_INSET_SETTINGS:
187                 InsetText::doDispatch(cur, cmd);
188                 break;
189
190         default:
191                 break;
192         }
193 }
194
195
196 void InsetInfo::setInfo(string const & name)
197 {
198         if (name.empty())
199                 return;
200         // info_type name
201         string type;
202         name_ = trim(split(name, type, ' '));
203         type_ = nameTranslator().find(type);
204 }
205
206
207 void InsetInfo::updateInfo()
208 {
209         InsetText::clear();
210
211         BufferParams const & bp = buffer().params();    
212
213         switch (type_) {
214         case UNKNOWN_INFO:
215                 setText(_("Unknown Info: ") + from_utf8(name_),
216                         bp.getFont(), false);
217                 break;
218         case SHORTCUTS_INFO: {
219                 FuncRequest func = lyxaction.lookupFunc(name_);
220                 if (func.action != LFUN_UNKNOWN_ACTION)
221                         setText(theTopLevelKeymap().printBindings(func),
222                                 bp.getFont(), false);
223                 break;
224         }
225         case SHORTCUT_INFO: {
226                 FuncRequest func = lyxaction.lookupFunc(name_);
227                 if (func.action != LFUN_UNKNOWN_ACTION) {
228                         KeyMap::Bindings bindings = theTopLevelKeymap().findBindings(func);
229                         if (!bindings.empty())
230                                 setText(bindings.rbegin()->print(KeySequence::ForGui),
231                                         bp.getFont(), false);
232                 }
233                 break;
234         }
235         case LYXRC_INFO: {
236                 ostringstream oss;
237                 lyxrc.write(oss, true, name_);
238                 string result = oss.str();
239                 // remove leading \\name
240                 result = result.substr(name_.size() + 2);
241                 // remove \n and ""
242                 result = rtrim(result, "\n");
243                 result = trim(result, "\"");
244                 setText(from_utf8(result), bp.getFont(), false);
245                 break;
246         }
247         case PACKAGE_INFO:
248                 // check in packages.lst
249                 setText(LaTeXFeatures::isAvailable(name_) ? _("yes") : _("no"),
250                         bp.getFont(), false);
251                 break;
252         case TEXTCLASS_INFO: {
253                 // name_ is the class name
254                 setText(LayoutFileList::get().haveClass(name_) ? _("yes") : _("no"),
255                 bp.getFont(), false);
256                 break;
257         }
258         case MENU_INFO: {
259                 docstring_list names;
260                 FuncRequest func = lyxaction.lookupFunc(name_);
261                 if (func.action == LFUN_UNKNOWN_ACTION) {
262                         setText(bformat(_("Unknown action %1$s"), from_utf8(name_)), bp.getFont(), false);
263                         break;
264                 }
265                 // iterate through the menubackend to find it
266                 if (!theApp()->searchMenu(func, names)) {
267                         setText(bformat(_("No menu entry for action %1$s"), from_utf8(name_)),
268                                 bp.getFont(), false);
269                         break;
270                 }
271                 // if find, return its path.
272                 InsetText::clear();
273                 Paragraph & info = paragraphs().front();
274                 unsigned int i = 0;
275                 while (!names.empty()) {
276                         // do not insert > for the top level menu item
277                         if (i != 0)
278                                 info.insertInset(0, new InsetSpecialChar(InsetSpecialChar::MENU_SEPARATOR),
279                                         Change(Change::UNCHANGED));
280                         for (i = 0; i != names.back().length(); ++i)
281                                 info.insertChar(i, names.back()[i], bp.getFont(), false);
282                         names.pop_back();
283                 }
284                 break;
285         }
286         case ICON_INFO: {
287                 FuncRequest func = lyxaction.lookupFunc(name_);
288                 docstring icon_name = theApp()->iconName(func, true);
289                 //FIXME: We should use the icon directly instead of going through
290                 // FileName. The code below won't work if the icon is embedded in the
291                 // executable through the Qt resource system.
292                 FileName file(to_utf8(icon_name));
293                 if (!file.exists())
294                         break;
295                 InsetGraphicsParams igp;
296                 igp.filename = file;
297                 InsetGraphics * inset = new InsetGraphics(buffer());
298                 inset->setParams(igp);
299                 paragraphs().front().insertInset(0, inset, Change(Change::UNCHANGED));
300                 break;
301         }
302         case BUFFER_INFO: {
303                 if (name_ == "name")
304                         setText(from_utf8(buffer().fileName().onlyFileName()),
305                                 bp.getFont(), false);
306                 else if (name_ == "path")
307                         setText(from_utf8(buffer().filePath()), bp.getFont(), false);
308                 else if (name_ == "class")
309                         setText(from_utf8(bp.documentClass().name()), bp.getFont(), false);
310                 else
311                         setText(_("Unknown buffer info"), bp.getFont(), false);
312                 break;
313         }
314         }
315         // remove indent
316         paragraphs().begin()->params().noindent(true);
317 }
318
319
320 bool InsetInfo::setMouseHover(bool mouse_hover)
321 {
322         mouse_hover_ = mouse_hover;
323         return true;
324 }
325
326
327 docstring InsetInfo::contextMenu(BufferView const &, int, int) const
328 {
329         return from_ascii("context-info");
330 }
331
332 } // namespace lyx