]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLabel.h
requires is a keyword in C++2a
[lyx.git] / src / insets / InsetLabel.h
index 65a6d3aa20fa3f5b16a739f1ad52da99021f8b56..ab54e5e959f4f24e8c3d917a3011502ed112fffd 100644 (file)
@@ -19,7 +19,7 @@ namespace lyx {
 
 class Counter;
 
-class InsetLabel : public InsetCommand 
+class InsetLabel : public InsetCommand
 {
 public:
        ///
@@ -32,7 +32,7 @@ public:
        ///
        docstring const & prettyCounter() const { return pretty_counter_; }
        /// Updates only the label string, doesn't handle undo nor references.
-       void updateLabel(docstring const & new_label);
+       void updateLabel(docstring const & new_label, bool const active = true);
        /// Updates the label and the references to it.
        /// Will also handle undo/redo if \p cursor is passed.
        void updateLabelAndRefs(docstring const & new_label, Cursor * cursor = 0);
@@ -48,6 +48,8 @@ public:
        ///
        InsetCode lyxCode() const { return LABEL_CODE; }
        ///
+       void latex(otexstream & os, OutputParams const & runparams_in) const;
+       ///
        int plaintext(odocstringstream & ods, OutputParams const & op,
                      size_t max_length = INT_MAX) const;
        ///
@@ -55,7 +57,7 @@ public:
        ///
        docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
-       void updateBuffer(ParIterator const & it, UpdateType);
+       void updateBuffer(ParIterator const & it, UpdateType, bool const deleted = false);
        ///
        void addToToc(DocIterator const & di, bool output_active,
                                  UpdateType utype, TocBackend & backend) const;
@@ -70,7 +72,7 @@ public:
        ///
        static std::string defaultCommand() { return "label"; }
        ///
-       static bool isCompatibleCommand(std::string const & s) 
+       static bool isCompatibleCommand(std::string const & s)
                { return s == "label"; }
        //@}
 
@@ -80,7 +82,7 @@ public:
        ///
        docstring screenLabel() const;
        //@}
-       
+
 private:
        /// \name Private functions inherited from Inset class
        //@{