1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
2002-03-21 17:09:55 +00:00
|
|
|
* ======================================================
|
|
|
|
*
|
1999-09-27 18:44:28 +00:00
|
|
|
* LyX, The Document Processor
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 the LyX Team.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
1999-11-15 10:58:38 +00:00
|
|
|
* ====================================================== */
|
1999-11-04 01:40:20 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
#ifndef INSET_H
|
|
|
|
#define INSET_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2000-05-19 16:46:01 +00:00
|
|
|
#include <vector>
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "LString.h"
|
2001-02-23 16:10:03 +00:00
|
|
|
#include "commandtags.h"
|
2002-05-26 17:33:14 +00:00
|
|
|
#include "frontends/mouse_state.h"
|
2002-08-06 22:38:44 +00:00
|
|
|
#include "WordLangTuple.h"
|
2001-07-24 10:13:19 +00:00
|
|
|
#include "LColor.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
class LyXFont;
|
2000-02-22 00:36:17 +00:00
|
|
|
class BufferView;
|
2000-06-12 11:27:15 +00:00
|
|
|
class Buffer;
|
2000-06-21 15:07:57 +00:00
|
|
|
class Painter;
|
2000-07-04 11:30:07 +00:00
|
|
|
class LyXText;
|
2001-06-25 00:06:33 +00:00
|
|
|
class LyXLex;
|
2001-07-06 15:57:54 +00:00
|
|
|
class Paragraph;
|
|
|
|
class LyXCursor;
|
2000-02-22 00:36:17 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
struct LaTeXFeatures;
|
|
|
|
|
2002-07-05 21:24:15 +00:00
|
|
|
namespace grfx {
|
|
|
|
class PreviewLoader;
|
|
|
|
}
|
2000-03-02 02:19:43 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/// Insets
|
|
|
|
class Inset {
|
|
|
|
public:
|
1999-11-15 10:58:38 +00:00
|
|
|
/** This is not quite the correct place for this enum. I think
|
|
|
|
the correct would be to let each subclass of Inset declare
|
|
|
|
its own enum code. Actually the notion of an Inset::Code
|
|
|
|
should be avoided, but I am not sure how this could be done
|
|
|
|
in a cleaner way. */
|
1999-09-27 18:44:28 +00:00
|
|
|
enum Code {
|
|
|
|
///
|
|
|
|
NO_CODE,
|
|
|
|
///
|
|
|
|
TOC_CODE, // do these insets really need a code? (ale)
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
QUOTE_CODE,
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
|
|
|
MARK_CODE,
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
REF_CODE, // 5
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
|
|
|
URL_CODE,
|
|
|
|
///
|
|
|
|
HTMLURL_CODE,
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
SEPARATOR_CODE,
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
|
|
|
ENDING_CODE,
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
LABEL_CODE, // 10
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2002-08-04 23:11:50 +00:00
|
|
|
NOTE_CODE,
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
|
|
|
ACCENT_CODE,
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
MATH_CODE,
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
|
|
|
INDEX_CODE,
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
INCLUDE_CODE, // 15
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
|
|
|
GRAPHICS_CODE,
|
|
|
|
///
|
|
|
|
PARENT_CODE,
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
BIBTEX_CODE,
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2000-02-29 02:19:17 +00:00
|
|
|
TEXT_CODE,
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
ERT_CODE, // 20
|
2000-03-31 10:35:53 +00:00
|
|
|
///
|
2000-03-08 13:52:57 +00:00
|
|
|
FOOT_CODE,
|
|
|
|
///
|
|
|
|
MARGIN_CODE,
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
FLOAT_CODE,
|
2000-06-28 13:35:52 +00:00
|
|
|
///
|
|
|
|
MINIPAGE_CODE,
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
SPECIALCHAR_CODE, // 25
|
2000-04-03 11:36:35 +00:00
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
TABULAR_CODE,
|
|
|
|
///
|
2000-07-04 19:16:35 +00:00
|
|
|
EXTERNAL_CODE,
|
2001-07-24 22:08:49 +00:00
|
|
|
#if 0
|
2000-07-04 19:16:35 +00:00
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
THEOREM_CODE,
|
2001-07-24 22:08:49 +00:00
|
|
|
#endif
|
2000-07-18 17:45:27 +00:00
|
|
|
///
|
2000-11-02 16:31:05 +00:00
|
|
|
CAPTION_CODE,
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
MATHMACRO_CODE, // 30
|
2001-01-15 18:54:31 +00:00
|
|
|
///
|
2001-01-31 20:39:53 +00:00
|
|
|
ERROR_CODE,
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
CITE_CODE,
|
|
|
|
///
|
2001-07-23 09:11:14 +00:00
|
|
|
FLOAT_LIST_CODE,
|
|
|
|
///
|
|
|
|
INDEX_PRINT_CODE
|
2000-03-08 13:52:57 +00:00
|
|
|
};
|
|
|
|
|
2000-07-04 11:30:07 +00:00
|
|
|
///
|
2000-09-26 13:54:57 +00:00
|
|
|
enum {
|
|
|
|
///
|
|
|
|
TEXT_TO_INSET_OFFSET = 2
|
|
|
|
};
|
2000-07-04 11:30:07 +00:00
|
|
|
|
2000-09-26 13:54:57 +00:00
|
|
|
///
|
2000-03-08 13:52:57 +00:00
|
|
|
enum EDITABLE {
|
2000-09-26 13:54:57 +00:00
|
|
|
///
|
|
|
|
NOT_EDITABLE = 0,
|
|
|
|
///
|
|
|
|
IS_EDITABLE,
|
|
|
|
///
|
|
|
|
HIGHLY_EDITABLE
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
///
|
2001-07-24 15:07:09 +00:00
|
|
|
Inset();
|
|
|
|
///
|
|
|
|
Inset(Inset const & in, bool same_id = false);
|
|
|
|
///
|
1999-11-04 01:40:20 +00:00
|
|
|
virtual ~Inset() {}
|
2000-02-10 17:53:36 +00:00
|
|
|
///
|
2000-07-05 14:57:48 +00:00
|
|
|
virtual int ascent(BufferView *, LyXFont const &) const = 0;
|
2000-02-10 17:53:36 +00:00
|
|
|
///
|
2000-07-05 14:57:48 +00:00
|
|
|
virtual int descent(BufferView *, LyXFont const &) const = 0;
|
2000-02-10 17:53:36 +00:00
|
|
|
///
|
2000-07-05 14:57:48 +00:00
|
|
|
virtual int width(BufferView *, LyXFont const &) const = 0;
|
2000-02-10 17:53:36 +00:00
|
|
|
///
|
2000-06-21 15:07:57 +00:00
|
|
|
virtual void draw(BufferView *, LyXFont const &,
|
2000-06-23 15:02:46 +00:00
|
|
|
int baseline, float & x, bool cleared) const = 0;
|
2000-06-16 15:13:25 +00:00
|
|
|
/// update the inset representation
|
2000-07-15 23:51:46 +00:00
|
|
|
virtual void update(BufferView *, LyXFont const &, bool = false)
|
2000-06-21 15:07:57 +00:00
|
|
|
{}
|
1999-09-27 18:44:28 +00:00
|
|
|
/// what appears in the minibuffer when opening
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual string const editMessage() const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2002-05-26 17:33:14 +00:00
|
|
|
virtual void edit(BufferView *, int x, int y, mouse_button::state button);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-07-20 14:18:48 +00:00
|
|
|
virtual void edit(BufferView *, bool front = true);
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual EDITABLE editable() const;
|
2000-06-12 11:27:15 +00:00
|
|
|
/// This is called when the user clicks inside an inset
|
2002-05-26 17:33:14 +00:00
|
|
|
virtual void insetButtonPress(BufferView *, int, int, mouse_button::state) {}
|
2000-06-12 11:27:15 +00:00
|
|
|
/// This is called when the user releases the button inside an inset
|
2001-12-17 13:33:22 +00:00
|
|
|
// the bool return is used to see if we opened a dialog so that we can
|
2002-02-28 10:43:24 +00:00
|
|
|
// check this from an outer inset and open the dialog of the
|
|
|
|
// outer inset if that one has one!
|
2002-05-26 17:33:14 +00:00
|
|
|
virtual bool insetButtonRelease(BufferView *, int, int, mouse_button::state)
|
2002-02-28 10:43:24 +00:00
|
|
|
{ return editable() == IS_EDITABLE; }
|
2001-07-12 13:41:12 +00:00
|
|
|
/// This is called when the user moves the mouse inside an inset
|
2002-05-26 17:33:14 +00:00
|
|
|
virtual void insetMotionNotify(BufferView *, int , int, mouse_button::state) {}
|
2000-04-19 14:42:19 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual bool isTextInset() const { return false; }
|
2000-06-21 15:07:57 +00:00
|
|
|
///
|
|
|
|
virtual bool doClearArea() const { return true; }
|
2000-03-31 10:35:53 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual bool autoDelete() const;
|
2001-07-19 08:52:59 +00:00
|
|
|
/// returns true the inset can hold an inset of given type
|
|
|
|
virtual bool insetAllowed(Inset::Code) const { return false; }
|
|
|
|
/// wrapper around the above
|
2001-07-30 11:56:00 +00:00
|
|
|
bool insetAllowed(Inset * in) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual void write(Buffer const *, std::ostream &) const = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual void read(Buffer const *, LyXLex & lex) = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
/** returns the number of rows (\n's) of generated tex code.
|
2001-04-04 20:40:16 +00:00
|
|
|
fragile == true means, that the inset should take care about
|
|
|
|
fragile commands by adding a \protect before.
|
|
|
|
If the free_spc (freespacing) variable is set, then this inset
|
|
|
|
is in a free-spacing paragraph.
|
|
|
|
*/
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual int latex(Buffer const *, std::ostream &, bool fragile,
|
2000-03-09 23:58:55 +00:00
|
|
|
bool free_spc) const = 0;
|
2000-04-24 20:58:23 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual int ascii(Buffer const *,
|
2002-03-21 17:09:55 +00:00
|
|
|
std::ostream &, int linelen = 0) const = 0;
|
2000-03-06 02:42:40 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual int linuxdoc(Buffer const *, std::ostream &) const = 0;
|
2000-03-06 02:42:40 +00:00
|
|
|
///
|
2002-06-18 15:44:30 +00:00
|
|
|
virtual int docbook(Buffer const *, std::ostream &, bool) const = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
/// Updates needed features for this inset.
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual void validate(LaTeXFeatures & features) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual bool deletable() const;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/// returns LyX code associated with the inset. Used for TOC, ...)
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual Inset::Code lyxCode() const { return NO_CODE; }
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
virtual std::vector<string> const getLabelList() const {
|
2000-05-19 16:46:01 +00:00
|
|
|
return std::vector<string>();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///
|
2001-07-06 15:57:54 +00:00
|
|
|
virtual Inset * clone(Buffer const &, bool same_ids = false) const = 0;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/// returns true to override begin and end inset in file
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual bool directWrite() const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/// Returns true if the inset should be centered alone
|
2000-07-04 11:30:07 +00:00
|
|
|
virtual bool display() const { return false; }
|
1999-09-27 18:44:28 +00:00
|
|
|
/// Changes the display state of the inset
|
2000-07-04 11:30:07 +00:00
|
|
|
virtual void display(bool) {}
|
|
|
|
///
|
|
|
|
/// returns true if this inset needs a row on it's own
|
|
|
|
///
|
|
|
|
virtual bool needFullRow() const { return false; }
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-07-24 22:08:49 +00:00
|
|
|
void setInsetName(string const & s) { name_ = s; }
|
2000-04-19 14:42:19 +00:00
|
|
|
///
|
2001-07-24 22:08:49 +00:00
|
|
|
string const & getInsetName() const { return name_; }
|
2000-04-19 14:42:19 +00:00
|
|
|
///
|
2000-09-26 13:54:57 +00:00
|
|
|
void setOwner(Inset * inset) { owner_ = inset; }
|
2000-04-19 14:42:19 +00:00
|
|
|
///
|
2000-09-26 13:54:57 +00:00
|
|
|
Inset * owner() const { return owner_; }
|
2000-04-19 14:42:19 +00:00
|
|
|
///
|
2001-12-12 09:56:03 +00:00
|
|
|
void parOwner(Paragraph * par) { par_owner_ = par; }
|
|
|
|
///
|
|
|
|
Paragraph * parOwner() const {return par_owner_; }
|
|
|
|
///
|
2001-07-24 10:13:19 +00:00
|
|
|
void setBackgroundColor(LColor::color);
|
|
|
|
///
|
|
|
|
LColor::color backgroundColor() const;
|
|
|
|
///
|
2000-05-15 14:49:36 +00:00
|
|
|
int x() const { return top_x; }
|
|
|
|
///
|
|
|
|
int y() const { return top_baseline; }
|
2000-09-26 13:54:57 +00:00
|
|
|
//
|
|
|
|
// because we could have fake text insets and have to call this
|
|
|
|
// inside them without cast!!!
|
2000-07-07 15:00:56 +00:00
|
|
|
///
|
2001-04-04 20:40:16 +00:00
|
|
|
virtual LyXText * getLyXText(BufferView const *,
|
|
|
|
bool const recursive = false) const;
|
2000-09-26 13:54:57 +00:00
|
|
|
///
|
|
|
|
virtual void deleteLyXText(BufferView *, bool = true) const {}
|
|
|
|
///
|
2001-06-13 12:01:46 +00:00
|
|
|
virtual void resizeLyXText(BufferView *, bool /*force*/= false) const {}
|
2000-09-26 13:54:57 +00:00
|
|
|
/// returns the actuall scroll-value
|
2001-04-27 14:03:25 +00:00
|
|
|
virtual int scroll(bool recursive=true) const {
|
|
|
|
if (!recursive || !owner_)
|
|
|
|
return scx;
|
|
|
|
return 0;
|
|
|
|
}
|
2001-07-06 15:57:54 +00:00
|
|
|
/// try to get a paragraph pointer from it's id if we have a
|
|
|
|
/// paragraph to give back!
|
|
|
|
virtual Paragraph * getParFromID(int /* id */) const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/// try to get a inset pointer from it's id if we have
|
|
|
|
/// an inset to give back!
|
|
|
|
virtual Inset * getInsetFromID(int /* id */) const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/// if this insets owns paragraphs (f.ex. InsetText) then it
|
|
|
|
/// should return it's very first one!
|
|
|
|
virtual Paragraph * firstParagraph() const {
|
|
|
|
return 0;
|
|
|
|
}
|
2001-09-01 21:26:34 +00:00
|
|
|
|
|
|
|
///
|
|
|
|
virtual Paragraph * getFirstParagraph(int /*num*/) const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
/// return the cursor if we own one otherwise giv'em just the
|
|
|
|
/// BufferView cursor to work with.
|
|
|
|
virtual LyXCursor const & cursor(BufferView * bview) const;
|
|
|
|
/// id functions
|
|
|
|
int id() const;
|
2001-07-30 11:56:00 +00:00
|
|
|
///
|
2001-07-06 15:57:54 +00:00
|
|
|
void id(int id_arg);
|
2001-04-27 14:03:25 +00:00
|
|
|
|
2001-07-19 08:52:59 +00:00
|
|
|
/// used to toggle insets
|
|
|
|
// is the inset open?
|
|
|
|
virtual bool isOpen() const { return false; }
|
2001-07-24 22:08:49 +00:00
|
|
|
/// open the inset
|
|
|
|
virtual void open(BufferView *) {}
|
|
|
|
/// close the inset
|
2001-08-07 15:07:36 +00:00
|
|
|
virtual void close(BufferView *) const {}
|
2001-07-27 12:03:36 +00:00
|
|
|
/// check if the font of the char we want inserting is correct
|
|
|
|
/// and modify it if it is not.
|
2001-07-30 11:56:00 +00:00
|
|
|
virtual bool checkInsertChar(LyXFont &);
|
2001-08-01 15:42:53 +00:00
|
|
|
/// we need this here because collapsed insets are only EDITABLE
|
|
|
|
virtual void setFont(BufferView *, LyXFont const &,
|
2002-03-21 17:09:55 +00:00
|
|
|
bool toggleall = false, bool selectall = false);
|
2001-10-19 15:40:01 +00:00
|
|
|
///
|
|
|
|
// needed for spellchecking text
|
|
|
|
///
|
|
|
|
virtual bool allowSpellcheck() { return false; }
|
2001-11-13 14:47:35 +00:00
|
|
|
|
2002-01-08 14:24:49 +00:00
|
|
|
// should this inset be handled like a normal charater
|
|
|
|
virtual bool isChar() const { return false; }
|
2001-11-13 14:47:35 +00:00
|
|
|
// is this equivalent to a letter?
|
|
|
|
virtual bool isLetter() const { return false; }
|
2002-02-13 10:37:28 +00:00
|
|
|
// is this equivalent to a space (which is BTW different from
|
|
|
|
// a line separator)?
|
2001-11-13 14:47:35 +00:00
|
|
|
virtual bool isSpace() const { return false; }
|
2002-02-13 10:37:28 +00:00
|
|
|
// should we break lines after this inset?
|
|
|
|
virtual bool isLineSeparator() const { return false; }
|
|
|
|
// if this inset has paragraphs should they be output all as default
|
2002-01-19 17:05:24 +00:00
|
|
|
// paragraphs with "Standard" layout?
|
2002-01-08 14:24:49 +00:00
|
|
|
virtual bool forceDefaultParagraphs(Inset const *) const;
|
2002-07-23 21:03:38 +00:00
|
|
|
/** returns true if, when outputing LaTeX, font changes should
|
|
|
|
be closed before generating this inset. This is needed for
|
|
|
|
insets that may contain several paragraphs */
|
|
|
|
virtual bool noFontChange() const { return false; }
|
2002-02-20 14:55:17 +00:00
|
|
|
//
|
|
|
|
virtual void getDrawFont(LyXFont &) const {}
|
|
|
|
/* needed for widths which are % of something
|
|
|
|
returns the value of \textwidth in this inset. Most of the
|
|
|
|
time this is the width of the workarea, but if there is a
|
|
|
|
minipage somewhere, it will be the width of this minipage */
|
2002-01-19 17:05:24 +00:00
|
|
|
virtual int latexTextWidth(BufferView *) const;
|
2001-11-13 14:47:35 +00:00
|
|
|
|
2002-07-05 21:24:15 +00:00
|
|
|
/** Adds a LaTeX snippet to the Preview Loader for transformation
|
2002-08-01 17:28:59 +00:00
|
|
|
* into a bitmap image. Does not start the laoding process.
|
2002-07-05 21:24:15 +00:00
|
|
|
*
|
|
|
|
* Most insets have no interest in this capability, so the method
|
|
|
|
* defaults to empty.
|
|
|
|
*/
|
2002-08-01 17:28:59 +00:00
|
|
|
virtual void addPreview(grfx::PreviewLoader &) const {}
|
|
|
|
|
|
|
|
/** Find the PreviewLoader, add a LaTeX snippet to it and
|
|
|
|
* start the loading process.
|
|
|
|
*
|
|
|
|
* Most insets have no interest in this capability, so the method
|
|
|
|
* defaults to empty.
|
|
|
|
*/
|
|
|
|
virtual void generatePreview() const {}
|
2002-07-05 21:24:15 +00:00
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
protected:
|
|
|
|
///
|
|
|
|
mutable int top_x;
|
2001-04-04 20:40:16 +00:00
|
|
|
///
|
2001-08-07 15:07:36 +00:00
|
|
|
mutable bool topx_set; /* have we already drawn ourself! */
|
|
|
|
///
|
2000-05-15 14:49:36 +00:00
|
|
|
mutable int top_baseline;
|
2001-04-04 20:40:16 +00:00
|
|
|
///
|
2000-08-07 15:21:05 +00:00
|
|
|
mutable int scx;
|
2001-07-06 15:57:54 +00:00
|
|
|
///
|
|
|
|
unsigned int id_;
|
|
|
|
///
|
|
|
|
static unsigned int inset_id;
|
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
private:
|
|
|
|
///
|
|
|
|
Inset * owner_;
|
2001-12-12 09:56:03 +00:00
|
|
|
/// the paragraph in which this inset has been inserted
|
|
|
|
Paragraph * par_owner_;
|
2000-04-19 14:42:19 +00:00
|
|
|
///
|
2001-07-24 22:08:49 +00:00
|
|
|
string name_;
|
2001-07-24 10:13:19 +00:00
|
|
|
///
|
|
|
|
LColor::color background_color_;
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
inline
|
|
|
|
bool Inset::insetAllowed(Inset * in) const
|
2002-03-21 17:09:55 +00:00
|
|
|
{
|
|
|
|
return insetAllowed(in->lyxCode());
|
2001-07-30 11:56:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline
|
|
|
|
bool Inset::checkInsertChar(LyXFont &)
|
|
|
|
{
|
2001-11-22 07:29:54 +00:00
|
|
|
return false;
|
2001-07-30 11:56:00 +00:00
|
|
|
}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// Updatable Insets. These insets can be locked and receive
|
|
|
|
// directly user interaction. Currently used only for mathed.
|
|
|
|
// Note that all pure methods from Inset class are pure here too.
|
2002-03-21 17:09:55 +00:00
|
|
|
// [Alejandro 080596]
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/** Extracted from Matthias notes:
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
|
|
|
* An inset can simple call LockInset in it's edit call and *ONLY*
|
2001-04-04 20:40:16 +00:00
|
|
|
* in it's edit call.
|
|
|
|
*
|
2002-03-21 17:09:55 +00:00
|
|
|
* Unlocking is either done by LyX or the inset itself with a
|
2001-04-04 20:40:16 +00:00
|
|
|
* UnlockInset-call
|
|
|
|
*
|
|
|
|
* During the lock, all button and keyboard events will be modified
|
|
|
|
* and send to the inset through the following inset-features. Note that
|
2001-06-28 10:25:20 +00:00
|
|
|
* Inset::insetUnlock will be called from inside UnlockInset. It is meant
|
2001-04-04 20:40:16 +00:00
|
|
|
* to contain the code for restoring the menus and things like this.
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2001-04-04 20:40:16 +00:00
|
|
|
* If a inset wishes any redraw and/or update it just has to call
|
2002-02-28 14:06:24 +00:00
|
|
|
* updateInset(this).
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2001-04-04 20:40:16 +00:00
|
|
|
* It's is completly irrelevant, where the inset is. UpdateInset will
|
2002-03-21 17:09:55 +00:00
|
|
|
* find it in any paragraph in any buffer.
|
2001-04-04 20:40:16 +00:00
|
|
|
* Of course the_locking_inset and the insets in the current paragraph/buffer
|
|
|
|
* are checked first, so no performance problem should occur.
|
|
|
|
*/
|
|
|
|
class UpdatableInset : public Inset {
|
1999-09-27 18:44:28 +00:00
|
|
|
public:
|
2000-02-25 12:06:15 +00:00
|
|
|
/** Dispatch result codes
|
|
|
|
Now that nested updatable insets are allowed, the local dispatch
|
|
|
|
becomes a bit complex, just two possible results (boolean)
|
2002-03-21 17:09:55 +00:00
|
|
|
are not enough.
|
|
|
|
|
2001-08-16 08:52:30 +00:00
|
|
|
DISPATCHED = the inset catched the action
|
2000-04-19 14:42:19 +00:00
|
|
|
DISPATCHED_NOUPDATE = the inset catched the action and no update
|
2002-03-21 17:09:55 +00:00
|
|
|
is needed here to redraw the inset
|
2001-08-16 08:52:30 +00:00
|
|
|
FINISHED = the inset must be unlocked as a result
|
2002-03-21 17:09:55 +00:00
|
|
|
of the action
|
2001-08-16 08:52:30 +00:00
|
|
|
FINISHED_RIGHT = FINISHED, but put the cursor to the RIGHT of
|
2002-03-21 17:09:55 +00:00
|
|
|
the inset.
|
2001-08-16 08:52:30 +00:00
|
|
|
FINISHED_UP = FINISHED, but put the cursor UP of
|
2002-03-21 17:09:55 +00:00
|
|
|
the inset.
|
2001-08-16 08:52:30 +00:00
|
|
|
FINISHED_DOWN = FINISHED, but put the cursor DOWN of
|
2002-03-21 17:09:55 +00:00
|
|
|
the inset.
|
2001-08-16 08:52:30 +00:00
|
|
|
UNDISPATCHED = the action was not catched, it should be
|
2002-03-21 17:09:55 +00:00
|
|
|
dispatched by lower level insets
|
|
|
|
*/
|
2000-02-25 12:06:15 +00:00
|
|
|
enum RESULT {
|
2001-04-04 20:40:16 +00:00
|
|
|
UNDISPATCHED = 0,
|
|
|
|
DISPATCHED,
|
|
|
|
DISPATCHED_NOUPDATE,
|
2001-08-16 08:52:30 +00:00
|
|
|
FINISHED,
|
|
|
|
FINISHED_RIGHT,
|
|
|
|
FINISHED_UP,
|
|
|
|
FINISHED_DOWN
|
2000-02-25 12:06:15 +00:00
|
|
|
};
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2000-02-25 12:06:15 +00:00
|
|
|
/// To convert old binary dispatch results
|
|
|
|
RESULT DISPATCH_RESULT(bool b) {
|
2000-03-06 02:42:40 +00:00
|
|
|
return b ? DISPATCHED : FINISHED;
|
2000-02-25 12:06:15 +00:00
|
|
|
}
|
|
|
|
|
2000-03-02 18:30:01 +00:00
|
|
|
///
|
2001-07-24 15:07:09 +00:00
|
|
|
UpdatableInset();
|
|
|
|
///
|
|
|
|
UpdatableInset(UpdatableInset const & in, bool same_id = false);
|
2001-04-27 14:03:25 +00:00
|
|
|
|
2001-11-22 07:29:54 +00:00
|
|
|
/// check if the font of the char we want inserting is correct
|
|
|
|
/// and modify it if it is not.
|
|
|
|
virtual bool checkInsertChar(LyXFont &);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual EDITABLE editable() const;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2002-02-28 14:06:24 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual void toggleInsetCursor(BufferView *);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual void showInsetCursor(BufferView *, bool show = true);
|
2000-04-19 14:42:19 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual void hideInsetCursor(BufferView *);
|
2000-04-19 14:42:19 +00:00
|
|
|
///
|
2001-07-20 14:18:48 +00:00
|
|
|
virtual void fitInsetCursor(BufferView *) const;
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual void getCursorPos(BufferView *, int &, int &) const {}
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2002-05-26 17:33:14 +00:00
|
|
|
virtual void insetButtonPress(BufferView *, int x, int y, mouse_button::state button);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-12-17 13:33:22 +00:00
|
|
|
// the bool return is used to see if we opened a dialog so that we can
|
|
|
|
// check this from an outer inset and open the dialog of the outer inset
|
|
|
|
// if that one has one!
|
|
|
|
///
|
|
|
|
virtual bool insetButtonRelease(BufferView *,
|
2002-06-24 20:28:12 +00:00
|
|
|
int x, int y, mouse_button::state button);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2002-05-26 17:33:14 +00:00
|
|
|
virtual void insetMotionNotify(BufferView *, int x, int y, mouse_button::state state);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual void insetUnlock(BufferView *);
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2002-05-26 17:33:14 +00:00
|
|
|
virtual void edit(BufferView *, int x, int y, mouse_button::state button);
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2001-07-20 14:18:48 +00:00
|
|
|
virtual void edit(BufferView *, bool front = true);
|
|
|
|
///
|
2000-06-21 15:07:57 +00:00
|
|
|
virtual void draw(BufferView *, LyXFont const &,
|
2000-06-26 15:10:49 +00:00
|
|
|
int baseline, float & x, bool cleared) const;
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual bool insertInset(BufferView *, Inset *) { return false; }
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2001-07-12 12:26:06 +00:00
|
|
|
virtual UpdatableInset * getLockingInset() const {
|
|
|
|
return const_cast<UpdatableInset *>(this);
|
|
|
|
}
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual UpdatableInset * getFirstLockingInsetOfType(Inset::Code c)
|
|
|
|
{ return (c == lyxCode()) ? this : 0; }
|
2000-05-15 14:49:36 +00:00
|
|
|
///
|
2002-04-16 14:10:39 +00:00
|
|
|
virtual int insetInInsetY() const { return 0; }
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual bool updateInsetInInset(BufferView *, Inset *)
|
2000-02-25 13:35:38 +00:00
|
|
|
{ return false; }
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual bool lockInsetInInset(BufferView *, UpdatableInset *)
|
2000-04-19 14:42:19 +00:00
|
|
|
{ return false; }
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual bool unlockInsetInInset(BufferView *, UpdatableInset *,
|
2002-03-21 17:09:55 +00:00
|
|
|
bool /*lr*/ = false)
|
2000-02-25 13:35:38 +00:00
|
|
|
{ return false; }
|
1999-09-27 18:44:28 +00:00
|
|
|
/// An updatable inset could handle lyx editing commands
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual RESULT localDispatch(BufferView *, kb_action, string const &);
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2001-04-04 20:40:16 +00:00
|
|
|
bool isCursorVisible() const { return cursor_visible_; }
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2001-03-29 15:00:20 +00:00
|
|
|
virtual int getMaxWidth(BufferView * bv, UpdatableInset const *) const;
|
2000-08-07 15:21:05 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
int scroll(bool recursive = true) const {
|
2001-04-04 20:40:16 +00:00
|
|
|
// We need this method to not clobber the real method in Inset
|
2001-04-27 14:03:25 +00:00
|
|
|
return Inset::scroll(recursive);
|
2001-04-04 20:40:16 +00:00
|
|
|
}
|
2001-03-26 14:47:34 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
virtual bool showInsetDialog(BufferView *) const { return false; }
|
2001-04-27 14:03:25 +00:00
|
|
|
///
|
2001-08-01 15:42:53 +00:00
|
|
|
virtual void nodraw(bool b) const {
|
2001-04-27 14:03:25 +00:00
|
|
|
block_drawing_ = b;
|
|
|
|
}
|
|
|
|
///
|
|
|
|
virtual bool nodraw() const {
|
|
|
|
return block_drawing_;
|
|
|
|
}
|
2001-07-12 14:35:38 +00:00
|
|
|
///
|
2001-07-17 15:39:12 +00:00
|
|
|
// needed for spellchecking text
|
|
|
|
///
|
2001-10-19 15:40:01 +00:00
|
|
|
virtual bool allowSpellcheck() { return false; }
|
|
|
|
///
|
2002-08-06 22:38:44 +00:00
|
|
|
virtual WordLangTuple selectNextWordToSpellcheck(BufferView *, float & value) const;
|
2001-07-30 11:56:00 +00:00
|
|
|
///
|
2001-07-17 15:39:12 +00:00
|
|
|
virtual void selectSelectedWord(BufferView *) { return; }
|
2001-07-30 11:56:00 +00:00
|
|
|
///
|
2001-07-17 15:39:12 +00:00
|
|
|
virtual void toggleSelection(BufferView *, bool /*kill_selection*/) {
|
|
|
|
return;
|
|
|
|
}
|
2001-07-20 14:18:48 +00:00
|
|
|
///
|
|
|
|
// needed for search/replace functionality
|
|
|
|
///
|
|
|
|
virtual bool searchForward(BufferView *, string const &,
|
2002-03-21 17:09:55 +00:00
|
|
|
bool = true, bool = false);
|
2001-07-30 11:56:00 +00:00
|
|
|
///
|
2001-07-20 14:18:48 +00:00
|
|
|
virtual bool searchBackward(BufferView *, string const &,
|
2002-03-21 17:09:55 +00:00
|
|
|
bool = true, bool = false);
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
protected:
|
|
|
|
///
|
2001-04-04 20:40:16 +00:00
|
|
|
void toggleCursorVisible() const {
|
|
|
|
cursor_visible_ = !cursor_visible_;
|
|
|
|
}
|
|
|
|
///
|
|
|
|
void setCursorVisible(bool b) const {
|
|
|
|
cursor_visible_ = b;
|
|
|
|
}
|
|
|
|
/// scrolls to absolute position in bufferview-workwidth * sx units
|
2000-08-07 15:21:05 +00:00
|
|
|
void scroll(BufferView *, float sx) const;
|
2001-04-04 20:40:16 +00:00
|
|
|
/// scrolls offset pixels
|
2000-08-07 15:21:05 +00:00
|
|
|
void scroll(BufferView *, int offset) const;
|
2001-04-27 14:03:25 +00:00
|
|
|
|
2001-04-04 20:40:16 +00:00
|
|
|
private:
|
|
|
|
///
|
|
|
|
mutable bool cursor_visible_;
|
2001-04-27 14:03:25 +00:00
|
|
|
///
|
2001-08-01 15:42:53 +00:00
|
|
|
mutable bool block_drawing_;
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
2001-11-09 13:44:48 +00:00
|
|
|
|
2001-11-22 07:29:54 +00:00
|
|
|
inline
|
|
|
|
bool UpdatableInset::checkInsertChar(LyXFont &)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2001-11-09 13:44:48 +00:00
|
|
|
/**
|
|
|
|
* returns true if pointer argument is valid
|
|
|
|
* and points to an editable inset
|
|
|
|
*/
|
|
|
|
inline bool isEditableInset(Inset * i)
|
|
|
|
{
|
2002-03-21 17:09:55 +00:00
|
|
|
return i && i->editable();
|
2001-11-09 13:44:48 +00:00
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-11-09 13:44:48 +00:00
|
|
|
/**
|
2001-11-23 10:16:02 +00:00
|
|
|
* returns true if pointer argument is valid
|
2001-11-09 13:44:48 +00:00
|
|
|
* and points to a highly editable inset
|
|
|
|
*/
|
|
|
|
inline bool isHighlyEditableInset(Inset * i)
|
|
|
|
{
|
|
|
|
return i && i->editable() == Inset::HIGHLY_EDITABLE;
|
|
|
|
}
|
2001-11-23 10:16:02 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#endif
|