X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetref.h;h=b9e63412de15d4f2f014d28051b573f678f8c85b;hb=3c8aba3b556871fb1100a2f98cd93d5d4e3f70c9;hp=857e651402239dca803e7c966d9645a222724034;hpb=dfe1bc44b44903faf77ef454c98c4c3e56c1d5e3;p=lyx.git diff --git a/src/insets/insetref.h b/src/insets/insetref.h index 857e651402..b9e63412de 100644 --- a/src/insets/insetref.h +++ b/src/insets/insetref.h @@ -4,9 +4,9 @@ * * LyX, The Document Processor * - * Copyright (C) 1997 LyX Team (this file was created this year) + * Copyright 1997 LyX Team (this file was created this year) * - *======================================================*/ + * ====================================================== */ #ifndef INSET_REF_H #define INSET_REF_H @@ -38,20 +38,20 @@ public: InsetRef(string const &, Buffer *); /// InsetRef(InsetCommand const &, Buffer *); - /// - ~InsetRef(); /// - Inset * Clone() { return new InsetRef (getCommand(), master); } + Inset * Clone() const { + return new InsetRef (getCommand(), master); + } /// Inset::Code LyxCode() const { return Inset::REF_CODE; } /// - void Edit(int, int); + void Edit(BufferView *, int, int, unsigned int); /// - unsigned char Editable() const { - return 1; + EDITABLE Editable() const { + return IS_EDITABLE; } /// - bool Display() const { return false; } + bool display() const { return false; } /// string getScreenLabel() const; /// @@ -61,13 +61,13 @@ public: /// void gotoLabel(); /// - int Latex(FILE * file, signed char fragile); + int Latex(std::ostream &, bool fragile, bool free_spc) const; /// - int Latex(string & file, signed char fragile); + int Ascii(std::ostream &) const; /// - int Linuxdoc(string & file); + int Linuxdoc(std::ostream &) const; /// - int DocBook(string & file); + int DocBook(std::ostream &) const; private: /// This function escapes 8-bit characters string escape(string const &) const; @@ -82,7 +82,7 @@ inline void InsetRef::gotoLabel() { if (master) { - master->gotoLabel(getContents()); + master->getUser()->gotoLabel(getContents()); } } #endif