]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inset.C
Final touch 'inset display()'; fix 'is a bit silly' bug
[lyx.git] / src / insets / inset.C
index 77b969764d7402cf177c2c52a42953764b2e7816..f28c9d6b8d1645018a60af6a8b62f236d42803cd 100644 (file)
-/* This file is part of
- * ====================================================== 
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2000 The LyX Team.
+/**
+ * \file inset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ====================================================== */
+ * \author Alejandro Aguilar Sierra
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
+ * \author Matthias Ettrich
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation "lyxinset.h"
-#endif
-
-#define SCROLL_INSET
+#include "inset.h"
+#include "updatableinset.h"
 
-#include "lyxinset.h"
-#include "debug.h"
 #include "BufferView.h"
-#include "support/lstrings.h"
-#include "Painter.h"
-#ifdef SCROLL_INSET
-#include "commandtags.h"
-#include "support/lstrings.h"
-#endif
+#include "gettext.h"
+#include "LColor.h"
 
-using std::endl;
 
-/* Insets default methods */
+using std::string;
 
-bool Inset::Deletable() const
-{
-    return true;
-}
-
-
-bool Inset::DirectWrite() const
-{
-    return false;
-}
 
+// Initialization of the counter for the inset id's,
+unsigned int InsetOld::inset_id = 0;
 
-Inset::EDITABLE Inset::Editable() const
-{
-    return NOT_EDITABLE;
-}
+InsetOld::InsetOld()
+       : InsetBase(),
+       top_x(0), top_baseline(0), scx(0),
+       id_(inset_id++), owner_(0),
+       background_color_(LColor::inherit)
+{}
 
 
-void Inset::Validate(LaTeXFeatures &) const
-{
-}
+InsetOld::InsetOld(InsetOld const & in)
+       : InsetBase(),
+       top_x(0), top_baseline(0), scx(0),
+       id_(in.id_), owner_(0),
+       name_(in.name_), background_color_(in.background_color_)
+{}
 
 
-bool Inset::AutoDelete() const
+bool InsetOld::directWrite() const
 {
-    return false;
+       return false;
 }
 
 
-void Inset::Edit(BufferView *, int, int, unsigned int)
+InsetOld::EDITABLE InsetOld::editable() const
 {
+       return NOT_EDITABLE;
 }
 
 
-LyXFont const Inset::ConvertFont(LyXFont const & font) const
+bool InsetOld::autoDelete() const
 {
-    return LyXFont(font);
+       return false;
 }
 
 
-string const Inset::EditMessage() const 
+#if 0
+LyXFont const InsetOld::convertFont(LyXFont const & font) const
 {
-    return _("Opened inset");
+#if 1
+       return font;
+#else
+       return LyXFont(font);
+#endif
 }
+#endif
 
 
-LyXText * Inset::getLyXText(BufferView * bv) const
+string const InsetOld::editMessage() const
 {
-    if (owner())
-           return owner()->getLyXText(bv);
-    else
-           return bv->text;
+       return _("Opened inset");
 }
 
 
- /* some stuff for inset locking */
-
-void UpdatableInset::InsetButtonPress(BufferView *, int x, int y, int button)
+LyXText * InsetOld::getLyXText(BufferView const * bv, bool /*recursive*/) const
 {
-    lyxerr.debug() << "Inset Button Press x=" << x
-                  << ", y=" << y << ", button=" << button << endl;
+       if (owner())
+               return owner()->getLyXText(bv, false);
+       else
+               return bv->text;
 }
 
 
-void UpdatableInset::InsetButtonRelease(BufferView *, int x, int y, int button)
+void InsetOld::setBackgroundColor(LColor_color color)
 {
-    lyxerr.debug() << "Inset Button Release x=" << x
-                  << ", y=" << y << ", button=" << button << endl;
+       background_color_ = color;
 }
 
 
-void UpdatableInset::InsetKeyPress(XKeyEvent *)
+LColor_color InsetOld::backgroundColor() const
 {
-    lyxerr.debug() << "Inset Keypress" << endl;
+       if (background_color_ == LColor::inherit) {
+               if (owner())
+                       return owner()->backgroundColor();
+               else
+                       return LColor::background;
+       } else
+               return LColor::color(background_color_);
 }
 
 
-void UpdatableInset::InsetMotionNotify(BufferView *, int x, int y, int state)
+int InsetOld::id() const
 {
-    lyxerr.debug() << "Inset Motion Notify x=" << x
-                  << ", y=" << y << ", state=" << state << endl;
+       return id_;
 }
 
-
-void UpdatableInset::InsetUnlock(BufferView *)
+void InsetOld::id(int id_arg)
 {
-    lyxerr.debug() << "Inset Unlock" << endl;
+       id_ = id_arg;
 }
 
