]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetNomencl.cpp
Fix GRAPHICS_EDIT of InsetGraphics
[lyx.git] / src / insets / InsetNomencl.cpp
index 83e66e9a78e3b927899d363dd6091247f1b9b794..10aef0f51d62d63f2bbbd857fc8cff8bbef4a2f7 100644 (file)
 #include "Buffer.h"
 #include "DispatchResult.h"
 #include "FuncRequest.h"
-#include "gettext.h"
+#include "support/gettext.h"
 #include "InsetIterator.h"
 #include "LaTeXFeatures.h"
 #include "MetricsInfo.h"
 #include "sgml.h"
 
+#include "support/docstream.h"
+
+using namespace std;
 
 namespace lyx {
 
-using std::string;
 
+/////////////////////////////////////////////////////////////////////
+//
+// InsetPrintNomencl
+//
+/////////////////////////////////////////////////////////////////////
 
 InsetNomencl::InsetNomencl(InsetCommandParams const & p)
        : InsetCommand(p, "nomenclature"),
@@ -34,14 +41,25 @@ InsetNomencl::InsetNomencl(InsetCommandParams const & p)
 {}
 
 
-docstring const InsetNomencl::getScreenLabel(Buffer const &) const
+ParamInfo const & InsetNomencl::findInfo(string const & /* cmdName */)
+{
+       static ParamInfo param_info_;
+       if (param_info_.empty()) {
+               param_info_.add("prefix", ParamInfo::LATEX_OPTIONAL);
+               param_info_.add("symbol", ParamInfo::LATEX_REQUIRED);
+               param_info_.add("description", ParamInfo::LATEX_REQUIRED);
+       }
+       return param_info_;
+}
+
+
+docstring InsetNomencl::screenLabel() const
 {
        return _("Nom");
 }
 
 
-int InsetNomencl::docbook(Buffer const &, odocstream & os,
-               OutputParams const &) const
+int InsetNomencl::docbook(odocstream & os, OutputParams const &) const
 {
        os << "<glossterm linkend=\"" << nomenclature_entry_id << "\">"
           << sgml::escapeString(getParam("symbol"))
@@ -70,29 +88,38 @@ void InsetNomencl::validate(LaTeXFeatures & features) const
 }
 
 
-InsetCode InsetNomencl::lyxCode() const
-{
-       return NOMENCL_CODE;
-}
-
+/////////////////////////////////////////////////////////////////////
+//
+// InsetPrintNomencl
+//
+/////////////////////////////////////////////////////////////////////
 
 InsetPrintNomencl::InsetPrintNomencl(InsetCommandParams const & p)
        : InsetCommand(p, string())
 {}
 
 
-docstring const InsetPrintNomencl::getScreenLabel(Buffer const &) const
+ParamInfo const & InsetPrintNomencl::findInfo(string const & /* cmdName */)
+{
+       static ParamInfo param_info_;
+       if (param_info_.empty()) {
+               param_info_.add("labelwidth", ParamInfo::LATEX_REQUIRED);
+       }
+       return param_info_;
+}
+
+
+docstring InsetPrintNomencl::screenLabel() const
 {
        return _("Nomenclature");
 }
 
 
-int InsetPrintNomencl::docbook(Buffer const & buf, odocstream & os,
-               OutputParams const &) const
+int InsetPrintNomencl::docbook(odocstream & os, OutputParams const &) const
 {
        os << "<glossary>\n";
        int newlines = 2;
-       for (InsetIterator it = inset_iterator_begin(buf.inset()); it;) {
+       for (InsetIterator it = inset_iterator_begin(buffer().inset()); it;) {
                if (it->lyxCode() == NOMENCL_CODE) {
                        newlines += static_cast<InsetNomencl const &>(*it).docbookGlossary(os);
                        ++it;