]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLabel.h
Restore XHTML output for InsetListings.
[lyx.git] / src / insets / InsetLabel.h
index 75a5ed51d4955a09b71cecda3b8a10bfd0892547..491d8ecef42ce3216ee0d9e02323ff0bc8778258 100644 (file)
@@ -20,7 +20,7 @@ namespace lyx {
 class InsetLabel : public InsetCommand {
 public:
        ///
-       InsetLabel(InsetCommandParams const &);
+       InsetLabel(Buffer * buf, InsetCommandParams const &);
 
        /// verify label and update references.
        /**
@@ -34,7 +34,7 @@ public:
        ///
        docstring screenLabel() const;
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       bool hasSettings() const { return true; }
        ///
        InsetCode lyxCode() const { return LABEL_CODE; }
        ///
@@ -44,18 +44,22 @@ public:
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       ///
        static ParamInfo const & findInfo(std::string const &);
        ///
-       static std::string defaultCommand() { return "label"; };
+       static std::string defaultCommand() { return "label"; }
        ///
        static bool isCompatibleCommand(std::string const & s) 
                { return s == "label"; }
        ///
-       void updateLabels(ParIterator const & it);
+       void updateLabels(ParIterator const & it, bool);
        ///
        void addToToc(DocIterator const &);
        ///
        void updateCommand(docstring const & new_label, bool updaterefs = true);
+       ///
+       bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & status) const;
 protected:
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);