2000-09-18 16:07:07 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 18:01:11 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 18:01:11 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 18:01:11 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 18:01:11 +00:00
|
|
|
* $RCSfile: userdat.hxx,v $
|
2009-03-02 14:19:13 +00:00
|
|
|
* $Revision: 1.8.128.1 $
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 18:01:11 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 18:01:11 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 18:01:11 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 18:01:11 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SC_USERDAT_HXX
|
|
|
|
#define SC_USERDAT_HXX
|
|
|
|
|
|
|
|
#include <svx/svdobj.hxx>
|
|
|
|
#include <svtools/imap.hxx>
|
|
|
|
#include "global.hxx"
|
2004-06-04 09:17:44 +00:00
|
|
|
#include "address.hxx"
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#define SC_DRAWLAYER 0x30334353 // Inventor: "SC30"
|
|
|
|
|
|
|
|
// Object-Ids fuer UserData
|
|
|
|
#define SC_UD_OBJDATA 1
|
|
|
|
#define SC_UD_IMAPDATA 2
|
2007-07-06 11:31:41 +00:00
|
|
|
#define SC_UD_MACRODATA 3
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class ScDrawObjFactory
|
|
|
|
{
|
|
|
|
DECL_LINK( MakeUserData, SdrObjFactory * );
|
|
|
|
public:
|
|
|
|
ScDrawObjFactory();
|
|
|
|
~ScDrawObjFactory();
|
|
|
|
};
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class ScDrawObjData : public SdrObjUserData
|
|
|
|
{
|
|
|
|
public:
|
2009-03-02 14:19:13 +00:00
|
|
|
ScAddress maStart;
|
|
|
|
ScAddress maEnd;
|
|
|
|
bool mbNote;
|
|
|
|
|
|
|
|
explicit ScDrawObjData();
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual ScDrawObjData* Clone( SdrObject* pObj ) const;
|
2000-09-18 16:07:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class ScIMapInfo : public SdrObjUserData
|
|
|
|
{
|
|
|
|
ImageMap aImageMap;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ScIMapInfo();
|
|
|
|
ScIMapInfo( const ImageMap& rImageMap );
|
|
|
|
ScIMapInfo( const ScIMapInfo& rIMapInfo );
|
|
|
|
virtual ~ScIMapInfo();
|
|
|
|
|
|
|
|
virtual SdrObjUserData* Clone( SdrObject* pObj ) const;
|
|
|
|
|
|
|
|
void SetImageMap( const ImageMap& rIMap ) { aImageMap = rIMap; }
|
|
|
|
const ImageMap& GetImageMap() const { return aImageMap; }
|
|
|
|
};
|
|
|
|
|
2007-07-06 11:31:41 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class ScMacroInfo : public SdrObjUserData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ScMacroInfo();
|
|
|
|
virtual ~ScMacroInfo();
|
|
|
|
|
|
|
|
virtual SdrObjUserData* Clone( SdrObject* pObj ) const;
|
|
|
|
|
|
|
|
void SetMacro( const rtl::OUString& rMacro ) { maMacro = rMacro; }
|
|
|
|
const rtl::OUString& GetMacro() const { return maMacro; }
|
|
|
|
|
|
|
|
#ifdef ISSUE66550_HLINK_FOR_SHAPES
|
|
|
|
void SetHlink( const rtl::OUString& rHlink ) { maHlink = rHlink; }
|
|
|
|
const rtl::OUString& GetHlink() const { return maHlink; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
private:
|
|
|
|
rtl::OUString maMacro;
|
|
|
|
#ifdef ISSUE66550_HLINK_FOR_SHAPES
|
|
|
|
rtl::OUString maHlink;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|