]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetNomencl.h
Restore XHTML output for InsetListings.
[lyx.git] / src / insets / InsetNomencl.h
index 87595fd1ea05a471555a79c08bc44553d2c676ff..a296fc9f91a9d5ae2c79df446986591c27aa3d78 100644 (file)
@@ -26,7 +26,7 @@ class LaTeXFeatures;
 class InsetNomencl : public InsetCommand {
 public:
        ///
-       InsetNomencl(InsetCommandParams const &);
+       InsetNomencl(Buffer * buf, InsetCommandParams const &);
        ///
        docstring screenLabel() const;
        ///
@@ -39,6 +39,8 @@ public:
        InsetCode lyxCode() const { return NOMENCL_CODE; }
        ///
        int docbook(odocstream &, OutputParams const &) const;
+       /// Does nothing at the moment.
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
        int docbookGlossary(odocstream &) const;
        ///
@@ -58,14 +60,18 @@ private:
 class InsetPrintNomencl : public InsetCommand {
 public:
        ///
-       InsetPrintNomencl(InsetCommandParams const &);
+       InsetPrintNomencl(Buffer * buf, InsetCommandParams const &);
        /// Updates needed features for this inset.
        void validate(LaTeXFeatures & features) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
+       /// Does nothing at the moment.
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
        InsetCode lyxCode() const;
        ///
+       bool hasSettings() const { return true; }
+       ///
        DisplayType display() const { return AlignCenter; }
        ///
        docstring screenLabel() const;
@@ -78,6 +84,13 @@ public:
                { return s == "printnomenclature"; }
        ///
        int latex(odocstream &, OutputParams const &) const;
+       ///
+       docstring contextMenu(BufferView const & bv, int x, int y) const;
+protected:
+       ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       ///
+       bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
 private:
        Inset * clone() const { return new InsetPrintNomencl(*this); }
 };