X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finset.C;h=5f0b633794979a5e7b0c6f9fb2c615067bc68579;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=5d748761078886fe02b1f0a8c673f657005fece5;hpb=47910a7a67b9d49ccf410cc9e8d52ab89458dd56;p=lyx.git diff --git a/src/insets/inset.C b/src/insets/inset.C index 5d74876107..5f0b633794 100644 --- a/src/insets/inset.C +++ b/src/insets/inset.C @@ -1,238 +1,81 @@ -/* 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 -#ifdef __GNUG__ -#pragma implementation "lyxinset.h" -#endif +#include "inset.h" -#include "lyxinset.h" -#include "debug.h" #include "BufferView.h" -#include "support/lstrings.h" -#include "Painter.h" -#include "commandtags.h" -#include "support/lstrings.h" +#include "debug.h" #include "gettext.h" - -using std::endl; - -// Insets default methods - -bool Inset::Deletable() const -{ - return true; -} +#include "lyxtext.h" +#include "LColor.h" +#include "metricsinfo.h" +#include "coordcache.h" -bool Inset::DirectWrite() const -{ - return false; -} +namespace lyx { - -Inset::EDITABLE Inset::Editable() const -{ - return NOT_EDITABLE; -} +using std::string; -void Inset::Validate(LaTeXFeatures &) const +InsetOld::InsetOld() + : //background_color_(LColor::inherit) + background_color_(LColor::background) {} -bool Inset::AutoDelete() const -{ - return false; -} - - -void Inset::Edit(BufferView *, int, int, unsigned int) +InsetOld::InsetOld(InsetOld const & in) + : InsetBase(in), name_(in.name_), + background_color_(in.background_color_) {} -LyXFont const Inset::ConvertFont(LyXFont const & font) const -{ - return LyXFont(font); -} - - -string const Inset::EditMessage() const +void InsetOld::setBackgroundColor(LColor_color color) { - return _("Opened inset"); + background_color_ = color; } -LyXText * Inset::getLyXText(BufferView const * bv, bool const) const +LColor_color InsetOld::backgroundColor() const { - if (owner()) - return owner()->getLyXText(bv, false); - else - return bv->text; + return LColor::color(background_color_); } -// some stuff for inset locking - -void UpdatableInset::InsetButtonPress(BufferView *, int x, int y, int button) +int InsetOld::ascent() const { - lyxerr.debug() << "Inset Button Press x=" << x - << ", y=" << y << ", button=" << button << endl; + return dim_.asc; } -void UpdatableInset::InsetButtonRelease(BufferView *, int x, int y, int button) +int InsetOld::descent() const { - lyxerr.debug() << "Inset Button Release x=" << x - << ", y=" << y << ", button=" << button << endl; + return dim_.des; } -void UpdatableInset::InsetKeyPress(XKeyEvent *) +int InsetOld::width() const { - lyxerr.debug() << "Inset Keypress" << endl; + return dim_.wid; } -void UpdatableInset::InsetMotionNotify(BufferView *, int x, int y, int state) +void InsetOld::setPosCache(PainterInfo const & pi, int x, int y) const { - lyxerr.debug() << "Inset Motion Notify x=" << x - << ", y=" << y << ", state=" << state << endl; + //lyxerr << "InsetOld:: position cache to " << x << " " << y << std::endl; + pi.base.bv->coordCache().insets().add(this, x, y); } -void UpdatableInset::InsetUnlock(BufferView *) -{ - lyxerr.debug() << "Inset Unlock" << endl; -} - - -// An updatable inset is highly editable by definition -Inset::EDITABLE UpdatableInset::Editable() const -{ - return HIGHLY_EDITABLE; -} - - -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 -{ - x += float(scx); - // ATTENTION: don't do the following here!!! - // top_x = int(x); - // top_baseline = baseline; -} - - -void UpdatableInset::SetFont(BufferView *, LyXFont const &, 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(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(this), false); -} - - -/// An updatable inset could handle lyx editing commands -UpdatableInset::RESULT -UpdatableInset::LocalDispatch(BufferView * bv, - kb_action action, string const & arg) -{ - if (!arg.empty() && (action==LFUN_SCROLL_INSET)) { - if (arg.find('.') != arg.npos) { - float const xx = static_cast(strToDbl(arg)); - scroll(bv, xx); - } else { - int const xx = strToInt(arg); - scroll(bv, xx); - } - bv->updateInset(this, false); - - return DISPATCHED; - } - return UNDISPATCHED; -} - - -int UpdatableInset::getMaxWidth(BufferView * bv, UpdatableInset const *) const -{ - if (owner()) - return static_cast - (owner())->getMaxWidth(bv, this); - return bv->workWidth(); -} +} // namespace lyx