]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inset.C
fix #832
[lyx.git] / src / insets / inset.C
index dc8163dd031d2b83a511f29b2007db5ac84d3657..5c89fc89f8623335d14c8c66e836f8d065508702 100644 (file)
@@ -1,41 +1,55 @@
-/* This file is part of
- * ====================================================== 
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 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
-#endif
 
 #include "inset.h"
-#include "debug.h"
+
 #include "BufferView.h"
-#include "support/lstrings.h"
-#include "Painter.h"
-#include "commandtags.h"
-#include "support/lstrings.h"
+#include "funcrequest.h"
 #include "gettext.h"
 #include "lyxfont.h"
-#include "lyxcursor.h"
 #include "lyxtext.h"
 
+#include "frontends/Painter.h"
+#include "frontends/mouse_state.h"
+
+#include "support/lstrings.h"
+
 using std::endl;
 
-// Insets default methods
 
 // Initialization of the counter for the inset id's,
 unsigned int Inset::inset_id = 0;
 
-bool Inset::deletable() const
+Inset::Inset()
+       : InsetBase(),
+       top_x(0), top_baseline(0), scx(0),
+       id_(inset_id++), owner_(0), par_owner_(0),
+       background_color_(LColor::inherit)
+{}
+
+
+Inset::Inset(Inset const & in, bool same_id)
+       : InsetBase(),
+       top_x(0), top_baseline(0), scx(0), owner_(0),
+       name_(in.name_), background_color_(in.background_color_)
 {
-       return true;
+       if (same_id)
+               id_ = in.id();
+       else
+               id_ = inset_id++;
 }
 
 
@@ -61,17 +75,19 @@ bool Inset::autoDelete() const
 }
 
 
-void Inset::edit(BufferView *, int, int, unsigned int)
-{}
-
-
+#if 0
 LyXFont const Inset::convertFont(LyXFont const & font) const
 {
+#if 1
+       return font;
+#else
        return LyXFont(font);
+#endif
 }
+#endif
 
 
-string const Inset::editMessage() const 
+string const Inset::editMessage() const
 {
        return _("Opened inset");
 }
@@ -86,175 +102,49 @@ LyXText * Inset::getLyXText(BufferView const * bv, bool const) const
 }
 
 
-int Inset::id() const
-{
-       return id_;
-}
-
-void Inset::id(int id_arg)
-{
-       id_ = id_arg;
-}
-
-// some stuff for inset locking
-
-void UpdatableInset::insetButtonPress(BufferView *, int x, int y, int button)
-{
-       lyxerr[Debug::INFO] << "Inset Button Press x=" << x
-                      << ", y=" << y << ", button=" << button << endl;
-}
-
-
-void UpdatableInset::insetButtonRelease(BufferView *, int x, int y, int button)
-{
-       lyxerr[Debug::INFO] << "Inset Button Release x=" << x
-                      << ", y=" << y << ", button=" << button << endl;
-}
-
-
-void UpdatableInset::insetKeyPress(XKeyEvent *)
+void Inset::setBackgroundColor(LColor::color color)
 {
-       lyxerr[Debug::INFO] << "Inset Keypress" << endl;
+       background_color_ = color;
 }
 
 
-void UpdatableInset::insetMotionNotify(BufferView *, int x, int y, int state)
+LColor::color Inset::backgroundColor() const
 {
-       lyxerr[Debug::INFO] << "Inset Motion Notify x=" << x
-                      << ", y=" << y << ", state=" << state << endl;
-}
-
-
-void UpdatableInset::insetUnlock(BufferView *)
-{
-       lyxerr[Debug::INFO] << "Inset Unlock" << endl;
+       if (background_color_ == LColor::inherit) {
+               if (owner())
+                       return owner()->backgroundColor();
+               else
+                       return LColor::background;
+       } else
+               return background_color_;
 }
 
 
-// An updatable inset is highly editable by definition
-Inset::EDITABLE UpdatableInset::editable() const
+int Inset::id() const
 {
-       return HIGHLY_EDITABLE;
+       return id_;
 }
 
-
-void UpdatableInset::toggleInsetCursor(BufferView *)
-{}
-
-
-void UpdatableInset::showInsetCursor(BufferView *, bool)
-{}
-
-
-void UpdatableInset::hideInsetCursor(BufferView *)
-{}
-
-
-void UpdatableInset::edit(BufferView *, int, int, unsigned int)
-{}
-
-
-void UpdatableInset::draw(BufferView *, LyXFont const &,
-                         int /* baseline */, float & x,
-                         bool/*cleared*/) const
+void Inset::id(int id_arg)
 {
-       x += float(scx);
-       // ATTENTION: don't do the following here!!!
-       //    top_x = int(x);
-       //    top_baseline = baseline;
+       id_ = id_arg;
 }
 
-
-void UpdatableInset::setFont(BufferView *, LyXFont const &, bool, bool )
+void Inset::setFont(BufferView *, LyXFont const &, bool, bool)
 {}
 
 
-void UpdatableInset::scroll(BufferView * bv, float s) const
-{
-       LyXFont font;
-       
-       if (!s) {
-               scx = 0;
-               return;
-       }
-
-       int const workW = bv->workWidth();
-       int const tmp_top_x = top_x - scx;
-       
-       if (tmp_top_x > 0 && 
-           (tmp_top_x + width(bv, font)) < workW)
-               return;
-       if (s > 0 && top_x > 0)
-               return;
-
-       // int mx_scx=abs((width(bv,font) - bv->workWidth())/2);
-       //int const save_scx = scx;
-    
-       scx = int(s * workW / 2);
-       // if (!display())
-       // scx += 20;
-
-       if ((tmp_top_x + scx + width(bv, font)) < (workW / 2)) {
-               scx += (workW / 2) - (tmp_top_x + scx + width(bv, font));
-       }
-
-       // bv->updateInset(const_cast<UpdatableInset *>(this), false);
-}
-
-void UpdatableInset::scroll(BufferView * bv, int offset) const
-{
-       if (offset > 0) {
-               if (!scx && top_x >= 20)
-                       return;
-               if ((top_x + offset) > 20)
-                       scx = 0;
-               // scx += offset - (top_x - scx + offset - 20);
-               else
-                       scx += offset;
-       } else {
-               LyXFont const 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);
-}
-
-
-///  An updatable inset could handle lyx editing commands
-UpdatableInset::RESULT
-UpdatableInset::localDispatch(BufferView * bv, 
-                             kb_action action, string const & arg) 
+bool Inset::forceDefaultParagraphs(Inset const * inset) const
 {
-       if (!arg.empty() && (action==LFUN_SCROLL_INSET)) {
-               if (arg.find('.') != arg.npos) {
-                       float const xx = static_cast<float>(strToDbl(arg));
-                       scroll(bv, xx);
-               } else {
-                       int const xx = strToInt(arg);
-                       scroll(bv, xx);
-               }
-               bv->updateInset(this, false);
-               
-               return DISPATCHED;
-       }
-       return UNDISPATCHED; 
+       if (owner())
+               return owner()->forceDefaultParagraphs(inset);
+       return false;
 }
 
-
-int UpdatableInset::getMaxWidth(BufferView * bv, UpdatableInset const *) const
+int Inset::latexTextWidth(BufferView * bv) const
 {
        if (owner())
-               return static_cast<UpdatableInset*>
-                       (owner())->getMaxWidth(bv, this);
+               return (owner()->latexTextWidth(bv));
        return bv->workWidth();
 }
 
-LyXCursor const & Inset::cursor(BufferView * bv) const
-{
-       return bv->text->cursor;
-}