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
|
|
|
|
*
|
2000-03-16 04:29:22 +00:00
|
|
|
* Copyright 1995-2000 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
|
|
|
|
|
|
|
#ifndef LYXINSET_H
|
|
|
|
#define LYXINSET_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2000-05-19 16:46:01 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "gettext.h"
|
|
|
|
#include "lyxfont.h"
|
|
|
|
#include "lyxlex.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
class Painter;
|
2000-02-22 00:36:17 +00:00
|
|
|
class BufferView;
|
2000-06-12 11:27:15 +00:00
|
|
|
class Buffer;
|
2000-02-22 00:36:17 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
struct LaTeXFeatures;
|
|
|
|
|
2000-03-02 02:19:43 +00:00
|
|
|
|
2000-04-04 00:19:15 +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)
|
|
|
|
///
|
|
|
|
LOF_CODE,
|
|
|
|
///
|
|
|
|
LOT_CODE,
|
|
|
|
///
|
|
|
|
LOA_CODE,
|
|
|
|
///
|
|
|
|
QUOTE_CODE,
|
|
|
|
///
|
|
|
|
MARK_CODE,
|
|
|
|
///
|
|
|
|
REF_CODE,
|
|
|
|
///
|
|
|
|
URL_CODE,
|
|
|
|
///
|
|
|
|
HTMLURL_CODE,
|
|
|
|
///
|
|
|
|
SEPARATOR_CODE,
|
|
|
|
///
|
|
|
|
ENDING_CODE,
|
|
|
|
///
|
|
|
|
LABEL_CODE,
|
|
|
|
///
|
|
|
|
IGNORE_CODE,
|
|
|
|
///
|
|
|
|
ACCENT_CODE,
|
|
|
|
///
|
|
|
|
MATH_CODE,
|
|
|
|
///
|
|
|
|
INDEX_CODE,
|
|
|
|
///
|
|
|
|
INCLUDE_CODE,
|
|
|
|
///
|
|
|
|
GRAPHICS_CODE,
|
|
|
|
///
|
|
|
|
PARENT_CODE,
|
|
|
|
///
|
2000-02-25 12:06:15 +00:00
|
|
|
BIBTEX_CODE,
|
|
|
|
///
|
2000-02-29 02:19:17 +00:00
|
|
|
TEXT_CODE,
|
|
|
|
///
|
2000-03-31 10:35:53 +00:00
|
|
|
ERT_CODE,
|
|
|
|
///
|
2000-03-08 13:52:57 +00:00
|
|
|
FOOT_CODE,
|
|
|
|
///
|
|
|
|
MARGIN_CODE,
|
|
|
|
///
|
2000-04-03 11:36:35 +00:00
|
|
|
SPECIALCHAR_CODE,
|
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
TABULAR_CODE,
|
|
|
|
///
|
|
|
|
EXTERNAL_CODE
|
2000-03-08 13:52:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum EDITABLE {
|
|
|
|
NOT_EDITABLE = 0,
|
|
|
|
IS_EDITABLE,
|
|
|
|
HIGHLY_EDITABLE
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
///
|
2000-05-15 14:49:36 +00:00
|
|
|
Inset() { owner_ = 0; top_x = top_baseline = 0; }
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
1999-11-04 01:40:20 +00:00
|
|
|
virtual ~Inset() {}
|
2000-02-10 17:53:36 +00:00
|
|
|
///
|
|
|
|
virtual int ascent(Painter &, LyXFont const &) const = 0;
|
|
|
|
///
|
|
|
|
virtual int descent(Painter &, LyXFont const &) const = 0;
|
|
|
|
///
|
|
|
|
virtual int width(Painter &, LyXFont const &) const = 0;
|
|
|
|
///
|
|
|
|
virtual void draw(Painter &, LyXFont const &,
|
|
|
|
int baseline, float & x) const = 0;
|
|
|
|
///
|
|
|
|
virtual LyXFont ConvertFont(LyXFont font);
|
1999-09-27 18:44:28 +00:00
|
|
|
/// what appears in the minibuffer when opening
|
2000-04-04 00:19:15 +00:00
|
|
|
virtual const char * EditMessage() const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-02-25 12:06:15 +00:00
|
|
|
virtual void Edit(BufferView *, int x, int y, unsigned int button);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-03-08 13:52:57 +00:00
|
|
|
virtual EDITABLE Editable() const;
|
2000-06-12 11:27:15 +00:00
|
|
|
/// This is called when the user clicks inside an inset
|
2000-04-19 14:42:19 +00:00
|
|
|
virtual void InsetButtonPress(BufferView *, int, int, int) {}
|
2000-06-12 11:27:15 +00:00
|
|
|
/// This is called when the user releases the button inside an inset
|
2000-04-19 14:42:19 +00:00
|
|
|
virtual void InsetButtonRelease(BufferView *, int, int, int) {}
|
2000-06-12 11:27:15 +00:00
|
|
|
/// This is caleld when the user moves the mouse inside an inset
|
2000-04-19 14:42:19 +00:00
|
|
|
virtual void InsetMotionNotify(BufferView *, int , int , int) {}
|
|
|
|
///
|
2000-03-31 10:35:53 +00:00
|
|
|
bool IsTextInset() const;
|
|
|
|
///
|
1999-09-27 18:44:28 +00:00
|
|
|
virtual bool AutoDelete() const;
|
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
virtual void Write(Buffer const *, std::ostream &) const = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-06-12 11:27:15 +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.
|
2000-04-19 01:42:55 +00:00
|
|
|
fragile == true means, that the inset should take care about
|
1999-09-27 18:44:28 +00:00
|
|
|
fragile commands by adding a \protect before.
|
2000-04-06 09:17:40 +00:00
|
|
|
If the free_spc (freespacing) variable is set, then this inset
|
2000-03-09 03:36:48 +00:00
|
|
|
is in a free-spacing paragraph.
|
1999-09-27 18:44:28 +00:00
|
|
|
*/
|
2000-06-12 11:27:15 +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
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
virtual int Ascii(Buffer const *, std::ostream &) const = 0;
|
2000-03-06 02:42:40 +00:00
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
virtual int Linuxdoc(Buffer const *, std::ostream &) const = 0;
|
2000-03-06 02:42:40 +00:00
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
virtual int DocBook(Buffer const *, std::ostream &) const = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
/// Updates needed features for this inset.
|
1999-11-04 01:40:20 +00:00
|
|
|
virtual void Validate(LaTeXFeatures & features) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
|
|
|
virtual bool Deletable() const;
|
|
|
|
|
|
|
|
/// returns LyX code associated with the inset. Used for TOC, ...)
|
2000-03-31 10:35:53 +00:00
|
|
|
virtual Inset::Code LyxCode() const { return NO_CODE; }
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-05-19 16:46:01 +00:00
|
|
|
virtual std::vector<string> getLabelList() const {
|
|
|
|
return std::vector<string>();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///
|
1999-11-22 16:19:48 +00:00
|
|
|
virtual Inset * Clone() const = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/// returns true to override begin and end inset in file
|
|
|
|
virtual bool DirectWrite() const;
|
|
|
|
|
|
|
|
/// Returns true if the inset should be centered alone
|
1999-11-22 16:19:48 +00:00
|
|
|
virtual bool display() const { return false; }
|
1999-09-27 18:44:28 +00:00
|
|
|
/// Changes the display state of the inset
|
1999-11-22 16:19:48 +00:00
|
|
|
virtual void display(bool) {}
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-04-10 14:29:05 +00:00
|
|
|
virtual bool InsertInsetAllowed(Inset *) const { return false; }
|
2000-04-19 14:42:19 +00:00
|
|
|
///
|
|
|
|
virtual void setInsetName(const char * s) { name = s; }
|
|
|
|
///
|
|
|
|
virtual string getInsetName() const { return name; }
|
|
|
|
///
|
|
|
|
virtual void setOwner(Inset * inset) { owner_ = inset; }
|
|
|
|
///
|
|
|
|
virtual Inset * owner() const { return owner_; }
|
|
|
|
///
|
2000-05-15 14:49:36 +00:00
|
|
|
int x() const { return top_x; }
|
|
|
|
///
|
|
|
|
int y() const { return top_baseline; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
///
|
|
|
|
mutable int top_x;
|
|
|
|
mutable int top_baseline;
|
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
private:
|
|
|
|
///
|
|
|
|
Inset * owner_;
|
|
|
|
///
|
|
|
|
string name;
|
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.
|
|
|
|
// [Alejandro 080596]
|
|
|
|
|
|
|
|
/** Extracted from Matthias notes:
|
|
|
|
*
|
|
|
|
* An inset can simple call LockInset in it's edit call and *ONLY*
|
|
|
|
* in it's edit call.
|
|
|
|
*
|
|
|
|
* Unlocking is either done by LyX or the inset itself with a
|
|
|
|
* 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
|
|
|
|
* Inset::InsetUnlock will be called from inside UnlockInset. It is meant
|
|
|
|
* to contain the code for restoring the menus and things like this.
|
|
|
|
*
|
|
|
|
* If a inset wishes any redraw and/or update it just has to call
|
|
|
|
* UpdateInset(this).
|
|
|
|
*
|
|
|
|
* It's is completly irrelevant, where the inset is. UpdateInset will
|
|
|
|
* find it in any paragraph in any buffer.
|
|
|
|
* 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 {
|
|
|
|
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)
|
|
|
|
are not enough.
|
|
|
|
|
|
|
|
DISPATCHED = the inset catched the action
|
2000-04-19 14:42:19 +00:00
|
|
|
DISPATCHED_NOUPDATE = the inset catched the action and no update
|
|
|
|
is needed here to redraw the inset
|
2000-02-25 12:06:15 +00:00
|
|
|
FINISHED = the inset must be unlocked as a result
|
|
|
|
of the action
|
|
|
|
UNDISPATCHED = the action was not catched, it should be
|
|
|
|
dispatched by lower level insets
|
|
|
|
*/
|
|
|
|
enum RESULT {
|
2000-02-25 13:35:38 +00:00
|
|
|
UNDISPATCHED = 0,
|
2000-02-25 12:06:15 +00:00
|
|
|
DISPATCHED,
|
2000-04-19 14:42:19 +00:00
|
|
|
DISPATCHED_NOUPDATE,
|
2000-02-25 12:06:15 +00:00
|
|
|
FINISHED
|
|
|
|
};
|
|
|
|
|
|
|
|
/// 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
|
|
|
///
|
2000-04-19 14:42:19 +00:00
|
|
|
UpdatableInset() { scx = mx_scx = 0; }
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
1999-11-24 22:14:46 +00:00
|
|
|
//virtual ~UpdatableInset() {}
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-03-08 13:52:57 +00:00
|
|
|
virtual EDITABLE Editable() const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/// may call ToggleLockedInsetCursor
|
2000-02-22 00:36:17 +00:00
|
|
|
virtual void ToggleInsetCursor(BufferView *);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-04-19 14:42:19 +00:00
|
|
|
virtual void ShowInsetCursor(BufferView *);
|
|
|
|
///
|
|
|
|
virtual void HideInsetCursor(BufferView *);
|
|
|
|
///
|
1999-11-22 16:19:48 +00:00
|
|
|
virtual void GetCursorPos(int &, int &) const {}
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-02-22 00:36:17 +00:00
|
|
|
virtual void InsetButtonPress(BufferView *, int x, int y, int button);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-02-22 00:36:17 +00:00
|
|
|
virtual void InsetButtonRelease(BufferView *,
|
|
|
|
int x, int y, int button);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
1999-11-04 01:40:20 +00:00
|
|
|
virtual void InsetKeyPress(XKeyEvent * ev);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-02-22 00:36:17 +00:00
|
|
|
virtual void InsetMotionNotify(BufferView *, int x, int y, int state);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-02-22 00:36:17 +00:00
|
|
|
virtual void InsetUnlock(BufferView *);
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
|
|
|
virtual void Edit(BufferView *, int x, int y, unsigned int button);
|
|
|
|
///
|
|
|
|
virtual void draw(Painter &, LyXFont const &,
|
|
|
|
int baseline, float & x) const;
|
|
|
|
///
|
2000-03-06 02:42:40 +00:00
|
|
|
virtual void SetFont(BufferView *, LyXFont const &,
|
|
|
|
bool toggleall = false);
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2000-02-25 16:05:26 +00:00
|
|
|
virtual bool InsertInset(BufferView *, Inset *) { return false; }
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2000-04-10 14:29:05 +00:00
|
|
|
virtual bool InsertInsetAllowed(Inset *) const { return true; }
|
|
|
|
///
|
2000-02-25 12:06:15 +00:00
|
|
|
virtual UpdatableInset * GetLockingInset() { return this; }
|
|
|
|
///
|
2000-05-15 14:49:36 +00:00
|
|
|
virtual UpdatableInset * GetFirstLockingInsetOfType(Inset::Code c)
|
|
|
|
{ return (c == LyxCode()) ? this : 0; }
|
|
|
|
///
|
2000-02-25 12:06:15 +00:00
|
|
|
virtual int InsetInInsetY() { return 0; }
|
|
|
|
///
|
2000-02-25 13:35:38 +00:00
|
|
|
virtual bool UpdateInsetInInset(BufferView *, Inset *)
|
|
|
|
{ return false; }
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
2000-04-19 14:42:19 +00:00
|
|
|
virtual bool LockInsetInInset(BufferView *, UpdatableInset *)
|
|
|
|
{ return false; }
|
|
|
|
///
|
|
|
|
virtual bool UnlockInsetInInset(BufferView *, UpdatableInset *,
|
2000-03-06 02:42:40 +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
|
2000-02-25 13:35:38 +00:00
|
|
|
virtual RESULT LocalDispatch(BufferView *, int, string const &);
|
2000-02-25 12:06:15 +00:00
|
|
|
///
|
|
|
|
virtual bool isCursorVisible() const { return cursor_visible; }
|
|
|
|
///
|
2000-04-19 14:42:19 +00:00
|
|
|
virtual int getMaxWidth(Painter & pain, UpdatableInset const *) const;
|
2000-03-08 13:52:57 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
protected:
|
|
|
|
///
|
2000-02-10 17:53:36 +00:00
|
|
|
mutable bool cursor_visible;
|
2000-02-25 12:06:15 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
int mx_scx;
|
|
|
|
mutable int scx;
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
#endif
|