1999-09-27 18:44:28 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file inset.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* \author Alejandro Aguilar Sierra
|
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Matthias Ettrich
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-25 14:26:13 +00:00
|
|
|
|
*/
|
1999-11-04 01:40:20 +00:00
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
#ifndef INSETOLD_H
|
|
|
|
|
#define INSETOLD_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2003-02-17 17:12:50 +00:00
|
|
|
|
#include "insetbase.h"
|
2003-07-18 07:47:07 +00:00
|
|
|
|
#include "dimension.h"
|
2003-09-07 01:45:40 +00:00
|
|
|
|
#include "LColor.h"
|
2003-09-06 12:36:58 +00:00
|
|
|
|
#include "ParagraphList_fwd.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
class Buffer;
|
2003-09-15 15:20:22 +00:00
|
|
|
|
class EnumLColor;
|
2003-09-07 01:45:40 +00:00
|
|
|
|
class FuncRequest;
|
2003-05-22 18:59:10 +00:00
|
|
|
|
class LatexRunParams;
|
2003-09-07 01:45:40 +00:00
|
|
|
|
class LyXCursor;
|
|
|
|
|
class LyXFont;
|
2001-06-25 00:06:33 +00:00
|
|
|
|
class LyXLex;
|
2003-09-07 01:45:40 +00:00
|
|
|
|
class LyXText;
|
|
|
|
|
class Painter;
|
2001-07-06 15:57:54 +00:00
|
|
|
|
class Paragraph;
|
2003-06-04 07:14:05 +00:00
|
|
|
|
class UpdatableInset;
|
2003-09-07 01:45:40 +00:00
|
|
|
|
class WordLangTuple;
|
2000-02-22 00:36:17 +00:00
|
|
|
|
|
2003-07-04 08:23:23 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace graphics {
|
2002-07-05 21:24:15 +00:00
|
|
|
|
class PreviewLoader;
|
|
|
|
|
}
|
2003-07-04 08:23:23 +00:00
|
|
|
|
}
|
2000-03-02 02:19:43 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// Insets
|
2003-07-25 21:20:24 +00:00
|
|
|
|
class InsetOld : public InsetBase {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
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
|
2003-07-25 21:20:24 +00:00
|
|
|
|
its own enum code. Actually the notion of an InsetOld::Code
|
1999-11-15 10:58:38 +00:00
|
|
|
|
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 {
|
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
NO_CODE, // 0
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
|
|
|
|
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,
|
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
REF_CODE,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
URL_CODE, // 5
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
|
|
|
|
HTMLURL_CODE,
|
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
|
SEPARATOR_CODE,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
|
|
|
|
ENDING_CODE,
|
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
LABEL_CODE,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
NOTE_CODE, // 10
|
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,
|
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
INCLUDE_CODE,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
GRAPHICS_CODE, // 15
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-02-21 09:20:18 +00:00
|
|
|
|
BIBITEM_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,
|
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
ERT_CODE,
|
2000-03-31 10:35:53 +00:00
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
FOOT_CODE, // 20
|
2000-03-08 13:52:57 +00:00
|
|
|
|
///
|
|
|
|
|
MARGIN_CODE,
|
|
|
|
|
///
|
2001-05-04 10:36:36 +00:00
|
|
|
|
FLOAT_CODE,
|
2000-06-28 13:35:52 +00:00
|
|
|
|
///
|
2002-09-10 10:18:58 +00:00
|
|
|
|
WRAP_CODE,
|
|
|
|
|
///
|
2000-06-28 13:35:52 +00:00
|
|
|
|
MINIPAGE_CODE,
|
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
SPACE_CODE, // 25
|
2003-05-22 10:40:57 +00:00
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
SPECIALCHAR_CODE,
|
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,
|
|
|
|
|
///
|
2002-08-23 09:05:32 +00:00
|
|
|
|
INDEX_PRINT_CODE,
|
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
OPTARG_CODE, // 35
|
2003-03-11 11:52:05 +00:00
|
|
|
|
///
|
2003-04-29 08:46:17 +00:00
|
|
|
|
ENVIRONMENT_CODE,
|
2003-03-13 10:06:11 +00:00
|
|
|
|
///
|
2003-03-12 19:16:42 +00:00
|
|
|
|
HFILL_CODE,
|
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
|
NEWLINE_CODE,
|
|
|
|
|
///
|
|
|
|
|
BRANCH_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
|
|
|
|
|
2003-02-17 17:12:50 +00:00
|
|
|
|
///
|
2003-02-18 11:47:16 +00:00
|
|
|
|
typedef dispatch_result RESULT;
|
2002-08-19 10:11:13 +00:00
|
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
|
///
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld();
|
2001-07-24 15:07:09 +00:00
|
|
|
|
///
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld(InsetOld const & in);
|
2003-05-26 09:13:55 +00:00
|
|
|
|
///
|
2003-07-18 07:47:07 +00:00
|
|
|
|
int ascent() const;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
///
|
2003-07-18 07:47:07 +00:00
|
|
|
|
int descent() const;
|
2003-05-19 17:03:12 +00:00
|
|
|
|
///
|
2003-07-18 07:47:07 +00:00
|
|
|
|
int width() const;
|
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
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
virtual EDITABLE editable() const;
|
2002-12-01 22:59:25 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
virtual bool isTextInset() const { return false; }
|
2003-02-14 02:21:01 +00:00
|
|
|
|
/// return true if the inset should be removed automatically
|
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
|
2003-07-25 21:20:24 +00:00
|
|
|
|
virtual bool insetAllowed(InsetOld::Code) const { return false; }
|
2001-07-19 08:52:59 +00:00
|
|
|
|
/// wrapper around the above
|
2003-07-25 21:20:24 +00:00
|
|
|
|
bool insetAllowed(InsetOld * in) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
virtual void write(Buffer const &, std::ostream &) const = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
virtual void read(Buffer const &, LyXLex & lex) = 0;
|
2003-05-23 08:59:47 +00:00
|
|
|
|
/// returns the number of rows (\n's) of generated tex code.
|
2003-08-28 07:41:31 +00:00
|
|
|
|
virtual int latex(Buffer const &, std::ostream &,
|
2003-05-23 08:59:47 +00:00
|
|
|
|
LatexRunParams const &) const = 0;
|
2000-04-24 20:58:23 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +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
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
virtual int linuxdoc(Buffer const &, std::ostream &) const = 0;
|
2000-03-06 02:42:40 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
virtual int docbook(Buffer const &, std::ostream &, bool) const = 0;
|
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, ...)
|
2003-07-25 21:20:24 +00:00
|
|
|
|
virtual InsetOld::Code lyxCode() const { return NO_CODE; }
|
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
|
|
|
|
|
|
|
|
|
///
|
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
|
|
|
|
///
|
2003-06-04 07:14:05 +00:00
|
|
|
|
void setOwner(UpdatableInset * inset) { owner_ = inset; }
|
2000-04-19 14:42:19 +00:00
|
|
|
|
///
|
2003-06-04 07:14:05 +00:00
|
|
|
|
UpdatableInset * owner() const { return owner_; }
|
2000-04-19 14:42:19 +00:00
|
|
|
|
///
|
2003-09-15 15:20:22 +00:00
|
|
|
|
void setBackgroundColor(EnumLColor);
|
2001-07-24 10:13:19 +00:00
|
|
|
|
///
|
2003-09-15 15:20:22 +00:00
|
|
|
|
EnumLColor backgroundColor() const;
|
2001-07-24 10:13:19 +00:00
|
|
|
|
///
|
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 *,
|
2003-06-30 23:56:22 +00:00
|
|
|
|
bool recursive = false) const;
|
2000-09-26 13:54:57 +00:00
|
|
|
|
///
|
|
|
|
|
virtual void deleteLyXText(BufferView *, bool = true) const {}
|
|
|
|
|
/// 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;
|
|
|
|
|
}
|
2003-02-14 02:21:01 +00:00
|
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
|
/// try to get a inset pointer from it's id if we have
|
|
|
|
|
/// an inset to give back!
|
2003-07-25 21:20:24 +00:00
|
|
|
|
virtual InsetOld * getInsetFromID(int /*id*/) const { return 0; }
|
2001-07-06 15:57:54 +00:00
|
|
|
|
/// if this insets owns paragraphs (f.ex. InsetText) then it
|
|
|
|
|
/// should return it's very first one!
|
2003-05-05 15:39:48 +00:00
|
|
|
|
virtual ParagraphList * getParagraphs(int /*num*/) const { return 0; }
|
2003-04-29 08:46:17 +00:00
|
|
|
|
///
|
|
|
|
|
virtual bool haveParagraphs() const {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2001-09-01 21:26:34 +00:00
|
|
|
|
|
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
|
|
|
|
|
///
|
2003-02-08 19:18:01 +00:00
|
|
|
|
virtual bool allowSpellcheck() const { 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?
|
2003-07-25 21:20:24 +00:00
|
|
|
|
virtual bool forceDefaultParagraphs(InsetOld const *) const;
|
2002-07-23 21:03:38 +00:00
|
|
|
|
/** returns true if, when outputing LaTeX, font changes should
|
2002-12-01 22:59:25 +00:00
|
|
|
|
be closed before generating this inset. This is needed for
|
|
|
|
|
insets that may contain several paragraphs */
|
2002-07-23 21:03:38 +00:00
|
|
|
|
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
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
|
/// mark the inset contents as erased (for change tracking)
|
|
|
|
|
virtual void markErased() {}
|
2003-03-17 16:25:00 +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.
|
|
|
|
|
*/
|
2003-07-04 08:23:23 +00:00
|
|
|
|
virtual void addPreview(lyx::graphics::PreviewLoader &) const {}
|
2002-08-01 17:28:59 +00:00
|
|
|
|
|
|
|
|
|
/** 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 {}
|
2003-02-17 17:12:50 +00:00
|
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
|
protected:
|
|
|
|
|
///
|
|
|
|
|
mutable int top_x;
|
2001-04-04 20:40:16 +00:00
|
|
|
|
///
|
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;
|
2003-07-25 19:18:43 +00:00
|
|
|
|
/// Used to identify the inset for cursor positioning when undoing
|
2001-07-06 15:57:54 +00:00
|
|
|
|
unsigned int id_;
|
|
|
|
|
///
|
|
|
|
|
static unsigned int inset_id;
|
2003-07-18 07:47:07 +00:00
|
|
|
|
///
|
|
|
|
|
mutable Dimension dim_;
|
2001-07-06 15:57:54 +00:00
|
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
2003-06-04 07:14:05 +00:00
|
|
|
|
UpdatableInset * 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-11-09 13:44:48 +00:00
|
|
|
|
/**
|
|
|
|
|
* returns true if pointer argument is valid
|
|
|
|
|
* and points to an editable inset
|
|
|
|
|
*/
|
2003-08-07 11:59:09 +00:00
|
|
|
|
bool isEditableInset(InsetOld const * i);
|
|
|
|
|
|
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
|
|
|
|
|
*/
|
2003-08-07 11:59:09 +00:00
|
|
|
|
bool isHighlyEditableInset(InsetOld const * i);
|
2001-11-23 10:16:02 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#endif
|