]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetNomencl.h
Fix the computation of broken InsetRef status between sibling documents
[lyx.git] / src / insets / InsetNomencl.h
index 0737545648d41ac4772bd951f6b6b8596d906fe9..d222c6526646593b46cddea87b2af93e77351774 100644 (file)
@@ -26,9 +26,13 @@ class LaTeXFeatures;
 class InsetNomencl : public InsetCommand {
 public:
        ///
-       InsetNomencl(InsetCommandParams const &);
+       InsetNomencl(Buffer * buf, InsetCommandParams const &);
+
        ///
-       docstring screenLabel() const;
+       int docbookGlossary(odocstream &) const;
+
+       /// \name Public functions inherited from Inset class
+       //@{
        ///
        docstring toolTip(BufferView const & bv, int x, int y) const;
        ///
@@ -36,22 +40,43 @@ public:
        /// Updates needed features for this inset.
        void validate(LaTeXFeatures & features) const;
        ///
+       void addToToc(DocIterator const & di, bool output_active,
+                                 UpdateType utype, TocBackend & backend) const;
+       ///
        InsetCode lyxCode() const { return NOMENCL_CODE; }
        ///
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
+       ///
        int docbook(odocstream &, OutputParams const &) const;
        /// Does nothing at the moment.
-       void xhtml(odocstream &, OutputParams const &) const { return; }
-       ///
-       int docbookGlossary(odocstream &) const;
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       //@}
+
+       /// \name Static public methods obligated for InsetCommand derived classes
+       //@{
        ///
        static ParamInfo const & findInfo(std::string const &);
        ///
-       static std::string defaultCommand() { return "nomenclature"; };
+       static std::string defaultCommand() { return "nomenclature"; }
        ///
        static bool isCompatibleCommand(std::string const & s) 
                { return s == "nomenclature"; }
+       //@}
+
 private:
+       /// \name Private functions inherited from Inset class
+       //@{
+       ///
        Inset * clone() const { return new InsetNomencl(*this); }
+       //@}
+
+       /// \name Private functions inherited from InsetCommand class
+       //@{
+       ///
+       docstring screenLabel() const;
+       //@}
+
        /// unique id for this nomenclature entry for docbook export
        docstring nomenclature_entry_id;
 };
@@ -60,13 +85,16 @@ private:
 class InsetPrintNomencl : public InsetCommand {
 public:
        ///
-       InsetPrintNomencl(InsetCommandParams const &);
+       InsetPrintNomencl(Buffer * buf, InsetCommandParams const &);
+
+       /// \name Public functions inherited from Inset class
+       //@{
        /// Updates needed features for this inset.
        void validate(LaTeXFeatures & features) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
-       /// Does nothing at the moment.
-       void xhtml(odocstream &, OutputParams const &) const { return; }
+       /// 
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
        InsetCode lyxCode() const;
        ///
@@ -74,25 +102,40 @@ public:
        ///
        DisplayType display() const { return AlignCenter; }
        ///
-       docstring screenLabel() const;
+       void latex(otexstream &, OutputParams const &) const;
+       ///
+       std::string contextMenuName() const;
+       //@}
+
+       /// \name Static public methods obligated for InsetCommand derived classes
+       //@{
        ///
        static ParamInfo const & findInfo(std::string const &);
        ///
-       static std::string defaultCommand() { return "printnomenclature"; };
+       static std::string defaultCommand() { return "printnomenclature"; }
        ///
        static bool isCompatibleCommand(std::string const & s) 
                { return s == "printnomenclature"; }
+       //@}
+
+private:
+       /// \name Private functions inherited from Inset class
+       //@{
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       Inset * clone() const { return new InsetPrintNomencl(*this); }
        ///
-       docstring contextMenu(BufferView const & bv, int x, int y) const;
-protected:
+       bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & status) const;
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
-       bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
-private:
-       Inset * clone() const { return new InsetPrintNomencl(*this); }
+       docstring layoutName() const { return from_ascii("PrintNomencl"); }
+       //@}
+
+       /// \name Private functions inherited from InsetCommand class
+       //@{
+       ///
+       docstring screenLabel() const;
+       //@}
 };
 
 } // namespace lyx