]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbib.h
clear()->erase() ; lots of using directives for cxx
[lyx.git] / src / insets / insetbib.h
index d32eb34808f9d060db5cfc26555f175cb9c83bd5..a478f646f9f0061e10f7ca4d0d7588d104786563 100644 (file)
@@ -4,8 +4,8 @@
  *
  *           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.
  * 
  * ====================================================== */
 
@@ -18,8 +18,7 @@
 
 #include "insetcommand.h"
 
-// Created by Alejandro 970222
-
+class Buffer;
 
 /** Used to insert citations  
  */
@@ -28,6 +27,7 @@ public:
        ///
        InsetCitation() : InsetCommand("cite") {}
        ///
+       explicit
        InsetCitation(string const & key, string const & note = string());
         ///
        ~InsetCitation();
@@ -38,11 +38,20 @@ public:
        ///
        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;
        }
+       ///
+       struct Holder {
+               InsetCitation * inset;
+               BufferView * view;
+       };
+
+private:
+       ///
+       Holder holder;
 };
 
 
@@ -56,22 +65,24 @@ public:
        ///
        InsetBibKey() : InsetCommand("bibitem") { counter = 1; }
        ///
+       explicit
        InsetBibKey(string const & key, string const & label = string());
        ///
+       explicit
        InsetBibKey(InsetBibKey const *);
        ///
        ~InsetBibKey();
        ///
         Inset * Clone() const { return new InsetBibKey(this); }
        /// Currently \bibitem is used as a LyX2.x command, so we need this method.
-        void Write(ostream &);
+        void Write(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 {
@@ -81,10 +92,18 @@ public:
         void setCounter(int);
         ///
         int  getCounter() const { return counter; }
+       ///
+       struct Holder {
+               InsetBibKey * inset;
+               BufferView * view;
+       };
 
  private:
        ///
         int counter;
+
+       ///
+       Holder holder;
 };
 
 
@@ -97,6 +116,9 @@ public:
        ///
        InsetBibtex(string const & dbase, string const & style,
                    Buffer *);
+       ///
+       ~InsetBibtex();
+
         ///
        Inset * Clone() const {
                return new InsetBibtex(contents, options, 0);
@@ -109,26 +131,33 @@ public:
        ///
        string getScreenLabel() const;
        ///
-       void Edit(int, int);
+       void Edit(BufferView *, int x, int y, unsigned int button);
        /// 
-       int Latex(ostream &, signed char);
+       int Latex(std::ostream &, bool fragile, bool freespace) const;
        ///
-       int Latex(string & file, signed char fragile);
+       string getKeys(char delim);
        ///
-       string getKeys();
-       ///
-       unsigned char Editable() const {
-               return 1;
+       EDITABLE Editable() const {
+               return IS_EDITABLE;
        }
         ///
         bool addDatabase(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