diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2000-09-18 16:07:07 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2000-09-18 16:07:07 +0000 |
commit | 8ab086b6cc054501bfbf7ef6fa509c393691e860 (patch) | |
tree | 324d51845d7f1a2f4e02a14db22fb5947137c822 /svtools/source/urlobj | |
parent | 411e68cc54ae97eebd79ae3a9cb2971b74cb2a9e (diff) |
initial import
Diffstat (limited to 'svtools/source/urlobj')
-rw-r--r-- | svtools/source/urlobj/inetimg.cxx | 236 | ||||
-rw-r--r-- | svtools/source/urlobj/makefile.mk | 89 |
2 files changed, 325 insertions, 0 deletions
diff --git a/svtools/source/urlobj/inetimg.cxx b/svtools/source/urlobj/inetimg.cxx new file mode 100644 index 000000000000..a19cac29c1da --- /dev/null +++ b/svtools/source/urlobj/inetimg.cxx @@ -0,0 +1,236 @@ +/************************************************************************* + * + * $RCSfile: inetimg.cxx,v $ + * + * $Revision: 1.1.1.1 $ + * + * last change: $Author: hr $ $Date: 2000-09-18 16:59:06 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library 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 for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ +#ifndef _TOOLS_DEBUG_HXX +#include <tools/debug.hxx> +#endif +#ifndef _SOT_DTRANS_HXX +#include <sot/dtrans.hxx> +#endif +#ifndef _SOT_EXCHANGE_HXX +#include <sot/exchange.hxx> +#endif +#ifndef _SOT_FORMATS_HXX +#include <sot/formats.hxx> +#endif + +#pragma hdrstop + +#include "inetimg.hxx" + +// Die folgende Struktur wurde den Netscape-Sourcen entnommen: +// netscape/source/ns/cmd/winfe/feimages.cpp +struct ImageData_Impl { + int iSize; // size of all data, including variable length strings + BOOL bIsMap; // For server side maps + INT32 iWidth; // Fixed size data correspond to fields in LO_ImageDataStruct + INT32 iHeight; // and EDT_ImageData + INT32 iHSpace; + INT32 iVSpace; + INT32 iBorder; + int iLowResOffset; // Offsets into string_data. If 0, string is NULL (not used) + int iAltOffset; // (alternate text?) + int iAnchorOffset; // HREF in image + int iExtraHTML_Offset; // Extra HTML (stored in CImageElement) + sal_Char pImageURL[1]; // Append all variable-length strings starting here +}; + +#define TOKEN_SEPARATOR '\001' +//======================================================================= + +String INetImage::CopyExchange() const +{ + String aString; + aString += aImageURL; + aString += TOKEN_SEPARATOR; + aString += aTargetURL; + aString += TOKEN_SEPARATOR; + aString += aTargetFrame; + aString += TOKEN_SEPARATOR; + aString += aAlternateText; + aString += TOKEN_SEPARATOR; + aString += String::CreateFromInt32( aSizePixel.Width() ); + aString += TOKEN_SEPARATOR; + aString += String::CreateFromInt32( aSizePixel.Height() ); + return aString; +} + +//----------------------------------------------------------------------- + +void INetImage::PasteExchange( String aString ) +{ + USHORT nStart = 0; + aImageURL = aString.GetToken( 0, TOKEN_SEPARATOR, nStart ); + aTargetURL = aString.GetToken( 0, TOKEN_SEPARATOR, nStart ); + aTargetFrame = aString.GetToken( 0, TOKEN_SEPARATOR, nStart ); + aAlternateText = aString.GetToken( 0, TOKEN_SEPARATOR, nStart ); + aSizePixel.Width() = aString.GetToken( 0, TOKEN_SEPARATOR, nStart ).ToInt32(); + aSizePixel.Height() = aString.GetToken( 0, TOKEN_SEPARATOR, nStart ).ToInt32(); +} + +//----------------------------------------------------------------------- + +ULONG INetImage::HasFormat( SotDataObject& rObj ) +{ + ULONG nFmt; + const SvDataTypeList& rTypeLst = rObj.GetTypeList(); + if( !rTypeLst.Get( nFmt = SOT_FORMATSTR_ID_INET_IMAGE ) && + !rTypeLst.Get( nFmt = SOT_FORMATSTR_ID_NETSCAPE_IMAGE )) + nFmt = 0; + return nFmt; +} + +//----------------------------------------------------------------------- + +BOOL INetImage::SetData( SvData& rData ) const + +/* [Beschreibung] + + Liefert TRUE, falls in dem SvDataObject ein entsp. Image-Format + steht, das wir unterstuetzen. Wenn ja, werden unsere Daten ins + Data-Object kopiert. +*/ +{ + BOOL bOK = FALSE; + const ULONG lFormat = rData.GetFormat(); + + if( lFormat == SOT_FORMATSTR_ID_INET_IMAGE ) + { + rData.SetData( CopyExchange() ); + bOK = TRUE; + } + else if( lFormat == SOT_FORMATSTR_ID_NETSCAPE_IMAGE ) + { + // Netscape koennen wir nicht exportieren + } + return bOK; +} + +//----------------------------------------------------------------------- + +BOOL INetImage::Copy( SotDataMemberObject& rObj ) const + +/* [Beschreibung] + Anmerkung: Das Netscape-Image-Format koennen wir nicht exportieren +*/ +{ + SvData* pData = new SvData( SOT_FORMATSTR_ID_INET_IMAGE, MEDIUM_MEMORY ); + ((INetImage*)this)->SetData( *pData ); + rObj.Append( pData ); + return TRUE; +} + +//----------------------------------------------------------------------- + +BOOL INetImage::Paste( SotDataObject& rObj, ULONG nFormat ) + +/* [Beschreibung] + + Diese Methode "uberschreibt den Wert dieser Instanz mit dem + Inhalt des uebergebenen Datenobjects. + nFormat: Typischerweise das Ergebnis von HasFormat +*/ + +{ + BOOL bRet = FALSE; + + SvData aData( nFormat, MEDIUM_ALL ); + if( rObj.GetData( &aData ) ) + { + void *pData; + aData.GetData( &pData, TRANSFER_REFERENCE ); + UINT32 nLen = aData.GetMinMemorySize(); + rtl_TextEncoding eSysCSet = gsl_getSystemTextEncoding(); + + if( nFormat == SOT_FORMATSTR_ID_INET_IMAGE ) + { + PasteExchange( String( (sal_Char*)pData, eSysCSet ) ); + bRet = TRUE; + } + else if( nFormat == SOT_FORMATSTR_ID_NETSCAPE_IMAGE ) + { + ImageData_Impl* pImgData = (ImageData_Impl*)pData; + + const sal_Char* pStart = (const sal_Char*)pImgData; + aImageURL = String( (const sal_Char*)&(pImgData->pImageURL[0]), + eSysCSet ); + if( pImgData->iAltOffset ) + aAlternateText = String( (pStart + pImgData->iAltOffset), eSysCSet ); + if( pImgData->iAnchorOffset ) + aTargetURL = String( (pStart + pImgData->iAnchorOffset), eSysCSet ); + + aSizePixel.Width() = pImgData->iWidth; + aSizePixel.Height() = pImgData->iHeight; + bRet = TRUE; + } + } + return bRet; +} + +BOOL INetImage::CopyFormats( SotDataObject& rObj ) const +{ + SvDataTypeList& rTypeList = (SvDataTypeList&)rObj.GetTypeList(); + rTypeList.Append( SvDataType( SOT_FORMATSTR_ID_INET_IMAGE, MEDIUM_MEMORY ) ); + // Netscape koennen wir nicht exportieren + // rTypeList.Append( SvDataType( SOT_FORMATSTR_ID_NETSCAPE_IMAGE, MEDIUM_MEMORY ) ); + return TRUE; +} + + diff --git a/svtools/source/urlobj/makefile.mk b/svtools/source/urlobj/makefile.mk new file mode 100644 index 000000000000..c31618a976be --- /dev/null +++ b/svtools/source/urlobj/makefile.mk @@ -0,0 +1,89 @@ +#************************************************************************* +# +# $RCSfile: makefile.mk,v $ +# +# $Revision: 1.1.1.1 $ +# +# last change: $Author: hr $ $Date: 2000-09-18 16:59:06 $ +# +# The Contents of this file are made available subject to the terms of +# either of the following licenses +# +# - GNU Lesser General Public License Version 2.1 +# - Sun Industry Standards Source License Version 1.1 +# +# Sun Microsystems Inc., October, 2000 +# +# GNU Lesser General Public License Version 2.1 +# ============================================= +# Copyright 2000 by Sun Microsystems, Inc. +# 901 San Antonio Road, Palo Alto, CA 94303, USA +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1, as published by the Free Software Foundation. +# +# This library 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 for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# +# +# Sun Industry Standards Source License Version 1.1 +# ================================================= +# The contents of this file are subject to the Sun Industry Standards +# Source License Version 1.1 (the "License"); You may not use this file +# except in compliance with the License. You may obtain a copy of the +# License at http://www.openoffice.org/license.html. +# +# Software provided under this License is provided on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, +# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, +# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. +# See the License for the specific provisions governing your rights and +# obligations concerning the Software. +# +# The Initial Developer of the Original Code is: Sun Microsystems, Inc. +# +# Copyright: 2000 by Sun Microsystems, Inc. +# +# All Rights Reserved. +# +# Contributor(s): _______________________________________ +# +# +# +#************************************************************************* + +PRJ=..$/.. + +PRJNAME=SVTOOLS +TARGET=urlobj + +# --- Settings ----------------------------------------------------- + +.INCLUDE : svpre.mk +.INCLUDE : settings.mk +.INCLUDE : sv.mk + +# --- Files -------------------------------------------------------- + +CXXFILES = \ + urlbmk.cxx \ + inetimg.cxx + + +SLOFILES = \ + $(SLO)$/urlbmk.obj \ + $(SLO)$/inetimg.obj + + +# --- Tagets ------------------------------------------------------- + +.INCLUDE : target.mk + |