]> git.lyx.org Git - lyx.git/blobdiff - src/factory.cpp
List currently used shortcuts in the shortcuts panel of the preference dialog
[lyx.git] / src / factory.cpp
index f8afea83366df81108fa1be90d082a0d127bc3cd..cc188a6558819fecc271668d7f0cf27ad1d7155f 100644 (file)
@@ -38,6 +38,7 @@
 #include "insets/InsetHFill.h"
 #include "insets/InsetInclude.h"
 #include "insets/InsetIndex.h"
+#include "insets/InsetInfo.h"
 #include "insets/InsetNomencl.h"
 #include "insets/InsetLabel.h"
 #include "insets/InsetLine.h"
@@ -51,7 +52,7 @@
 #include "insets/InsetSpace.h"
 #include "insets/InsetTabular.h"
 #include "insets/InsetTOC.h"
-#include "insets/InsetUrl.h"
+#include "insets/InsetHyperlink.h"
 #include "insets/InsetVSpace.h"
 #include "insets/InsetWrap.h"
 
@@ -171,20 +172,14 @@ Inset * createInset(BufferView * bv, FuncRequest const & cmd)
 
                case LFUN_WRAP_INSERT: {
                        string const argument = to_utf8(cmd.argument());
-                       if (argument == "figure")
+                       if (argument == "figure" || argument == "table")
                                return new InsetWrap(params, argument);
-                       lyxerr << "Non-existent floatflt type: " << argument << endl;
+                       lyxerr << "Non-existent wrapfig type: " << argument << endl;
                        return 0;
                }
 
-               case LFUN_INDEX_INSERT: {
-                       // Try and generate a valid index entry.
-                       InsetCommandParams icp("index");
-                       icp["name"] = cmd.argument().empty() ?
-                               bv->cursor().innerText()->getStringToIndex(bv->cursor()) :
-                               cmd.argument();
-                       return new InsetIndex(icp);
-               }
+               case LFUN_INDEX_INSERT:
+                       return new InsetIndex(params);
 
                case LFUN_NOMENCL_INSERT: {
                        InsetCommandParams icp("nomenclature");
@@ -216,21 +211,20 @@ Inset * createInset(BufferView * bv, FuncRequest const & cmd)
                }
 
                case LFUN_INDEX_PRINT:
-                       return new InsetPrintIndex(InsetCommandParams("printindex"));
+                       return new InsetPrintIndex(InsetCommandParams("index_print"));
 
                case LFUN_NOMENCL_PRINT:
-                       return new InsetPrintNomencl(InsetCommandParams("printnomenclature"));
+                       return new InsetPrintNomencl(InsetCommandParams("nomencl_print"));
 
                case LFUN_TOC_INSERT:
-                       return new InsetTOC(InsetCommandParams("tableofcontents"));
+                       return new InsetTOC(InsetCommandParams("toc"));
 
                case LFUN_ENVIRONMENT_INSERT:
                        return new InsetEnvironment(params, cmd.argument());
 
+               case LFUN_INFO_INSERT:
+                       return new InsetInfo(params, to_utf8(cmd.argument()));
 #if 0
-               case LFUN_LIST_INSERT:
-                       return new InsetList;
-
                case LFUN_THEOREM_INSERT:
                        return new InsetTheorem;
 #endif
