1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of*
|
1999-11-15 10:58:38 +00:00
|
|
|
* ======================================================
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1997-2001 The LyX Team.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
1999-11-15 10:58:38 +00:00
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
#ifndef INSET_URL_H
|
|
|
|
#define INSET_URL_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "insetcommand.h"
|
|
|
|
|
|
|
|
struct LaTeXFeatures;
|
|
|
|
|
|
|
|
/** The url inset
|
|
|
|
*/
|
2000-08-04 13:12:30 +00:00
|
|
|
class InsetUrl : public InsetCommand {
|
1999-09-27 18:44:28 +00:00
|
|
|
public:
|
|
|
|
///
|
2000-04-08 17:02:02 +00:00
|
|
|
explicit
|
2001-07-06 15:57:54 +00:00
|
|
|
InsetUrl(InsetCommandParams const &, bool same_id = false);
|
2001-07-20 14:18:48 +00:00
|
|
|
///
|
2001-07-06 15:57:54 +00:00
|
|
|
virtual Inset * clone(Buffer const &, bool same_id = false) const {
|
|
|
|
return new InsetUrl(params(), same_id);
|
2001-06-28 10:25:20 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-29 06:30:53 +00:00
|
|
|
Inset::Code lyxCode() const { return Inset::URL_CODE; }
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-29 06:30:53 +00:00
|
|
|
void validate(LaTeXFeatures &) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-07-28 12:24:16 +00:00
|
|
|
string const getScreenLabel(Buffer const *) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-29 06:30:53 +00:00
|
|
|
EDITABLE editable() const { return IS_EDITABLE; }
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-29 06:30:53 +00:00
|
|
|
void edit(BufferView *, int, int, unsigned int);
|
2001-07-20 14:18:48 +00:00
|
|
|
///
|
|
|
|
void edit(BufferView * bv, bool front = true);
|
|
|
|
///
|
2000-07-27 08:55:59 +00:00
|
|
|
bool display() const { return false; }
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-29 06:30:53 +00:00
|
|
|
int latex(Buffer const *, std::ostream &,
|
2001-07-20 14:18:48 +00:00
|
|
|
bool fragile, bool free_spc) const;
|
2000-03-06 02:42:40 +00:00
|
|
|
///
|
2001-06-29 06:30:53 +00:00
|
|
|
int ascii(Buffer const *, std::ostream &, int linelen) const;
|
2000-04-24 20:58:23 +00:00
|
|
|
///
|
2001-06-29 06:30:53 +00:00
|
|
|
int linuxdoc(Buffer const *, std::ostream &) const;
|
2000-03-06 02:42:40 +00:00
|
|
|
///
|
2001-11-30 11:56:04 +00:00
|
|
|
int docbook(Buffer const *, std::ostream &) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|