]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.h
Rename ascii to plaintext and LatexRunParams to OutputParams.
[lyx.git] / src / insets / insetcite.h
index 832b3024bea2d52460120d0a2ddf09ac19e1cc99..6cb9b5e2f10bdd19274d3cc7b0d1301e90955e80 100644 (file)
@@ -5,17 +5,14 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Angus Leeming
- * \author Herbert Voss
+ * \author Herbert Voß
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSET_CITE_H
 #define INSET_CITE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcommand.h"
 
 class InsetCitation : public InsetCommand {
 public:
        ///
-       InsetCitation(InsetCommandParams const &, bool same_id = false);
+       InsetCitation(InsetCommandParams const &);
        ///
-       Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetCitation(params(), same_id);
+       ~InsetCitation();
+       ///
+       std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetCitation(params()));
        }
        ///
-       string const getScreenLabel(Buffer const *) const;
+       std::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, mouse_button::state);
+       InsetOld::Code lyxCode() const { return InsetOld::CITE_CODE; }
        ///
-       void edit(BufferView * bv, bool front = true);
+       int plaintext(Buffer const &, std::ostream &, int linelen) const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
-       ///
-       int latex(Buffer const *, std::ostream &, bool, bool) const;
+       int latex(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
        void validate(LaTeXFeatures &) const;
+protected:
+       ///
+       virtual
+       DispatchResult
+       priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &);
 private:
        struct Cache {
                ///
@@ -63,15 +64,15 @@ private:
                ///
                InsetCommandParams params;
                ///
-               string generated_label;
+               std::string generated_label;
                ///
-               string screen_label;
+               std::string screen_label;
        };
 
        /// This function does the donkey work of creating the pretty label
-       string const generateLabel(Buffer const *) const;
+       std::string const generateLabel(Buffer const &) const;
        ///
-       Cache::Style getStyle(Buffer const * buffer) const;
+       Cache::Style getStyle(Buffer const & buffer) const;
 
        ///
        mutable Cache cache;