From a2933867d1d9631e44cdeb26cf2f99d3d217686e Mon Sep 17 00:00:00 2001 From: Martin Vermeer Date: Thu, 19 Oct 2006 19:26:43 +0000 Subject: [PATCH] Fix for 2550. * insettext.[Ch] (InsetText::covers): added to allow the click-sensitive area to grow with the Wide() condition. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15384 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/insettext.C | 11 +++++++++++ src/insets/insettext.h | 2 ++ 2 files changed, 13 insertions(+) diff --git a/src/insets/insettext.C b/src/insets/insettext.C index 7ade80ae4c..36b7b036e7 100644 --- a/src/insets/insettext.C +++ b/src/insets/insettext.C @@ -16,6 +16,7 @@ #include "buffer.h" #include "bufferparams.h" #include "BufferView.h" +#include "coordcache.h" #include "CutAndPaste.h" #include "cursor.h" #include "debug.h" @@ -220,6 +221,16 @@ void InsetText::drawSelection(PainterInfo & pi, int x, int y) const } +bool InsetText::covers(BufferView & bv, int x, int y) const +{ + return bv.coordCache().getInsets().has(this) + && x >= xo(bv) + && x <= xo(bv) + width() + (Wide() ? text_.maxwidth_ : 0) + && y >= yo(bv) - ascent() + && y <= yo(bv) + descent(); +} + + docstring const InsetText::editMessage() const { return _("Opened Text Inset"); diff --git a/src/insets/insettext.h b/src/insets/insettext.h index 578109343f..6eef99eac4 100644 --- a/src/insets/insettext.h +++ b/src/insets/insettext.h @@ -52,6 +52,8 @@ public: void draw(PainterInfo & pi, int x, int y) const; /// draw inset selection void drawSelection(PainterInfo & pi, int x, int y) const; + /// are we inside the area covered by the inset? + virtual bool covers(BufferView & bv, int x, int y) const; /// virtual lyx::docstring const editMessage() const; /// -- 2.39.5