-
-// An updatable inset is highly editable by definition
-Inset::EDITABLE UpdatableInset::Editable() const
-{
-    return HIGHLY_EDITABLE;
-}
+void InsetOld::setFont(BufferView *, LyXFont const &, bool, bool)
+{}
 
 
-void UpdatableInset::ToggleInsetCursor(BufferView *)
+bool InsetOld::forceDefaultParagraphs(InsetOld const * inset) const
 {
+       if (owner())
+               return owner()->forceDefaultParagraphs(inset);
+       return false;
 }
 
-
-void UpdatableInset::ShowInsetCursor(BufferView *)
+int InsetOld::latexTextWidth(BufferView * bv) const
 {
+       if (owner())
+               return (owner()->latexTextWidth(bv));
+       return bv->workWidth();
 }
 
 
-void UpdatableInset::HideInsetCursor(BufferView *)
+int InsetOld::ascent() const
 {
+       return dim_.asc;
 }
 
 
-void UpdatableInset::Edit(BufferView *, int, int, unsigned int)
+int InsetOld::descent() const
 {
+       return dim_.des;
 }
 
 
-void UpdatableInset::draw(BufferView *, LyXFont const &,
-                         int /* baseline */, float & x, bool/*cleared*/) const
+int InsetOld::width() const
 {
-    x += float(scx);
-// ATTENTION: don't do the following here!!!
-//    top_x = int(x);
-//    top_baseline = baseline;
+       return dim_.wid;
 }
 
 
-void UpdatableInset::SetFont(BufferView *, LyXFont const &, bool )
+bool InsetOld::insetAllowed(InsetOld * in) const
 {
+       return insetAllowed(in->lyxCode());
 }
 
 
-#ifdef SCROLL_INSET
-void UpdatableInset::scroll(BufferView * bv, float s) const
-{
-    LyXFont font;
-
-    if (((top_x - scx) > 0) && 
-       (top_x - scx + width(bv, font)) < bv->workWidth())
-       return;
-    if ((s > 0) && (top_x > 0))
-       return;
-
-//    int mx_scx=abs((width(bv,font) - bv->workWidth())/2);
-    int save_scx = scx;
-    
-    scx = int(s*bv->workWidth()/2);
-//    if (!display())
-//     scx += 20;
-
-    if ((top_x - save_scx + scx + width(bv, font)) < (bv->workWidth()/2)) {
-       scx += (bv->workWidth()/2) - (top_x - save_scx + scx + width(bv,font));
-    }
-//    bv->updateInset(const_cast<UpdatableInset *>(this), false);
-}
-
-void UpdatableInset::scroll(BufferView * bv, int offset) const
+bool InsetOld::checkInsertChar(LyXFont &)
 {
-    if (offset > 0) {
-       if (!scx && top_x > 0)
-           return;
-       if ((top_x + offset) > 20)
-           scx += offset - (top_x - scx + offset - 20);
-       else
-           scx += offset;
-    } else {
-       LyXFont font;
-       if (!scx && (top_x+width(bv, font)) < (bv->workWidth()-20))
-           return;
-       if ((top_x - scx + offset + width(bv,font)) < (bv->workWidth()-20)) {
-           scx = bv->workWidth() - width(bv,font) - top_x + scx - 20; 
-       } else {
-           scx += offset;
-       }
-    }
-//    bv->updateInset(const_cast<UpdatableInset *>(this), false);
+       return false;
 }
 
 
-#endif
-
-///  An updatable inset could handle lyx editing commands
-#ifdef SCROLL_INSET
-UpdatableInset::RESULT
-UpdatableInset::LocalDispatch(BufferView * bv, 
-                             int action, string const & arg) 
-#else
-UpdatableInset::RESULT
-UpdatableInset::LocalDispatch(BufferView *, int, string const &)
-#endif
+bool isEditableInset(InsetOld const * i)
 {
-#ifdef SCROLL_INSET
-
-    if (!arg.empty() && (action==LFUN_SCROLL_INSET)) {
-       if (arg.find('.') != arg.npos) {
-           float xx = static_cast<float>(strToDbl(arg));
-           scroll(bv, xx);
-       } else {
-           int xx = strToInt(arg);
-           scroll(bv, xx);
-       }
-       bv->updateInset(this, false);
-       
-       return DISPATCHED;
-    }
-#endif
-    return UNDISPATCHED; 
+       return i && i->editable();
 }
 
 
-int UpdatableInset::getMaxWidth(Painter & pain, UpdatableInset const *) const
+bool isHighlyEditableInset(InsetOld const * i)
 {
-    if (owner())
-        return static_cast<UpdatableInset*>(owner())->getMaxWidth(pain, this);
-    return pain.paperWidth();
+       return i && i->editable() == InsetOld::HIGHLY_EDITABLE;
 }