]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibitem.h
InsetInfo: enable inset dissolve
[lyx.git] / src / insets / InsetBibitem.h
index 700cd4edd64ac21efa04b8935b5420eff0771cdb..ba33732ad0b01d33a7ee6c6ce02d1df6235b508e 100644 (file)
 
 namespace lyx {
 
-/** Used to insert bibitem's information (key and label)
+class BiblioInfo;
 
-  Must be automatically inserted as the first object in a
-  bibliography paragraph.
-  */
-class InsetBibitem : public InsetCommand {
+/////////////////////////////////////////////////////////////////////////
+//
+// InsetBibItem
+//
+/////////////////////////////////////////////////////////////////////////
+
+/// Used to insert bibitem's information (key and label)
+
+//  Must be automatically inserted as the first object in a
+//  bibliography paragraph.
+class InsetBibitem : public InsetCommand
+{
 public:
        ///
-       InsetBibitem(InsetCommandParams const &);
+       InsetBibitem(Buffer *, InsetCommandParams const &);
+       ///
+       ~InsetBibitem();
+
+       ///
+       void updateCommand(docstring const & new_key, bool dummy = false);
+
+       /// \name Public functions inherited from Inset class
+       //@{
+       ///
+       InsetCode lyxCode() const { return BIBITEM_CODE; }
        ///
-       void read(Buffer const &, Lexer & lex);
+       bool hasSettings() const { return true; }
+       /// \copydoc Inset::initView()
+       /// verify label and update references.
+       void initView();
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       bool isLabeled() const { return true; }
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       void read(Lexer & lex);
        ///
-       InsetBase::Code lyxCode() const { return InsetBase::BIBITEM_CODE; }
+       int plaintext(odocstringstream &, OutputParams const &,
+                     size_t max_length = INT_MAX) const;
        ///
-       void setCounter(int);
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
-       int getCounter() const { return counter; }
+       void collectBibKeys(InsetIterator const &, support::FileNameList &) const;
+       /// update the counter of this inset
+       void updateBuffer(ParIterator const &, UpdateType);
+       ///@}
+
+       /// \name Static public methods obligated for InsetCommand derived classes
+       //@{
        ///
-       docstring const getBibLabel() const;
+       static ParamInfo const & findInfo(std::string const &);
        ///
-       int plaintext(Buffer const &, odocstream &, OutputParams const &) const;
-protected:
+       static std::string defaultCommand() { return "bibitem"; }
        ///
-       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
+       static bool isCompatibleCommand(std::string const & s)
+               { return s == "bibitem"; }
+       ///@}
+
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       ///
+       docstring bibLabel() const;
 
+       /// \name Private functions inherited from Inset class
+       //@{
        ///
-       int counter;
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       ///
+       Inset * clone() const { return new InsetBibitem(*this); }
+       /// Is the content of this inset part of the immediate (visible) text sequence?
+       bool isPartOfTextSequence() const { return false; }
+       ///@}
+
+       /// \name Private functions inherited from InsetCommand class
+       //@{
+       ///
+       docstring screenLabel() const;
+       //@}
+
+       friend docstring bibitemWidest(Buffer const & buffer, OutputParams const &);
+
+       /// The label that is set by updateBuffer
+       docstring autolabel_;
        ///
        static int key_counter;
 };
 
 
 /// Return the widest label in the Bibliography.
-docstring const bibitemWidest(Buffer const &);
+docstring bibitemWidest(Buffer const &, OutputParams const &);
 
 
 } // namespace lyx