mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
8ed9dbabde
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@885 a592a061-630c-0410-9148-cb99ea01b6c8
102 lines
1.8 KiB
C++
102 lines
1.8 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of*
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1997 LyX Team (this file was created this year)
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef INSET_REF_H
|
|
#define INSET_REF_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "insetcommand.h"
|
|
#include "buffer.h"
|
|
|
|
struct LaTeXFeatures;
|
|
|
|
/** The reference inset
|
|
*/
|
|
class InsetRef : public InsetCommand {
|
|
public:
|
|
///
|
|
enum Ref_Flags {
|
|
///
|
|
REF = 0,
|
|
///
|
|
PAGE_REF,
|
|
///
|
|
VREF,
|
|
///
|
|
VPAGE_REF,
|
|
///
|
|
PRETTY_REF,
|
|
///
|
|
REF_LAST = PRETTY_REF,
|
|
///
|
|
REF_FIRST = REF
|
|
};
|
|
|
|
///
|
|
InsetRef() : InsetCommand("ref") { flag = InsetRef::REF; }
|
|
///
|
|
InsetRef(string const &, Buffer *);
|
|
///
|
|
InsetRef(InsetCommand const &, Buffer *);
|
|
///
|
|
Inset * Clone() const {
|
|
return new InsetRef (getCommand(), master);
|
|
}
|
|
///
|
|
Inset::Code LyxCode() const { return Inset::REF_CODE; }
|
|
///
|
|
void Edit(BufferView *, int, int, unsigned int);
|
|
///
|
|
EDITABLE Editable() const {
|
|
return IS_EDITABLE;
|
|
}
|
|
///
|
|
bool display() const { return false; }
|
|
///
|
|
string getScreenLabel() const;
|
|
///
|
|
void Toggle();
|
|
///
|
|
void gotoLabel();
|
|
///
|
|
int Latex(Buffer const *, std::ostream &,
|
|
bool fragile, bool free_spc) const;
|
|
///
|
|
int Ascii(Buffer const *, std::ostream &) const;
|
|
///
|
|
int Linuxdoc(Buffer const *, std::ostream &) const;
|
|
///
|
|
int DocBook(Buffer const *, std::ostream &) const;
|
|
///
|
|
void Validate(LaTeXFeatures & features) const;
|
|
private:
|
|
///
|
|
void GenerateFlag();
|
|
/// This function escapes 8-bit characters
|
|
string escape(string const &) const;
|
|
///
|
|
Ref_Flags flag;
|
|
///
|
|
Buffer * master;
|
|
};
|
|
|
|
|
|
inline
|
|
void InsetRef::gotoLabel()
|
|
{
|
|
if (master) {
|
|
master->getUser()->gotoLabel(getContents());
|
|
}
|
|
}
|
|
#endif
|