]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLabel.h
#5502 add binding for full screen toggle on mac
[lyx.git] / src / insets / InsetLabel.h
index 746a0cbb4a8057f6cc26ed45abbb5e0c01a88cc8..3c9bbd05f6b25257c855bbf60fc2ff30cd0d6752 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.
  */
 
 namespace lyx {
 
-class InsetLabel : public InsetCommand {
+class Counter;
+
+class InsetLabel : public InsetCommand 
+{
 public:
        ///
-       InsetLabel(InsetCommandParams const &);
+       InsetLabel(Buffer * buf, InsetCommandParams const &);
+
+       ///
+       docstring const & activeCounter() const { return active_counter_; }
+       ///
+       docstring const & counterValue() const { return counter_value_; }
+       ///
+       docstring const & prettyCounter() const { return pretty_counter_; }
+       /// Updates only the label string, doesn't handle undo nor references.
+       void updateLabel(docstring const & new_label);
+       /// 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);
+
+       /// \name Public functions inherited from Inset class
+       //@{
+       /// verify label and update references.
+       void initView();
+       ///
+       bool isLabeled() const { return true; }
+       ///
+       bool hasSettings() const { return true; }
+       ///
+       InsetCode lyxCode() const { return LABEL_CODE; }
+       ///
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
+       ///
+       int docbook(odocstream &, OutputParams const &) const;
+       ///
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       void updateBuffer(ParIterator const & it, UpdateType);
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       void addToToc(DocIterator const & di, bool output_active) const;
+       //@}
+
+       /// \name Static public methods obligated for InsetCommand derived classes
+       //@{
        ///
-       InsetBase::Code lyxCode() const { return InsetBase::LABEL_CODE; }
-       /// Appends \c list with this label
-       void getLabelList(Buffer const &, std::vector<docstring> & list) const;
+       static ParamInfo const & findInfo(std::string const &);
        ///
-       int latex(Buffer const &, odocstream &, OutputParams const &) const;
+       static std::string defaultCommand() { return "label"; }
        ///
-       int plaintext(Buffer const &, odocstream &, OutputParams const &) const;
+       static bool isCompatibleCommand(std::string const & s) 
+               { return s == "label"; }
+       //@}
+
+       //FIXME: private
+       /// \name Private functions inherited from InsetCommand class
+       //@{
        ///
-       int docbook(Buffer const &, odocstream &, OutputParams const &) const;
-protected:
-       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
+       docstring screenLabel() const;
+       //@}
+       
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       /// \name Private functions inherited from Inset class
+       //@{
+       ///
+       Inset * clone() const { return new InsetLabel(*this); }
+       ///
+       bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & status) const;
+       ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       //@}
+
+       ///
+       void uniqueLabel(docstring & label) const;
+       ///
+       void updateReferences(docstring const & old_label,
+               docstring const & new_label);
+       ///
+       docstring screen_label_;
+       ///
+       docstring active_counter_;
+       ///
+       docstring counter_value_;
+       ///
+       docstring pretty_counter_;
 };