]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLabel.h
Restore XHTML output for InsetListings.
[lyx.git] / src / insets / InsetLabel.h
index 6e97d511009d71d147ff74db5bd926d3a4881c8a..491d8ecef42ce3216ee0d9e02323ff0bc8778258 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -20,15 +20,23 @@ namespace lyx {
 class InsetLabel : public InsetCommand {
 public:
        ///
-       InsetLabel(InsetCommandParams const &);
+       InsetLabel(Buffer * buf, InsetCommandParams const &);
+
+       /// verify label and update references.
+       /**
+         * Overloaded from Inset::initView.
+         **/
+       void initView();
+
+       ///
+       bool isLabeled() const { return true; }
+
        ///
        docstring screenLabel() const;
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       bool hasSettings() const { return true; }
        ///
        InsetCode lyxCode() const { return LABEL_CODE; }
-       /// Appends \c list with this label
-       void getLabelList(std::vector<docstring> & list) const;
        ///
        int latex(odocstream &, OutputParams const &) const;
        ///
@@ -36,20 +44,30 @@ 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 addToToc(ParConstIterator const &) const;
+       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);
 private:
        ///
        Inset * clone() const { return new InsetLabel(*this); }
+       ///
+       docstring screen_label_;
 };