]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetcite.h
index 9c5c8671b5eef7cfc434ad9d4dbeecf3441d3dfa..efa21fd17883dfb5f3e2f1af2832cfc058d81b39 100644 (file)
 class InsetCitation : public InsetCommand {
 public:
        ///
-       InsetCitation(InsetCommandParams const &);
+       InsetCitation(InsetCommandParams const &, bool same_id = false);
        ///
-       Inset * clone(Buffer const &) const {
-               return new InsetCitation(params());
+       Inset * clone(Buffer const &, bool same_id = false) const {
+               return new InsetCitation(params(), same_id);
        }
        ///
-       string const getScreenLabel() const;
+       string const getScreenLabel(Buffer const *) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        Inset::Code lyxCode() const { return Inset::CITE_CODE; }
-        ///
+       ///
        void edit(BufferView *, int, int, unsigned int);
        ///
+       void edit(BufferView * bv, bool front = true);
+       ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
+        ///
+       int latex(Buffer const *, std::ostream &, bool, bool) const;
+       ///
+       void validate(LaTeXFeatures &) const;
 };
 
 #endif // INSET_CITE_H