]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetNomencl.h
XHTML/DocBook: merge code duplicates for vertical alignment.
[features.git] / src / insets / InsetNomencl.h
index 4f8e9d79bc46ef863fde531d5cb16bcd8c608f17..362cd4699f6e69bc607444f7c93c055d6e550fd5 100644 (file)
@@ -27,33 +27,52 @@ class InsetNomencl : public InsetCommand {
 public:
        ///
        InsetNomencl(Buffer * buf, InsetCommandParams const &);
+
+       /// \name Public functions inherited from Inset class
+       //@{
        ///
-       docstring screenLabel() const;
-       ///
-       docstring toolTip(BufferView const & bv, int x, int y) const;
+       docstring toolTip(BufferView const & bv, int x, int y) const override;
        ///
-       bool hasSettings() const { return true; }
+       bool hasSettings() const override { return true; }
        /// Updates needed features for this inset.
-       void validate(LaTeXFeatures & features) const;
+       void validate(LaTeXFeatures & features) const override;
        ///
-       InsetCode lyxCode() const { return NOMENCL_CODE; }
+       void addToToc(DocIterator const & di, bool output_active,
+                                 UpdateType utype, TocBackend & backend) const override;
        ///
-       int docbook(odocstream &, OutputParams const &) const;
-       /// Does nothing at the moment.
-       docstring xhtml(odocstream &, OutputParams const &) const;
+       InsetCode lyxCode() const override { return NOMENCL_CODE; }
        ///
-       int docbookGlossary(odocstream &) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const override;
+       ///
+       void docbook(XMLStream &, OutputParams const &) const override;
+       /// Does nothing at the moment.
+       docstring xhtml(XMLStream &, OutputParams const &) const override;
+       //@}
+
+       /// \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) 
+       static bool isCompatibleCommand(std::string const & s)
                { return s == "nomenclature"; }
+       //@}
+
 private:
-       Inset * clone() const { return new InsetNomencl(*this); }
-       /// unique id for this nomenclature entry for docbook export
-       docstring nomenclature_entry_id;
+       /// \name Private functions inherited from Inset class
+       //@{
+       ///
+       Inset * clone() const override { return new InsetNomencl(*this); }
+       //@}
+
+       /// \name Private functions inherited from InsetCommand class
+       //@{
+       ///
+       docstring screenLabel() const override;
+       //@}
 };
 
 
@@ -61,38 +80,56 @@ class InsetPrintNomencl : public InsetCommand {
 public:
        ///
        InsetPrintNomencl(Buffer * buf, InsetCommandParams const &);
+
+       /// \name Public functions inherited from Inset class
+       //@{
        /// Updates needed features for this inset.
-       void validate(LaTeXFeatures & features) const;
+       void validate(LaTeXFeatures & features) const override;
        ///
-       int docbook(odocstream &, OutputParams const &) const;
-       /// Does nothing at the moment.
-       docstring xhtml(odocstream &, OutputParams const &) const;
+       void docbook(XMLStream &, OutputParams const &) const override;
+       ///
+       docstring xhtml(XMLStream &, OutputParams const &) const override;
        ///
-       InsetCode lyxCode() const;
+       InsetCode lyxCode() const override;
        ///
-       bool hasSettings() const { return true; }
+       bool hasSettings() const override { return true; }
        ///
-       DisplayType display() const { return AlignCenter; }
+       int rowFlags() const override { return Display; }
        ///
-       docstring screenLabel() const;
+       void latex(otexstream &, OutputParams const &) const override;
+       ///
+       std::string contextMenuName() const override;
+       //@}
+
+       /// \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) 
+       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 override { 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 override;
        ///
-       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       void doDispatch(Cursor & cur, FuncRequest & cmd) override;
        ///
-       bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
-private:
-       Inset * clone() const { return new InsetPrintNomencl(*this); }
+       docstring layoutName() const override { return from_ascii("PrintNomencl"); }
+       //@}
+
+       /// \name Private functions inherited from InsetCommand class
+       //@{
+       ///
+       docstring screenLabel() const override;
+       //@}
 };
 
 } // namespace lyx