]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbib.h
Some more changes for updating text-insets.
[lyx.git] / src / insets / insetbib.h
index 3c07f55a2927c602535d08441be4b11bb5c0d838..1c3adc371e56531f00ff575dd49529d469a64d2d 100644 (file)
@@ -1,13 +1,13 @@
 // -*- C++ -*-
 /* This file is part of*
- * ======================================================
+ * ====================================================== 
  *
  *           LyX, The Document Processor
  *      
- *         Copyright (C) 1995 Matthias Ettrich
- *          Copyright (C) 1995-1999 The LyX Team.
+ *           Copyright 1995 Matthias Ettrich
+ *           Copyright 1995-2000 The LyX Team.
  * 
- * ======================================================*/
+ * ====================================================== */
 
 #ifndef INSET_BIB_H
 #define INSET_BIB_H
 #endif
 
 #include "insetcommand.h"
+#include <vector>
 
-// Created by Alejandro 970222
-
-
-/** Used to insert citations  
- */
-class InsetCitation: public InsetCommand {
-public:
-       ///
-       InsetCitation(): InsetCommand("cite") { }
-       ///
-       InsetCitation(string const & key, string const & note = string());
-        ///
-       ~InsetCitation();
-        ///
-        Inset * Clone() { return new InsetCitation(contents, options); }
-       ///
-       string getScreenLabel()const;
-        ///
-       void Edit(int, int);
-        ///
-       unsigned char Editable() const {
-               return 1;
-       }
-};
-
+class Buffer;
 
 /** Used to insert bibitem's information (key and label)
   
@@ -52,24 +29,26 @@ public:
 class InsetBibKey: public InsetCommand {
 public:
        ///
-       InsetBibKey(): InsetCommand("bibitem") { counter = 1; }
+       InsetBibKey() : InsetCommand("bibitem") { counter = 1; }
        ///
+       explicit
        InsetBibKey(string const & key, string const & label = string());
        ///
+       explicit
        InsetBibKey(InsetBibKey const *);
        ///
        ~InsetBibKey();
        ///
-        Inset * Clone() { return new InsetBibKey(this); }
+        Inset * Clone() const { return new InsetBibKey(this); }
        /// Currently \bibitem is used as a LyX2.x command, so we need this method.
-        void Write(FILE *);
+        void Write(Buffer const *, std::ostream &) const;
        ///
        virtual string getScreenLabel() const;
         ///
-       void Edit(int, int);
+       void Edit(BufferView *, int x, int y, unsigned int button);
        ///
-       unsigned char Editable() const {
-               return 1;
+       EDITABLE Editable() const {
+               return IS_EDITABLE;
        }
        /// A user can't neither insert nor delete this inset
        bool Deletable() const {
@@ -79,10 +58,18 @@ public:
         void setCounter(int);
         ///
         int  getCounter() const { return counter; }
-
+       ///
+       struct Holder {
+               InsetBibKey * inset;
+               BufferView * view;
+       };
  private:
        ///
         int counter;
+
+       ///
+       Holder holder;
 };
 
 
@@ -91,14 +78,17 @@ public:
 class InsetBibtex: public InsetCommand {
 public:
        /// 
-       InsetBibtex(): InsetCommand("BibTeX") { owner = 0; }
+       InsetBibtex() : InsetCommand("BibTeX") { owner = 0; }
        ///
        InsetBibtex(string const & dbase, string const & style,
                    Buffer *);
+       ///
+       ~InsetBibtex();
+
         ///
-        ~InsetBibtex();
-        ///
-       Inset * Clone() { return new InsetBibtex(contents, options, 0); }
+       Inset * Clone() const {
+               return new InsetBibtex(getCmdName(), getOptions(), 0);
+       }
        ///  
        Inset::Code LyxCode() const
        {
@@ -107,27 +97,33 @@ public:
        ///
        string getScreenLabel() const;
        ///
-       void Edit(int, int);
+       void Edit(BufferView *, int x, int y, unsigned int button);
        /// 
-       int Latex(FILE *, signed char);
+       int Latex(Buffer const *, std::ostream &, bool fragile, bool freespace) const;
        ///
-       int Latex(string & file, signed char fragile);
+       std::vector< std::pair<string,string> > getKeys() const;
        ///
-       string getKeys();
-       ///
-       unsigned char Editable() const {
-               return 1;
+       EDITABLE Editable() const {
+               return IS_EDITABLE;
        }
         ///
-        bool addDatabase(string const&);
+        bool addDatabase(string const &);
         ///
-        bool delDatabase(string const&);
+        bool delDatabase(string const &);
        ///
-       bool Display() const { return true; }    
+       bool display() const { return true; } 
+
+       struct Holder {
+               InsetBibtex * inset;
+               BufferView * view;
+       };
+
 private:
        ///
-       Buffer *owner;
-};
+       mutable Buffer * owner;
 
+       ///
+       Holder holder;
+};
 
 #endif