INTEGRATION: CWS presfixes08 (1.2.36); FILE MERGED

2005/08/26 11:56:17 dbo 1.2.36.1: #i46618# hyperlink support
Issue number:
Submitted by:
Reviewed by:
This commit is contained in:
Oliver Bolte
2005-10-11 07:52:44 +00:00
parent 41e89f9b18
commit 993c326aa2

View File

@@ -4,9 +4,9 @@
* *
* $RCSfile: shape.hxx,v $ * $RCSfile: shape.hxx,v $
* *
* $Revision: 1.3 $ * $Revision: 1.4 $
* *
* last change: $Author: rt $ $Date: 2005-09-07 21:17:37 $ * last change: $Author: obo $ $Date: 2005-10-11 08:52:44 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
@@ -56,6 +56,7 @@
#include <viewlayer.hxx> #include <viewlayer.hxx>
#include <vector>
namespace presentation namespace presentation
{ {
@@ -222,6 +223,18 @@ namespace presentation
*/ */
virtual bool hasIntrinsicAnimation() const = 0; virtual bool hasIntrinsicAnimation() const = 0;
typedef ::std::pair< ::basegfx::B2DRectangle, ::rtl::OUString >
HyperLinkRegion;
/** Checks whether this shape has hyperlinks to be clicked.
*/
virtual bool hasHyperlinks() const = 0;
/** @return the position and size of all hyperlinks relative to
the upper left corner of the shape.
*/
virtual ::std::vector<HyperLinkRegion> getHyperlinkRegions() const
= 0;
// Misc // Misc
//------------------------------------------------------------------ //------------------------------------------------------------------