@@ -251,7 +245,7 @@ Inset * createInset(BufferView * bv, FuncRequest const & cmd)
                                return new InsetBibtex(icp);
 
                        } else if (name == "citation") {
-                               InsetCommandParams icp("cite");
+                               InsetCommandParams icp("citation");
                                InsetCommandMailer::string2params(name, to_utf8(cmd.argument()),
                                        icp);
                                return new InsetCitation(icp);
@@ -284,16 +278,19 @@ Inset * createInset(BufferView * bv, FuncRequest const & cmd)
                                inset->setParams(igp);
                                return inset.release();
 
+                       } else if (name == "href") {
+                               InsetCommandParams icp(name);
+                               InsetCommandMailer::string2params(name, to_utf8(cmd.argument()),
+                                       icp);
+                               return new InsetHyperlink(icp);
+
                        } else if (name == "include") {
                                InsetCommandParams iip(name);
                                InsetIncludeMailer::string2params(to_utf8(cmd.argument()), iip);
                                return new InsetInclude(iip);
 
                        } else if (name == "index") {
-                               InsetCommandParams icp(name);
-                               InsetCommandMailer::string2params(name, to_utf8(cmd.argument()),
-                                       icp);
-                               return new InsetIndex(icp);
+                               return new InsetIndex(params);
 
                        } else if (name == "nomenclature") {
                                InsetCommandParams icp(name);
@@ -314,17 +311,11 @@ Inset * createInset(BufferView * bv, FuncRequest const & cmd)
                                return new InsetRef(icp, bv->buffer());
 
                        } else if (name == "toc") {
-                               InsetCommandParams icp("tableofcontents");
+                               InsetCommandParams icp("toc");
                                InsetCommandMailer::string2params(name, to_utf8(cmd.argument()),
                                        icp);
                                return new InsetTOC(icp);
 
-                       } else if (name == "url") {
-                               InsetCommandParams icp(name);
-                               InsetCommandMailer::string2params(name, to_utf8(cmd.argument()),
-                                       icp);
-                               return new InsetUrl(icp);
-
                        } else if (name == "vspace") {
                                VSpace vspace;
                                InsetVSpaceMailer::string2params(to_utf8(cmd.argument()), vspace);
@@ -393,63 +384,47 @@ Inset * readInset(Lexer & lex, Buffer const & buf)
        string tmptok = lex.getString();
 
        // test the different insets
-       if (tmptok == "LatexCommand") {
+       if (tmptok == "CommandInset") {
                lex.next();
-               string const cmdName = lex.getString();
-               lex.pushToken(cmdName);
-
-               InsetCommandParams inscmd(cmdName);
+               string const insetType = lex.getString();
+               lex.pushToken(insetType);
+
+               //FIXME 
+               //InsetCode const code = Inset::translate(insetType);
+               //if (code == NO_CODE) { choke as below; }
+               //InsetCommandParams inscmd();
+               InsetCommandParams inscmd(insetType);
                inscmd.read(lex);
 
-               // This strange command allows LyX to recognize "natbib" style
-               // citations: citet, citep, Citet etc.
-               // FIXME: We already have partial support for \\fullcite and
-               // the various \\footcite commands. We should increase the
-               // file format number and read these commands here, too.
-               // Then we should use is_possible_cite_command() in
-               // src/frontends/controllers/frontend_helpers.cpp to test for valid cite
-               // commands.
-               if (compare_ascii_no_case(cmdName.substr(0,4), "cite") == 0) {
+               if (insetType == "citation") {
                        inset.reset(new InsetCitation(inscmd));
-               } else if (cmdName == "bibitem") {
+               } else if (insetType == "bibitem") {
                        inset.reset(new InsetBibitem(inscmd));
-               } else if (cmdName == "bibtex") {
+               } else if (insetType == "bibtex") {
                        inset.reset(new InsetBibtex(inscmd));
-               } else if (cmdName == "index") {
-                       inset.reset(new InsetIndex(inscmd));
-               } else if (cmdName == "nomenclature") {
-                       inset.reset(new InsetNomencl(inscmd));
-               } else if (cmdName == "include") {
+               } else if (insetType == "index") {
+                       inset.reset(new InsetIndex(buf.params()));
+               } else if (insetType == "href") {
+                       inset.reset(new InsetHyperlink(inscmd));
+               } else if (insetType == "include") {
                        inset.reset(new InsetInclude(inscmd));
-               } else if (cmdName == "label") {
+               } else if (insetType == "label") {
                        inset.reset(new InsetLabel(inscmd));
-               } else if (cmdName == "url"
-                          || cmdName == "htmlurl") {
-                       inset.reset(new InsetUrl(inscmd));
-               } else if (cmdName == "ref"
-                          || cmdName == "eqref"
-                          || cmdName == "pageref"
-                          || cmdName == "vref"
-                          || cmdName == "vpageref"
-                          || cmdName == "prettyref") {
+               } else if (insetType == "nomenclature") {
+                       inset.reset(new InsetNomencl(inscmd));
+               } else if (insetType == "ref") {
                        if (!inscmd["name"].empty()
                            || !inscmd["reference"].empty()) {
                                inset.reset(new InsetRef(inscmd, buf));
                        }
-               } else if (cmdName == "tableofcontents") {
+               } else if (insetType == "toc") {
                        inset.reset(new InsetTOC(inscmd));
-               } else if (cmdName == "listofalgorithms") {
-                       inset.reset(new InsetFloatList("algorithm"));
-               } else if (cmdName == "listoffigures") {
-                       inset.reset(new InsetFloatList("figure"));
-               } else if (cmdName == "listoftables") {
-                       inset.reset(new InsetFloatList("table"));
-               } else if (cmdName == "printindex") {
+               } else if (insetType == "index_print") {
                        inset.reset(new InsetPrintIndex(inscmd));
-               } else if (cmdName == "printnomenclature") {
+               } else if (insetType == "nomencl_print") {
                        inset.reset(new InsetPrintNomencl(inscmd));
                } else {
-                       lyxerr << "unknown CommandInset '" << cmdName
+                       lyxerr << "unknown CommandInset '" << insetType
                               << "'" << std::endl;
                        while (lex.isOK() && lex.getString() != "\\end_inset")
                                lex.next();
@@ -470,7 +445,7 @@ Inset * readInset(Lexer & lex, Buffer const & buf)
                        inset.reset(new InsetNote(buf.params(), tmptok));
                } else if (tmptok == "Box") {
                        inset.reset(new InsetBox(buf.params(), tmptok));
-               } else if (tmptok == "CharStyle") {
+               } else if (tmptok == "Flex") {
                        lex.next();
                        string s = lex.getString();
                        InsetLayout il = tclass.insetlayout(from_utf8(s));
@@ -511,15 +486,17 @@ Inset * readInset(Lexer & lex, Buffer const & buf)
                        string tmptok = lex.getString();
                        inset.reset(new InsetWrap(buf.params(), tmptok));
 #if 0
-               } else if (tmptok == "List") {
-                       inset.reset(new InsetList);
                } else if (tmptok == "Theorem") {
                        inset.reset(new InsetList);
 #endif
                } else if (tmptok == "Caption") {
                        inset.reset(new InsetCaption(buf.params()));
+               } else if (tmptok == "Index") {
+                       inset.reset(new InsetIndex(buf.params()));
                } else if (tmptok == "FloatList") {
                        inset.reset(new InsetFloatList);
+               } else if (tmptok == "Info") {
+                       inset.reset(new InsetInfo(buf.params()));
                } else {
                        lyxerr << "unknown Inset type '" << tmptok
                               << "'" << std::endl;
@@ -531,7 +508,7 @@ Inset * readInset(Lexer & lex, Buffer const & buf)
                inset->read(buf, lex);
 
 // FIXME: hack..
-               if (inset->lyxCode() == Inset::MATHMACRO_CODE) {
+               if (inset->lyxCode() == MATHMACRO_CODE) {
                        MathMacroTemplate const * tmpl =
                                static_cast<MathMacroTemplate*>(inset.get());
                        MacroTable::globalMacros().insert